From 64b43023cc307ad21a4717ecf7684e4e7ee139bc Mon Sep 17 00:00:00 2001 From: Openarl Date: Sun, 7 Apr 2019 17:26:35 +1200 Subject: [PATCH] Release 1.4.136 - Added console importing - Updated mods and skills --- CHANGELOG.md | 5 + Classes/ImportTab.lua | 30 +- Data/2_6/ModCache.lua | 2 +- Data/2_6/SkillStatMap.lua | 6 +- Data/3_0/Gems.lua | 24 +- Data/3_0/ModCache.lua | 2 +- Data/3_0/ModFlask.lua | 6 +- Data/3_0/ModItem.lua | 4269 +++++++++++++------------- Data/3_0/ModJewel.lua | 394 +-- Data/3_0/ModJewelAbyss.lua | 962 +++--- Data/3_0/SkillStatMap.lua | 6 +- Data/3_0/Skills/act_dex.lua | 168 +- Data/3_0/Skills/act_int.lua | 214 +- Data/3_0/Skills/act_str.lua | 118 +- Data/3_0/Skills/glove.lua | 196 +- Data/3_0/Skills/minion.lua | 64 +- Data/3_0/Skills/other.lua | 156 +- Data/3_0/Skills/spectre.lua | 210 +- Data/3_0/Skills/sup_dex.lua | 106 +- Data/3_0/Skills/sup_int.lua | 128 +- Data/3_0/Skills/sup_str.lua | 96 +- Data/Global.lua | 20 +- Export/Classes/DatFile.lua | 21 +- Export/DatView.sln | 12 +- Export/Export.sln | 35 +- Export/Scripts/skills.lua | 90 +- Export/spec.lua | 5679 ++++++++++++++++++----------------- Modules/CalcActiveSkill.lua | 6 +- Modules/CalcTools.lua | 25 +- Modules/Common.lua | 8 +- Modules/Main.lua | 3 +- changelog.txt | 4 + manifest.xml | 54 +- 33 files changed, 6665 insertions(+), 6454 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bdcc5353..6810dbb31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 1.4.136 - 2019/04/07 + * You can now import characters from the console realms + * Updated item mods and skill gems to account for changes in recent patches + * Fixed issue preventing Icestorm's duration from scaling from Intelligence + ### 1.4.135 - 2019/03/14 * Fixed crafted mods on imported items not being recognised * Storm Call now correctly shows DPS instead of just average damage diff --git a/Classes/ImportTab.lua b/Classes/ImportTab.lua index 84b4d7f64..d7aa780a3 100644 --- a/Classes/ImportTab.lua +++ b/Classes/ImportTab.lua @@ -6,6 +6,12 @@ local ipairs = ipairs local t_insert = table.insert +local realmList = { + { label = "PC", id = "PC", realmCode = "pc", profileURL = "https://www.pathofexile.com/account/view-profile/" }, + { label = "Xbox", id = "XBOX", realmCode = "xbox", profileURL = "https://www.pathofexile.com/account/xbox/view-profile/" }, + { label = "PS4", id = "SONY", realmCode = "sony", profileURL = "https://www.pathofexile.com/account/sony/view-profile/" }, +} + local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function(self, build) self.ControlHost() self.Control() @@ -38,7 +44,9 @@ If possible, change the game version in the Configuration tab before importing.] self.controls.accountNameHeader.shown = function() return self.charImportMode == "GETACCOUNTNAME" end - self.controls.accountName = new("EditControl", {"TOPLEFT",self.controls.accountNameHeader,"BOTTOMLEFT"}, 0, 4, 200, 20, main.lastAccountName or "", nil, "%c") + self.controls.accountRealm = new("DropDownControl", {"TOPLEFT",self.controls.accountNameHeader,"BOTTOMLEFT"}, 0, 4, 60, 20, realmList ) + self.controls.accountRealm:SelByValue( main.lastRealm or "PC", "id" ) + self.controls.accountName = new("EditControl", {"LEFT",self.controls.accountRealm,"RIGHT"}, 8, 0, 200, 20, main.lastAccountName or "", nil, "%c") self.controls.accountName.pasteFilter = function(text) return text:gsub("[\128-\255]",function(c) return codePointToUTF8(c:byte(1)):gsub(".",function(c) @@ -53,7 +61,7 @@ If possible, change the game version in the Configuration tab before importing.] self.controls.accountNameGo.enabled = function() return self.controls.accountName.buf:match("%S") end - self.controls.accountNameUnicode = new("LabelControl", {"TOPLEFT",self.controls.accountName,"BOTTOMLEFT"}, 0, 16, 0, 14, "^7Note: if the account name contains non-ASCII characters then it must be URL encoded first.") + self.controls.accountNameUnicode = new("LabelControl", {"TOPLEFT",self.controls.accountRealm,"BOTTOMLEFT"}, 0, 16, 0, 14, "^7Note: if the account name contains non-ASCII characters then it must be URL encoded first.") self.controls.accountNameURLEncoder = new("ButtonControl", {"TOPLEFT",self.controls.accountNameUnicode,"BOTTOMLEFT"}, 0, 4, 170, 18, "^x4040FFhttps://www.urlencoder.org/", function() OpenURL("https://www.urlencoder.org/") end) @@ -243,6 +251,8 @@ You can get this from your web browser's cookies while logged into the Path of E end) function ImportTabClass:Load(xml, fileName) + self.lastRealm = xml.attrib.lastRealm + self.controls.accountRealm:SelByValue( self.lastRealm or main.lastRealm or "PC", "id" ) self.lastAccountHash = xml.attrib.lastAccountHash if self.lastAccountHash then for accountName in pairs(main.gameAccounts) do @@ -256,6 +266,7 @@ end function ImportTabClass:Save(xml) xml.attrib = { + lastRealm = self.lastRealm, lastAccountHash = self.lastAccountHash, lastCharacterHash = self.lastCharacterHash, } @@ -278,8 +289,9 @@ function ImportTabClass:DownloadCharacterList() self.charImportMode = "DOWNLOADCHARLIST" self.charImportStatus = "Retrieving character list..." local accountName = self.controls.accountName.buf + local realm = realmList[self.controls.accountRealm.selIndex] local sessionID = #self.controls.sessionInput.buf == 32 and self.controls.sessionInput.buf or (main.gameAccounts[accountName] and main.gameAccounts[accountName].sessionID) - launch:DownloadPage("https://www.pathofexile.com/character-window/get-characters?accountName="..accountName, function(page, errMsg) + launch:DownloadPage("https://www.pathofexile.com/character-window/get-characters?accountName="..accountName.."&realm="..realm.realmCode, function(page, errMsg) if errMsg == "Response code: 403" then self.charImportStatus = colorCodes.NEGATIVE.."Account profile is private." self.charImportMode = "GETSESSIONID" @@ -307,13 +319,13 @@ function ImportTabClass:DownloadCharacterList() end -- GGG's character API has an issue where for /get-characters the account name is not case-sensitive, but for /get-passive-skills and /get-items it is. -- This workaround grabs the profile page and extracts the correct account name from one of the URLs. - launch:DownloadPage("https://www.pathofexile.com/account/view-profile/"..accountName, function(page, errMsg) + launch:DownloadPage(realm.profileURL..accountName, function(page, errMsg) if errMsg then self.charImportStatus = colorCodes.NEGATIVE.."Error retrieving character list, try again ("..errMsg:gsub("\n"," ")..")" self.charImportMode = "GETACCOUNTNAME" return end - local realAccountName = page:match("/account/view%-profile/([^/]+)/characters"):gsub(".", function(c) if c:byte(1) > 127 then return string.format("%%%2X",c:byte(1)) else return c end end) + local realAccountName = page:match("/view%-profile/([^/]+)/characters"):gsub(".", function(c) if c:byte(1) > 127 then return string.format("%%%2X",c:byte(1)) else return c end end) if not realAccountName then self.charImportStatus = colorCodes.NEGATIVE.."Failed to retrieve character list." self.charImportMode = "GETSESSIONID" @@ -323,6 +335,8 @@ function ImportTabClass:DownloadCharacterList() accountName = realAccountName self.charImportStatus = "Character list successfully retrieved." self.charImportMode = "SELECTCHAR" + self.lastRealm = realm.id + main.lastRealm = realm.id self.lastAccountHash = common.sha1(accountName) main.lastAccountName = accountName main.gameAccounts[accountName] = main.gameAccounts[accountName] or { } @@ -377,11 +391,12 @@ end function ImportTabClass:DownloadPassiveTree() self.charImportMode = "IMPORTING" self.charImportStatus = "Retrieving character passive tree..." + local realm = realmList[self.controls.accountRealm.selIndex] local accountName = self.controls.accountName.buf local sessionID = #self.controls.sessionInput.buf == 32 and self.controls.sessionInput.buf or (main.gameAccounts[accountName] and main.gameAccounts[accountName].sessionID) local charSelect = self.controls.charSelect local charData = charSelect.list[charSelect.selIndex].char - launch:DownloadPage("https://www.pathofexile.com/character-window/get-passive-skills?accountName="..accountName.."&character="..charData.name, function(page, errMsg) + launch:DownloadPage("https://www.pathofexile.com/character-window/get-passive-skills?accountName="..accountName.."&character="..charData.name.."&realm="..realm.realmCode, function(page, errMsg) self.charImportMode = "SELECTCHAR" if errMsg then self.charImportStatus = colorCodes.NEGATIVE.."Error importing character data, try again ("..errMsg:gsub("\n"," ")..")" @@ -398,11 +413,12 @@ end function ImportTabClass:DownloadItems() self.charImportMode = "IMPORTING" self.charImportStatus = "Retrieving character items..." + local realm = realmList[self.controls.accountRealm.selIndex] local accountName = self.controls.accountName.buf local sessionID = #self.controls.sessionInput.buf == 32 and self.controls.sessionInput.buf or (main.gameAccounts[accountName] and main.gameAccounts[accountName].sessionID) local charSelect = self.controls.charSelect local charData = charSelect.list[charSelect.selIndex].char - launch:DownloadPage("https://www.pathofexile.com/character-window/get-items?accountName="..accountName.."&character="..charData.name, function(page, errMsg) + launch:DownloadPage("https://www.pathofexile.com/character-window/get-items?accountName="..accountName.."&character="..charData.name.."&realm="..realm.realmCode, function(page, errMsg) self.charImportMode = "SELECTCHAR" if errMsg then self.charImportStatus = colorCodes.NEGATIVE.."Error importing character data, try again ("..errMsg:gsub("\n"," ")..")" diff --git a/Data/2_6/ModCache.lua b/Data/2_6/ModCache.lua index 925505ef7..38b42f29b 100644 --- a/Data/2_6/ModCache.lua +++ b/Data/2_6/ModCache.lua @@ -1 +1 @@ -local c=...c["20% Chance to Block"]={{[1]={flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=4096}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"}c["10% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=10,name="PowerChargesDuration",keywordFlags=0}},nil}c["-1 Strength per 1 Strength on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Str",div=1},flags=0,type="BASE",value=-1,name="Str",keywordFlags=0}}," on Allocated Passives in Radius"}c["Inflicts a random level 20 Curse on you when your Totems die"]={nil,"Inflicts a random level 20 Curse on you when your Totems die"}c["+150 to maximum Mana"]={{[1]={flags=0,type="BASE",value=150,name="Mana",keywordFlags=0}},nil}c["10% reduced Enemy Stun Threshold with Bows"]={{[1]={flags=8192,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["30% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"}c["You have Far Shot while you do not have Iron Reflexes"]={nil,"You have Far Shot while you do not have Iron Reflexes"}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"}c["Adds 18 to 32 Chaos Damage to Attacks"]={{[1]={flags=1,type="BASE",value=18,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=32,name="ChaosMax",keywordFlags=0}},nil}c["+21 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=21,name="LifeOnHit",keywordFlags=0}},nil}c["14% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=14,name="ElementalDamage",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 seconds on Kill"}c["Adds 1 to 30 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="FireMax",keywordFlags=0}},nil}c["Gain 10% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=3,name="AuraEffect",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"}c["20% increased Attack and Cast Speed if Energy Shield Recharge has started Recently"]={{[1]={[1]={type="Condition",var="EnergyShieldRechargeRecently"},flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Non-critical strikes deal 40% Damage"]={{[1]={[1]={type="Condition",neg=true,var="CriticalStrike"},flags=4,type="MORE",value=-60,name="Damage",keywordFlags=0}},nil}c["40% increased Spell Damage"]={{[1]={flags=2,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["30% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike"}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFrenzyChargeOnSlayingFrozenEnemy",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Your Critical Strikes with Attacks Maim Enemies"]={nil,"Your Critical Strikes with Attacks Maim Enemies"}c["40% increased Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=40,name="AreaOfEffect",keywordFlags=2}},nil}c["You and Allies have 12% increased Attack and Cast Speed while affected"]={{[1]={flags=0,type="INC",value=12,name="Speed",keywordFlags=0}}," while affected"}c["The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IronGrip",flags=0}},nil}c["-5% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="ChaosResist",keywordFlags=0}},nil}c["+160 Dexterity Requirement"]={{[1]={flags=0,type="BASE",value=160,name="DexRequirement",keywordFlags=0}},nil}c["8% increased maximum Mana"]={{[1]={flags=0,type="INC",value=8,name="Mana",keywordFlags=0}},nil}c["Your Hits can't be Evaded by Blinded Enemies"]={nil,"Your Hits can't be Evaded by Blinded Enemies"}c["Nearby Allies have 2% increased Cast Speed per 100 Intelligence you have 1% reduced Mana Reserved per 250 total attributes"]={{[1]={[1]={type="PerStat",stat="Int",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=16,type="INC",value=2,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}}," you have 1% reduced Mana Reserved per 250 total attributes"}c["3% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=4,type="INC",keywordFlags=0,name="Damage",value=3}},nil}c["100% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=100}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=16,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["20% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=20,name="LightningDamage",keywordFlags=0}},nil}c["Adds Knockback to Melee Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=256}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=28,name="CritChance",keywordFlags=0}},nil}c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="fire",value=1},name="GemProperty",keywordFlags=0}},nil}c["5% increased Skeleton Movement Speed"]={{[1]={flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}}," Skeleton "}c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=-30,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["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"]={nil,"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"}c["+27% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=27,name="ChaosResist",keywordFlags=0}},nil}c["Minions have 16% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Staves"]={{[1]={flags=131072,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["Radius: 12"]={nil,"Radius: 12"}c["50% chance to inflict Bleeding on Critical Strike with Attacks"]={{}," to inflict Bleeding "}c["20% chance to Maim on Hit"]={{}," to Maim on Hit"}c["100% increased Stun Duration against Enemies that are on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=4,type="INC",value=100,name="EnemyStunDuration",keywordFlags=0}},nil}c["Projectile Attacks deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PointBlank",flags=0}},nil}c["120% increased Critical Strike Chance against Enemies affected"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}}," against Enemies affected"}c["+5% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=5,name="ColdResistMax",keywordFlags=0}},nil}c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["Adds 6 to 12 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=6,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=12,name="FireMax",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{}," to Trigger Level 20 Shade Form when you Use a Socketed Skill"}c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["16% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=16,name="Evasion",keywordFlags=0}},nil}c["40% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=40,name="Evasion",keywordFlags=0}},nil}c["Adds 15 to 50 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["0.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Reflects 260 Physical Damage to Melee Attackers"]={{},nil}c["+15% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=15,name="FireResist",keywordFlags=0}},nil}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels"]={{}," Level of Socketed Active Skill Gems per 25 Player Levels"}c["Minions deal 15% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"}c["13% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},nil}c["Enemies you Taunt take 20% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,type="INC",value=20,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"}c["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"}c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=125,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+8% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResist",keywordFlags=0}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers 5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}}," while you have at least 5 Crab Barriers 5% additional Chance to Block while you have at least 10 Crab Barriers"}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}c["15% increased Accuracy Rating with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["35% less Mine Damage"]={{[1]={flags=0,type="MORE",value=-35,name="Damage",keywordFlags=8192}},nil}c["10% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=10,name="ChaosDamage",keywordFlags=0}},nil}c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members"}c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems"}c["Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"}c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["+40 to all Attributes"]={{[1]={flags=0,type="BASE",value=40,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=40,name="Int",keywordFlags=0}},nil}c["Adds 35 to 105 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=35,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=105,name="LightningMax",keywordFlags=0}},nil}c["62% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=62,name="ChaosDamage",keywordFlags=0}},nil}c["Lose Souls gained from Soul Eater on Flask Use"]={nil,"Lose Souls gained from Soul Eater on Flask Use"}c["Cannot be Ignited while on Low Life"]={nil,"Cannot be Ignited while on Low Life"}c["24% increased Elemental Damage with Attack Skills {variant:1,2,3}Adds 12 to 20 Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:1,2,3}Adds 12 to 20 Physical Damage"}c["+15% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Spend Energy Shield before Mana for Skill Costs"]={{},nil}c["8% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}}," with Hits and Ailments "}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",value=10,name="PowerChargesDuration",keywordFlags=0}}," to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance,and "}c["20% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["25% chance to Ignite"]={{[1]={flags=0,type="BASE",value=25,name="EnemyIgniteChance",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets {variant:3}With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets {variant:3}With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"}c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=3,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="AvoidIgnite",keywordFlags=0}},nil}c["12% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=12,name="Accuracy",keywordFlags=0}},nil}c["Has 2 Abyssal Sockets 10% increased Cast Speed"]={nil,"Has 2 Abyssal Sockets 10% increased Cast Speed"}c["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["You gain a Power Charge on use You gain a Frenzy Charge on use"]={nil,"You gain a Power Charge on use You gain a Frenzy Charge on use"}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["30% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["-15% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-15,name="ColdResist",keywordFlags=0}},nil}c["+25% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={type="StatThreshold",stat="Str",threshold=200},flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{},""}c["Nearby Allies gain 40% increased Mana Regeneration Rate"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="INC",value=40,name="ManaRegen",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyChillDuration",keywordFlags=0}},nil}c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit"}c["Aspect of the Cat Reserves no Mana"]={nil,"Aspect of the Cat Reserves no Mana"}c["10% increased Effect of Auras on your Minions"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["3% increased Attack Speed with Staves"]={{[1]={flags=131073,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["-20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=-20,name="LightningResist",keywordFlags=0}},nil}c["10% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=38,name="ColdResist",keywordFlags=0}},nil}c["100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Armour",keywordFlags=0}}," when you have no Energy Shield"}c["+1 to Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems"]={{}," Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems"}c["Adds 17 to 37 Chaos Damage"]={{[1]={flags=0,type="BASE",value=17,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=37,name="ChaosMax",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals"}c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["10% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-10,name="Speed",keywordFlags=0}},nil}c["Every 10 seconds, gain 25% increased Area of Effect of Area Skills for 4 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestruction"},flags=0,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}},nil}c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"}c["Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies"]={{[1]={value={skillId="MinionInstability"},type="LIST",keywordFlags=0,name="ExtraMinionSkill",flags=0}},nil}c["Knockback direction is reversed"]={nil,"Knockback direction is reversed"}c["+3% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=3,name="BlockChanceMax",keywordFlags=0}},nil}c["Prefixes:"]={{},nil}c["Your Critical Strikes have Culling Strike"]={nil,"Your Critical Strikes have Culling Strike"}c["13% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=13,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["+25% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=25,name="ChaosResist",keywordFlags=0}},nil}c["Adds 6 to 14 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=6,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=14,name="ColdMax",keywordFlags=0}},nil}c["20% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Arctic Armour"},flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}},nil}c["10% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["+45 to maximum Mana"]={{[1]={flags=0,type="BASE",value=45,name="Mana",keywordFlags=0}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"}c["Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"]={nil,"Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"}c["5% increased effect of Fortify on You"]={{[1]={flags=0,type="INC",value=5,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["18% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 110 to 150 Physical Damage"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies"}c["50% reduced Life Leeched per second"]={{[1]={flags=0,type="INC",value=-50,name="LifeLeechRate",keywordFlags=0}},nil}c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=25,name="ManaRegen",keywordFlags=0}},nil}c["You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies"]={nil,"You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies"}c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=20,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-20,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Perfect Agony {variant:18}Phase Acrobatics"]={nil,"Perfect Agony {variant:18}Phase Acrobatics"}c["30% increased Damage while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Adds 16 to 29 Chaos Damage to Attacks"]={{[1]={flags=1,type="BASE",value=16,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=29,name="ChaosMax",keywordFlags=0}},nil}c["8% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["50% reduced Reflected Elemental Damage taken For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={flags=0,type="INC",value=-50,name="ElementalDamageTaken",keywordFlags=0}}," Reflected For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"}c["Cannot inflict Shock"]={nil,"Cannot inflict Shock"}c["30% increased Armour"]={{[1]={flags=0,type="INC",value=30,name="Armour",keywordFlags=0}},nil}c["Movement Speed cannot be modified to below base value"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MovementSpeedCannotBeBelowBase",flags=0}},nil}c["+28 to maximum Mana"]={{[1]={flags=0,type="BASE",value=28,name="Mana",keywordFlags=0}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit"}c["Adds 9 to 13 Fire Damage"]={{[1]={flags=0,type="BASE",value=9,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=13,name="FireMax",keywordFlags=0}},nil}c["40% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=40,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]={type="SkillName",skillName="Blight"},flags=0,type="INC",value=30,name="Duration",keywordFlags=0}}," Hinder You cannot be Hindered"}c["Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"}c["Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"}c["30% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["40% reduced Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=-40,name="MovementSpeed",keywordFlags=0}},nil}c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["Damage Penetrates 3% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=3,name="LightningPenetration",keywordFlags=0}},nil}c["15% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=15,name="CritChance",keywordFlags=0}},nil}c["18% increased Cold Damage per 1% Cold Resistance above 75% 20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",keywordFlags=0}}," per 1% Cold Resistance above 75% 20% increased Lightning Damage per 1% Lightning Resistance above 75%"}c["Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"]={nil,"Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"}c["+33 to Dexterity"]={{[1]={flags=0,type="BASE",value=33,name="Dex",keywordFlags=0}},nil}c["+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"]={{}," maximum number of Summoned s if you have 3 Primordial Items Socketed or Equipped"}c["Gain 5% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="FireDamageGainAsChaos",keywordFlags=0}},nil}c["Adds 35 to 65 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=35,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=65,name="LightningMax",keywordFlags=0}},nil}c["Crafted: true Prefix: LocalIncreasedArmourAndEnergyShield5"]={nil,"Crafted: true Prefix: LocalIncreasedArmourAndEnergyShield5"}c["4% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=4,name="Damage",keywordFlags=0}},nil}c["1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",value=1,name="PhysicalDamageReduction",keywordFlags=0}}," on Allocated Passives in Radius"}c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=60,name="LightningDamageConvertToChaos",keywordFlags=0}},nil}c["+7% chance to Block Spell Damage {variant:6}+6% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=7,name="BlockChance",keywordFlags=0}}," Damage {variant:6}+6% chance to Block Spell Damage"}c["Adds 60 to 80 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=60,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=80,name="ColdMax",keywordFlags=0}},nil}c["60% increased Attack Damage"]={{[1]={flags=1,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["Auras you Cast grant 10% increased Damage to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=200},flags=0,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["33% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="INC",value=33,name="Damage",keywordFlags=0}},nil}c["The Effect of Chill on you is reversed"]={nil,"The Effect of Chill on you is reversed"}c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=-15,name="ManaRegen",keywordFlags=0}},nil}c["+50 to Strength"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=0}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies"}c["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect"}c["10% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=10,name="StunRecovery",keywordFlags=0}},nil}c["5% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=5,name="CurseEffect",keywordFlags=0}},nil}c["10% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["Triggers level 20 Death Walk when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="DeathWalk",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=50,name="CritMultiplier",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand"]={{}," to gain aCharge on Kill "}c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["20% of Physical Damage Converted to Lightning during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["10% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["315% increased Energy Shield"]={{[1]={flags=0,type="INC",value=315,name="EnergyShield",keywordFlags=0}},nil}c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation"}c["Cannot be Chilled while you have Onslaught"]={nil,"Cannot be Chilled while you have Onslaught"}c["Every 8 seconds, gain Avatar of Fire for 4 seconds"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds"}c["Creates Consecrated Ground on Use"]={{},nil}c["You have no Life Regeneration"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoLifeRegen",flags=0}},nil}c["16% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=16,name="CritChance",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill"}c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=175,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"}c["138% increased Energy Shield"]={{[1]={flags=0,type="INC",value=138,name="EnergyShield",keywordFlags=0}},nil}c["30% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["+25 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=25,name="EnergyShield",keywordFlags=0}},nil}c["Regenerate 2% of your maximum Life per second while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["1% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}},nil}c["40% increased Damage with Hits against Frozen Enemies 50% increased Cold Damage"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}}," with Hits 50% increased Cold Damage"}c["50% reduced Reflected Elemental Damage taken For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={flags=0,type="INC",value=-50,name="ElementalDamageTaken",keywordFlags=0}}," Reflected For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"}c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger"}c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={type="SkillType",skillType=9},flags=0,type="INC",value=-15,name="ManaCost",keywordFlags=0}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"}c["20% chance to gain an Endurance Charge when you Block Extra gore"]={{}," to gain an Endurance Charge when you Block Extra gore"}c["225% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=225,name="ArmourAndEvasion",keywordFlags=0}},nil}c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,type="INC",keywordFlags=0,name="Speed",value=12}},nil}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill"}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Phase Acrobatics"]={{[1]={value="Phase Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["40% more Damage"]={{[1]={flags=0,type="MORE",value=40,name="Damage",keywordFlags=0}},nil}c["+48 Life gained when you Block {variant:1}+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=48,name="Life",keywordFlags=0}}," gained when you Block {variant:1}+20 Mana gained when you Block"}c["6% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=6,name="AreaOfEffect",keywordFlags=0}},nil}c["Right ring slot: Projectiles from Spells Chain +1 times {variant:2}Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells Chain +1 times {variant:2}Right ring slot: Projectiles from Spells cannot Fork"}c["+24 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["100% increased Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=0}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}}," per 5 Armour on Equipped Shield"}c["Adds 8 to 19 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=19,name="PhysicalMax",keywordFlags=0}},nil}c["6% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["475% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=475,name="Evasion",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed if Energy"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}}," if Energy"}c["10% increased Melee Damage"]={{[1]={flags=256,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life"]={nil,"Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life"}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsCold",keywordFlags=0}},nil}c["+240 to maximum Life"]={{[1]={flags=0,type="BASE",value=240,name="Life",keywordFlags=0}},nil}c["20% chance to create a Smoke Cloud when you place a Mine or throw a Trap"]={{}," to create a Smoke Cloud when you place a or throw a Trap"}c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["+140 to Armour"]={{[1]={flags=0,type="BASE",value=140,name="Armour",keywordFlags=0}},nil}c["Cannot Evade enemy Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotEvade",flags=0}},nil}c["12 to 14 Cold Damage per Frenzy Charge 2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={nil,"12 to 14 Cold Damage per Frenzy Charge 2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"}c["10% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=10,name="AuraEffect",keywordFlags=0}},nil}c["You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"}c["18% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",keywordFlags=0}}," per 1% Cold Resistance above 75%"}c["+13% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=13,name="LightningResist",keywordFlags=0}},nil}c["5% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},nil}c["10% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=10,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["15% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=15,name="SpellBlockChance",keywordFlags=0}},nil}c["48% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=48,name="ElementalDamage",keywordFlags=0}},nil}c["Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"}c["Ignore all Movement Penalties from Armour"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:IgnoreMovementPenalties",flags=0}},nil}c["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=200,name="LifeAsChaos",keywordFlags=0}}," Leech applies to enemies 15% increased Movement Speed "}c["Purity of Elements Reserves no Mana"]={nil,"Purity of Elements Reserves no Mana"}c["Golems have 40% less Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-40,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% increased Movement Speed"]={{[1]={flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=0}},nil}c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}}," with Hits "}c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=8192}},nil}c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["+60 to Dexterity"]={{[1]={flags=0,type="BASE",value=60,name="Dex",keywordFlags=0}},nil}c["75% chance to cause Enemies to Flee on use"]={{}," to cause Enemies to Flee on use"}c["200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"]={nil,"200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected"}c["Unaffected by Burning Ground while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire"}c["Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike"}c["24% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=24,name="ElementalDamage",keywordFlags=0}},nil}c["Critical Strike Chance is increased by Lightning Resistance Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={nil,"Critical Strike Chance is increased by Lightning Resistance Trigger Level 12 Lightning Bolt when you deal a Critical Strike"}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"}c["-2 Physical Damage taken from Attacks 40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks 40% of Physical Damage taken reflected to Attacker"}c["20% increased Accuracy Rating with Daggers"]={{[1]={flags=32768,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["Your Fire Damage can Poison {variant:2}Your Cold Damage can Poison"]={nil,"Your Fire Damage can Poison {variant:2}Your Cold Damage can Poison"}c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=60}},nil}c["25% increased Damage against Frozen, Shocked or Ignited Enemies"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Shocked",[3]="Ignited"},actor="enemy"},flags=4,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["330% increased Physical Damage"]={{[1]={flags=0,type="INC",value=330,name="PhysicalDamage",keywordFlags=0}},nil}c["212% increased Physical Damage"]={{[1]={flags=0,type="INC",value=212,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage"}c["115% increased Physical Damage"]={{[1]={flags=0,type="INC",value=115,name="PhysicalDamage",keywordFlags=0}},nil}c["+28% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=28,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=28,name="ColdResist",keywordFlags=0}},nil}c["12% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",upper=true,threshold=0},flags=0,type="INC",value=12,name="Life",keywordFlags=0}},nil}c["275% increased Physical Damage"]={{[1]={flags=0,type="INC",value=275,name="PhysicalDamage",keywordFlags=0}},nil}c["Determination Reserves no Mana {variant:3}Purity of Fire Reserves no Mana"]={nil,"Determination Reserves no Mana {variant:3}Purity of Fire Reserves no Mana"}c["+20 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=20,name="LifeOnHit",keywordFlags=0}},nil}c["6% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["24% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}},nil}c["18% increased Spell Damage"]={{[1]={flags=2,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["100% increased Critical Strike Chance against Enemies that are affected by no Elemental Status Ailments"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"},neg=true,actor="enemy"},[2]={type="Condition",var="Effective"},flags=4,type="INC",keywordFlags=0,name="CritChance",value=100}},nil}c["20% of Overkill Damage is Leeched as Life Life Leech effects are not removed at Full Life"]={{[1]={flags=0,type="BASE",value=20,name="DamageLifeLeech",keywordFlags=0}}," Overkill is Life Leech effects are not removed at Full Life"}c["90 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=90,name="EnergyShieldRegen",keywordFlags=0}},nil}c["Zombies deal 100% more Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=100,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["20% chance to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill"}c["3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,type="INC",value=3,name="Int",keywordFlags=0}},nil}c["Cannot Block"]={nil,"Cannot Block"}c["+25 to maximum Life"]={{[1]={flags=0,type="BASE",value=25,name="Life",keywordFlags=0}},nil}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage"}c["+8 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=8,name="Mana",keywordFlags=0}}," gained when you Block"}c["+9% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=9,name="ChaosResist",keywordFlags=0}},nil}c["22% increased Spell Damage"]={{[1]={flags=2,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy Trigger Socketed Curse Spells when you cast a Curse"]={{[1]={flags=2,type="BASE",value=0.2,name="Damage",keywordFlags=0}}," Leeched as Energy Shield for each Curse on Enemy Trigger Socketed Curse Spells when you cast a Curse"}c["70% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["Minions Leech 0.6% of Damage as Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.6,name="DamageLifeLeech",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% increased Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="BlockRecovery",keywordFlags=0}},nil}c["50% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=50,name="LightningDamage",keywordFlags=0}},nil}c["75% increased Duration of Poisons you inflict during Flask effect Grants Perfect Agony during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,type="INC",keywordFlags=0,name="Duration",value=75}}," of Poisons you inflict Grants Perfect Agony "}c["8% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge"}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"}c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=80,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Take 200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"]={nil,"200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block +1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," if Equipped Shield has at least 30% Chance to Block +1 to Maximum Energy Shield per 5 Armour on Equipped Shield"}c["Adds 35 to 90 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=35,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=90,name="ColdMax",keywordFlags=0}},nil}c["30% reduced Duration of Ailments on Enemies 10% chance to Shock"]={{[1]={flags=0,type="INC",value=-30,name="Duration",keywordFlags=0}}," of Ailments 10% chance to Shock"}c["6% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["8% increased Cold Damage"]={{[1]={flags=0,type="INC",value=8,name="ColdDamage",keywordFlags=0}},nil}c["Herald of Agony has 38% reduced Mana Reservation"]={nil,"Herald of Agony has 38% reduced Mana Reservation"}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalDamage",keywordFlags=0}}," Bow as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element"}c["15% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges"}c["+20 to Strength"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill"}c["-10% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-10,name="FireResist",keywordFlags=0}},nil}c["+60% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=60,name="CritMultiplier",keywordFlags=0}},nil}c["20% chance to gain a Endurance Charge on Kill {variant:24}4% of Life Regenerated per second"]={{},""}c["50% increased Effect of Curses on you"]={{[1]={flags=0,type="INC",value=50,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["Elemental Status Ailments are removed when you reach Low Life Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Elemental Status Ailments are removed when you reach Low Life Your Hits permanently Intimidate Enemies that are on Full Life"}c["20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={flags=0,type="INC",value=20,name="LightningDamage",keywordFlags=0}}," per 1% Lightning Resistance above 75%"}c["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill"}c["Skills which throw Traps have Blood Magic Skills used by Traps have 20% increased Area of Effect"]={nil,"Skills which throw Traps have Blood Magic Skills used by Traps have 20% increased Area of Effect"}c["0.7% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.7,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["20% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Your Critical Strike Chance is Lucky while Focussed"]={nil,"Your Critical Strike Chance is Lucky while Focussed"}c["Adds 12 to 22 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["8% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=8,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=8,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=8,name="AvoidIgnite",keywordFlags=0}},nil}c["2% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=256,type="INC",value=2,name="PhysicalDamage",keywordFlags=0}},nil}c["284% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=284,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["20% chance to Avoid Projectiles while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to Avoid "}c["10% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={{[1]={flags=8388608,type="BASE",value=300,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of an Element"}c["10% chance to Curse Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit"}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={flags=2,type="BASE",value=0.2,name="Damage",keywordFlags=0}}," Leeched as Energy Shield for each Curse on Enemy"}c["Adds 98 to 178 Physical Damage"]={{[1]={flags=0,type="BASE",value=98,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=178,name="PhysicalMax",keywordFlags=0}},nil}c["Your Critical Strikes do not deal extra Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoCritMultiplier",flags=0}},nil}c["+12 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=12,name="EnergyShield",keywordFlags=0}},nil}c["+1% to Chaos Resistance per Poison on you Poison you inflict is Reflected to you"]={{[1]={flags=0,type="BASE",value=1,name="ChaosResist",keywordFlags=0}}," per Poison on you Poison you inflict is Reflected to you"}c["+33 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=33,name="EnergyShield",keywordFlags=0}},nil}c["Minions Recover 1% of their Maximum Life when they Block"]={nil,"Recover 1% of their Maximum Life when they Block"}c["60% increased Defences from equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=60,name="Defences",keywordFlags=0}},nil}c["Adds 8 to 13 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=13,name="PhysicalMax",keywordFlags=0}},nil}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"}c["Adds 10 to 120 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=10,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=120,name="LightningMax",keywordFlags=0}},nil}c["+96 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=96,name="EnergyShield",keywordFlags=0}},nil}c["+1000 Armour while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}}," while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire"}c["Your Chaos Damage can Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ChaosCanShock",flags=0}},nil}c["120% increased Armour"]={{[1]={flags=0,type="INC",value=120,name="Armour",keywordFlags=0}},nil}c["200% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["-1 Dexterity per 1 Dexterity on Allocated Passives in Radius 2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Dex",div=1},[2]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",keywordFlags=0,name="Dex",value=-1}}," on Allocated Passives in Radius 2% increased Movement Speed on Allocated Passives in Radius"}c["+5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",value=5,name="CritMultiplier",keywordFlags=0}}," on Unallocated Passives in Radius"}c["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."]={nil,"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."}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use"}c["13% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="MagicItem",threshold=1},flags=0,type="INC",value=13,name="LootQuantity",keywordFlags=0}},nil}c["25% chance to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"]={{}," to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"}c["40% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+100 to maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["Burning Hoofprints"]={nil,"Burning Hoofprints"}c["15% increased Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyChillDuration",keywordFlags=0}},nil}c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked Enemies"}c["+10 to Armour"]={{[1]={flags=0,type="BASE",value=10,name="Armour",keywordFlags=0}},nil}c["+25% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},nil}c["+175 to maximum Mana"]={{[1]={flags=0,type="BASE",value=175,name="Mana",keywordFlags=0}},nil}c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=70,name="EnemyStunDuration",keywordFlags=0}},nil}c["20% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-20,name="Speed",keywordFlags=0}},nil}c["Projectile Attacks gain damage as they travel farther, dealing up to 30% more Damage to targets"]={nil,"Projectile Attacks gain damage as they travel farther, dealing up to 30% more Damage to targets"}c["You gain Unholy Might for 10 seconds on Block"]={nil,"You gain Unholy Might for 10 seconds on Block"}c["2% increased Attack Speed with Staves"]={{[1]={flags=131073,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["+18% Chance to Block Attack Damage while wielding a Staff Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}}," Attack Damage Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"}c["100% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=0}},nil}c["15% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-15,name="Mana",keywordFlags=0}},nil}c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,type="INC",value=-8,name="FireDamageTaken",keywordFlags=0},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,type="INC",value=-8,name="ColdDamageTaken",keywordFlags=0},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,type="INC",value=-8,name="LightningDamageTaken",keywordFlags=0}},nil}c["+13 to maximum Life"]={{[1]={flags=0,type="BASE",value=13,name="Life",keywordFlags=0}},nil}c["Charan's Sword"]={nil,"Charan's Sword"}c["23% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=23,name="ElementalDamage",keywordFlags=0}},nil}c["10% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=0}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently Elder Item"]={nil,"150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently Elder Item"}c["8% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["10% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=10,name="LifeLeechRate",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIncreasedAreaOfEffect",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"}c["Lose 15 Life for each Enemy hit by your Spells"]={nil,"Lose 15 Life for each Enemy hit by your Spells"}c["16% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["320% increased Physical Damage"]={{[1]={flags=0,type="INC",value=320,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 25 to 36 Physical Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="PhysicalMax",keywordFlags=0}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={flags=1,type="INC",value=80,name="Damage",keywordFlags=0}}," if your other Ring is a Shaper Item"}c["Trigger Commandment of Inferno on Critical Strike"]={nil,"Trigger Commandment of Inferno on Critical Strike"}c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,type="BASE",value=110,name="PhysicalDamageGainAsLightning",keywordFlags=0},[2]={flags=8192,type="BASE",value=110,name="PhysicalDamageGainAsCold",keywordFlags=0},[3]={flags=8192,type="BASE",value=110,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Phasing"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",threshold=5},value=true,type="FLAG",keywordFlags=0,name="LifeLeechBasedOnChaosDamage",flags=0}},nil}c["40% increased Elemental Damage with Attack Skills 8% increased Attack Speed"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}}," with Attack Skills 8% increased Attack Speed"}c["Desecrate creates 2 additional Corpses"]={nil,"Desecrate creates 2 additional Corpses"}c["30% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-30,name="EnemyStunThreshold",keywordFlags=0}},nil}c["18% Chance to Block Attack Damage while wielding a Staff {variant:2,3}20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="BlockChance",value=18}}," Attack Damage {variant:2,3}20% Chance to Block Attack Damage "}c["4% reduced Mana Cost per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=-4,name="ManaCost",keywordFlags=0}},nil}c["33% increased Spell Damage"]={{[1]={flags=2,type="INC",value=33,name="Damage",keywordFlags=0}},nil}c["40% chance to Chill Attackers for 4 seconds on Block 40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,type="BASE",value=40,name="EnemyShockChance",keywordFlags=0}}," to Chill Attackers for 4 seconds on Block 40% chance Attackers for 4 seconds on Block"}c["6% reduced Damage taken from Blinded Enemies"]={{[1]={flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies"}c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["Has 2 Sockets"]={{[1]={flags=0,type="BASE",value=2,name="SocketCount",keywordFlags=0}},nil}c["40% increased Armour"]={{[1]={flags=0,type="INC",value=40,name="Armour",keywordFlags=0}},nil}c["19% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=19,name="ManaRegen",keywordFlags=0}},nil}c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use"}c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy"}c["Vaal Pact"]={{[1]={value="Vaal Pact",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["+1 to Level of Socketed Melee Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="melee",value=1},name="GemProperty",keywordFlags=0}},nil}c["+48 Life gained when you Block"]={{[1]={flags=0,type="BASE",value=48,name="Life",keywordFlags=0}}," gained when you Block"}c["Grants level 22 Blight Skill"]={{[1]={flags=0,type="LIST",value={skillId="Blight",level=22},name="ExtraSkill",keywordFlags=0}},nil}c["12% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},flags=0,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["Minions have +9% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=9,name="ElementalResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["21% increased Spell Damage"]={{[1]={flags=2,type="INC",value=21,name="Damage",keywordFlags=0}},nil}c["80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyRecently"},flags=0,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}c["+15% to Fire and Chaos Resistances {variant:2}{crafted}+15% to Cold and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Fire and s {variant:2}{crafted}+15% to Cold and Chaos Resistances"}c["You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"]={nil,"56 to 88 added Cold Damage per Green Socket"}c["50% increased Blind duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Blind "}c["+30 to maximum Life"]={{[1]={flags=0,type="BASE",value=30,name="Life",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"}c["50% increased Armour"]={{[1]={flags=0,type="INC",value=50,name="Armour",keywordFlags=0}},nil}c["6% increased Armour"]={{[1]={flags=0,type="INC",value=6,name="Armour",keywordFlags=0}},nil}c["+1 to maximum number of Summoned Holy Relics Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={flags=0,type="BASE",value=1,name="CooldownRecovery",keywordFlags=0}}," maximum number of Summoned Holy Relics Summoned Holy Relics have 25% reduced "}c["10% chance to Knock Enemies Back on hit"]={{[1]={flags=0,type="BASE",value=10,name="EnemyKnockbackChance",keywordFlags=0}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies"}c["Gain 5% of Lightning Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="LightningDamageGainAsChaos",keywordFlags=0}},nil}c["Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you"]={nil,"Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you"}c["Adds 38 to 50 Cold Damage"]={{[1]={flags=0,type="BASE",value=38,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["+1 to Level of Aura Gems in this item"]={{}," Level of Aura Gems in this item"}c["30% increased Armour and Evasion while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="INC",value=30,name="ArmourAndEvasion",keywordFlags=0}},nil}c["0.5% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy"}c["Purity of Fire Reserves no Mana {variant:4}Vitality Reserves no Mana"]={nil,"Purity of Fire Reserves no Mana {variant:4}Vitality Reserves no Mana"}c["2% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["+3 to Level of Socketed Warcry Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="warcry",value=3},name="GemProperty",keywordFlags=0}},nil}c["Critical Strikes have Culling Strike"]={nil,"Critical Strikes have Culling Strike"}c["50% increased Effect of Socketed Jewels"]={{[1]={flags=0,type="INC",value=50,name="FlaskEffect",keywordFlags=0}}," of Socketed Jewels"}c["Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning"]={nil,"Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning"}c["You have no Armour or Energy Shield"]={nil,"You have no Armour or Energy Shield"}c["12% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["15% chance to Gain a Power Charge if you or your Totems kill an Enemy"]={{}," to Gain a Power Charge if you or your s kill an Enemy"}c["10% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies"}c["+70 to Strength"]={{[1]={flags=0,type="BASE",value=70,name="Str",keywordFlags=0}},nil}c["Adds 1 to 2 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=2,name="LightningMax",keywordFlags=0}},nil}c["Immune to Shock while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning"}c["27% increased Damage over Time"]={{[1]={flags=8,type="INC",value=27,name="Damage",keywordFlags=0}},nil}c["5% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=5,name="ElementalDamage",keywordFlags=0}}," Experience gain 20% increased "}c["14% increased maximum Life"]={{[1]={flags=0,type="INC",value=14,name="Life",keywordFlags=0}},nil}c["Curse Enemies with Temporal Chains on Hit"]={{[1]={flags=0,type="LIST",value={skillId="TemporalChains",level=1,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["90% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=90,name="LootRarity",keywordFlags=0}},nil}c["12% increased Fire Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="FireDamage",keywordFlags=0}},nil}c["50% reduced Reflected Physical Damage taken"]={{[1]={flags=0,type="INC",value=-50,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["+32% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=32,name="CritMultiplier",keywordFlags=0}},nil}c["10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["+64 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=64,name="EnergyShield",keywordFlags=0}},nil}c["Regenerate 35 Mana per second if all Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="NonCorruptedItem",upper=true,threshold=0},flags=0,type="BASE",value=35,name="ManaRegen",keywordFlags=0}},nil}c["20% Chance for Energy Shield Recharge to Start when you Block"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}}," for Recharge to Start when you Block"}c["+1% to Chaos Resistance per Poison on you"]={{[1]={flags=0,type="BASE",value=1,name="ChaosResist",keywordFlags=0}}," per Poison on you"}c["Gain Phasing for 3 seconds on Kill"]={nil,"Gain Phasing for 3 seconds on Kill"}c["30% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=10,name="CooldownRecovery",keywordFlags=4096}},nil}c["25% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}},nil}c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=155,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Cannot be Shocked if Intelligence is higher than Strength"]={nil,"Cannot be Shocked if Intelligence is higher than Strength"}c["Auras you Cast grant 0.2% of Maximum Life Regenerated per second to"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.2,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}}," to"}c["+150 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=150,name="Evasion",keywordFlags=0}},nil}c["20% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["Adds 6 to 12 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["+1 Energy Shield gained on Kill per Level {variant:3,4}+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},[2]={type="Multiplier",var="Level"},flags=0,type="BASE",keywordFlags=0,name="EnergyShield",value=1}}," gained on Kill {variant:3,4}+1 to maximum Life "}c["50% increased Duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=2,name="ElementalDamage",keywordFlags=0}}," to Avoid when Hit "}c["Adds 13 to 23 Fire Damage"]={{[1]={flags=0,type="BASE",value=13,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="FireMax",keywordFlags=0}},nil}c["Adds 24 to 36 Chaos Damage"]={{[1]={flags=0,type="BASE",value=24,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="ChaosMax",keywordFlags=0}},nil}c["30% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=30,name="PierceChance",keywordFlags=0}},nil}c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-40,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Damage Penetrates 2% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=2,name="LightningPenetration",keywordFlags=0}},nil}c["Discipline Reserves no Mana"]={nil,"Discipline Reserves no Mana"}c["20% reduced Chill Duration on You"]={{[1]={flags=0,type="INC",value=-20,name="EnemyChillDuration",keywordFlags=0}}," on You"}c["+65 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=65,name="Accuracy",keywordFlags=0}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyChillDuration",keywordFlags=0}},nil}c["20% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["Adds 2 to 3 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=3,name="ColdMax",keywordFlags=0}},nil}c["-5% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=-5,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=-5,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=-5,name="ChaosResistMax",keywordFlags=0}},nil}c["1% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="INC",value=1,name="LightningDamage",keywordFlags=0}},nil}c["30% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["50% chance to inflict Bleeding on Critical Strike with Attacks Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={{}," to inflict Bleeding Enemies you inflict Bleeding on grant 100% increased Flask Charges"}c["+12% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=12,name="LightningResist",keywordFlags=0}},nil}c["10% of Overkill Damage is Leeched as Life Your Damaging Hits always Stun Enemies that are on Full Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageLifeLeech",keywordFlags=0}}," Overkill is Your Damaging Hits always Stun Enemies that are on Full Life"}c["25% chance to Scorch Enemies Cannot inflict Ignite"]={{}," to Scorch Enemies Cannot inflict Ignite"}c["+15% chance to Block Spell Damage 15% increased Cast Speed"]={{[1]={flags=2,type="BASE",value=15,name="BlockChance",keywordFlags=0}}," Damage 15% increased Cast Speed"}c["+2 to Maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block"]={{}," to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block"}c["You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 4 seconds on using a Warcry"}c["Socketed Gems are supported by level 25 Melee Splash"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMeleeSplash",level=25},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 32 to 42 Cold Damage"]={{[1]={flags=0,type="BASE",value=32,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=42,name="ColdMax",keywordFlags=0}},nil}c["3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,type="INC",value=3,name="Speed",keywordFlags=0}}," for each Map Item Modifier affecting the "}c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"}c["You cannot Recharge Energy Shield"]={nil,"You cannot Recharge Energy Shield"}c["5% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=5,name="SpellDodgeChance",keywordFlags=0}},nil}c["10% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=3,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["190% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+20 Energy Shield gained on Kill +1 to Level of Socketed Elemental Gems"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}}," gained on Kill +1 to Level of Socketed Elemental Gems"}c["+1% Chance to Block Attack Damage per 50 Strength Chance to Block Spell Damage is Unlucky"]={{[1]={[1]={type="PerStat",stat="Str",div=50},flags=2,type="BASE",value=1,name="BlockChance",keywordFlags=0}}," Attack Damage Chance to Block Damage is Unlucky"}c["+60 to maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["10% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=10,name="Speed",keywordFlags=2}},nil}c["2% additional Chance to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced Stun and Block Recovery"]={{[1]={flags=0,type="BASE",value=2,name="StunRecovery",keywordFlags=0}}," to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced "}c["12% Chance to Block"]={{[1]={flags=0,type="BASE",value=12,name="BlockChance",keywordFlags=0}},nil}c["Gain Chilling, Shocking and Igniting Conflux for 2 seconds"]={{},nil}c["Nearby Enemies have 25% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 25% reduced Life Regeneration rate"}c["25% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",keywordFlags=0}},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers"}c["Curse Enemies with level 5 Vulnerability on Block"]={{[1]={flags=0,type="LIST",value={skillId="Vulnerability",level=5,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["Arrows Pierce an additional Target 12% increased Attack Speed"]={nil,"Arrows Pierce an additional Target 12% increased Attack Speed"}c["4% additional Block Chance while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["+100% to Cold Resistance when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,type="BASE",value=100,name="ColdResist",keywordFlags=0}}," when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"}c["Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="EnduranceChargeOnMeleeStun",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,type="INC",value=310,name="PhysicalDamage",keywordFlags=0}},nil}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning {variant:43}Unaffected by Conductivity while affected by Purity of Lightning"]={{[1]={[1]={type="SkillName",skillName="Purity of Lightning"},flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsLightning",keywordFlags=0}}," while affected by{variant:43}Unaffected by Conductivity while affected by Purity of Lightning"}c["40% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="PoisonChance",keywordFlags=0}},nil}c["230% increased Physical Damage"]={{[1]={flags=0,type="INC",value=230,name="PhysicalDamage",keywordFlags=0}},nil}c["-1 Intelligence per 1 Intelligence on Allocated Passives in Radius 0.4% of Energy Shield Regenerated per Second for"]={{[1]={[1]={type="PerStat",stat="Int",div=1},flags=0,type="BASE",value=-1,name="Int",keywordFlags=0}}," on Allocated Passives in Radius 0.4% of Energy Shield Regenerated per Second for"}c["Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike"}c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Zombies deal 90% more Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=90,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Your Cold Damage can Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ColdCanIgnite",flags=0}},nil}c["+15% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["25% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="LootQuantity",keywordFlags=0}},nil}c["Golems have +1000 to Armour"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit"}c["175% increased Physical Damage"]={{[1]={flags=0,type="INC",value=175,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 2 to 3 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=2,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=3,name="FireMax",keywordFlags=0}},nil}c["4% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=4,name="Duration",keywordFlags=0}},nil}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=63,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Attacks always inflict Bleeding while you have Cat's Stealth"]={nil,"Attacks always inflict Bleeding while you have Cat's Stealth"}c["30% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=30,name="AvoidChilled",keywordFlags=0}},nil}c["75% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=75,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["16% increased Spell Damage"]={{[1]={flags=2,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["8% less Totem Damage per Totem"]={{[1]={[1]={type="PerStat",stat="ActiveTotemLimit",div=1},flags=0,type="MORE",value=-8,name="Damage",keywordFlags=16384}},nil}c["8% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["16% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=16,name="ColdDamage",keywordFlags=0}},nil}c["10% increased Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=29,name="ChaosResist",keywordFlags=0}},nil}c["+28 to maximum Life"]={{[1]={flags=0,type="BASE",value=28,name="Life",keywordFlags=0}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies"}c["You cannot be slowed to below base speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=0}},nil}c["Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use"}c["Spectres have 100% increased maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=52,name="ManaRegen",keywordFlags=0}},nil}c["50% chance to avoid Bleeding"]={{}," to avoid Bleeding"}c["40% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=100,name="ManaRegen",keywordFlags=0}},nil}c["40% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}},nil}c["50% increased Block Recovery"]={{[1]={flags=0,type="INC",value=50,name="BlockRecovery",keywordFlags=0}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"}c["+600 to Armour"]={{[1]={flags=0,type="BASE",value=600,name="Armour",keywordFlags=0}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Staff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=131072}},nil}c["25% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-25,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Adds 25 to 50 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="FireMax",keywordFlags=0}},nil}c["+220 to Armour"]={{[1]={flags=0,type="BASE",value=220,name="Armour",keywordFlags=0}},nil}c["1% increased Damage per 5 of your lowest Attribute Elder Item"]={{[1]={flags=0,type="INC",value=1,name="Damage",keywordFlags=0}}," per 5 of your lowest Attribute Elder Item"}c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=5,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["20% increased Damage over Time"]={{[1]={flags=8,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Vitality Reserves no Mana {variant:5}Grace Reserves no Mana"]={nil,"Vitality Reserves no Mana {variant:5}Grace Reserves no Mana"}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Ignited Enemies"}c["25% increased Zombie Size {variant:1,2,3}Zombies deal 100% increased Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Size {variant:1,2,3}Zombies deal 100% increased "}c["10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 10% chance to gain a Power Charge on Kill"}c["12% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=12,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Recover 5% of Maximum Life on Kill"]={nil,"Recover 5% of Maximum Life on Kill"}c["+40 to Strength"]={{[1]={flags=0,type="BASE",value=40,name="Str",keywordFlags=0}},nil}c["20% of Fire Damage taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["Socketed Curse Skills ignore Curse Limit +40 to Intelligence"]={nil,"Socketed Curse Skills ignore Curse Limit +40 to Intelligence"}c["25% increased maximum Life"]={{[1]={flags=0,type="INC",value=25,name="Life",keywordFlags=0}},nil}c["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"]={nil,"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"}c["1% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}},nil}c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do"}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"}c["+30 Life gained on Killing Ignited Enemies"]={{[1]={flags=0,type="BASE",value=30,name="LifeOnKill",keywordFlags=0}}," ing Ignited Enemies"}c["Recover 75% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use"}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=120,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=165,name="PhysicalMax",keywordFlags=0}},"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["+1% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=1,name="ColdResistMax",keywordFlags=0}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"}c["+23% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=23,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 19-43 Chaos Damage to Attacks"]={{[1]={flags=1,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=43,name="ChaosMax",keywordFlags=0}},nil}c["+100 to Maximum Mana per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={flags=0,type="BASE",value=15,name="LightningPenetration",keywordFlags=0}}," while affected by Wrath"}c["13% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=13,name="CooldownRecovery",keywordFlags=4096}},nil}c["Socketed Gems deal 63 to 94 additional Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=63,name="FireMin",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0},[2]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=94,name="FireMax",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Enemies Chilled by you take 100% increased Burning Damage"]={{[1]={[1]={type="ActorCondition",var="Chilled",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="FireDamageTakenOverTime",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="LightningPenetration",keywordFlags=0}},nil}c["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=16,name="SpellDodgeChance",keywordFlags=0}},nil}c["30% increased Damage against Rare monsters {variant:2}30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," against Rare monsters {variant:2}30% increased Damage with Hits against Rare monsters"}c["200% of Life Leech applies to enemies as Chaos Damage"]={{[1]={flags=0,type="BASE",value=200,name="LifeAsChaos",keywordFlags=0}}," Leech applies to enemies "}c["Energy Shield protects Mana instead of Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="EnergyShieldProtectsMana",flags=0}},nil}c["+6% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=6,name="FireResistMax",keywordFlags=0}},nil}c["4% increased Movement Speed for each Hit you've Blocked Recently"]={{[1]={flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}}," for each Hit you've Blocked Recently"}c["70% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=70,name="ChaosDamage",keywordFlags=0}},nil}c["0.3% of Physical Attack Damage Leeched as Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=1,type="BASE",value=0.3,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Adds 6 to 14 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=6,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="ColdMax",keywordFlags=0}},nil}c["Anger has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Anger"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination"}c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,type="LIST",value={skillId="SpiderAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 140 to 210 Cold Damage"]={{[1]={flags=0,type="BASE",value=140,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=210,name="ColdMax",keywordFlags=0}},nil}c["50% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill"}c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,type="INC",value=65,name="IgniteBurnSlower",keywordFlags=0}},nil}c["You cannot have non-Golem Minions 25% reduced Golem Size"]={nil,"You cannot have non-Golem Minions 25% reduced Golem Size"}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=83,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=5,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=5,name="AvoidIgnite",keywordFlags=0}},nil}c["10% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}c["Enemies can have 1 additional Curse"]={{[1]={value=1,type="BASE",keywordFlags=0,name="EnemyCurseLimit",flags=0}},nil}c["165% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=165,name="Evasion",keywordFlags=0}},nil}c["31% increased Light Radius"]={{[1]={flags=0,type="INC",value=31,name="LightRadius",keywordFlags=0}},nil}c["+23% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={type="StatThreshold",stat="Str",threshold=200},flags=0,type="BASE",value=23,name="ElementalResist",keywordFlags=0}},nil}c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["40% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-40,name="PhysicalDamage",keywordFlags=0}}," Minimum "}c["Adds 22 to 32 Physical Damage"]={{[1]={flags=0,type="BASE",value=22,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=32,name="PhysicalMax",keywordFlags=0}},nil}c["+50 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=50,name="Accuracy",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"}c["15% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=15,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+125 to maximum Mana"]={{[1]={flags=0,type="BASE",value=125,name="Mana",keywordFlags=0}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"}c["20% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="SpellBlockChance",keywordFlags=0}},nil}c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={type="PerStat",stat="Evasion",div=450},flags=1,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["10% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-10,name="TrapDuration",keywordFlags=0}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"}c["+75 to maximum Life"]={{[1]={flags=0,type="BASE",value=75,name="Life",keywordFlags=0}},nil}c["3 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=3,name="LifeRegen",keywordFlags=0}},nil}c["Extra Gore {variant:1}10% chance to cause Bleeding on Hit"]={nil,"Extra Gore {variant:1}10% chance to cause Bleeding on Hit"}c["Adds 400 to 600 Fire Damage"]={{[1]={flags=0,type="BASE",value=400,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="FireMax",keywordFlags=0}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement"]={{}," Attack, Cast and Movement"}c["+1 to Maximum Life per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["100% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=100,name="PowerChargesDuration",keywordFlags=0}},nil}c["25% increased Attack Speed if you haven't Killed Recently"]={{[1]={[1]={type="Condition",neg=true,var="KilledRecently"},flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Gain Soul Eater for 10 seconds when you use a Vaal Skill"}c["Adds 1 to 12 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=12,name="LightningMax",keywordFlags=0}},nil}c["10% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," Attack Damage "}c["Gain Life and Mana from Leech instantly on Critical Strike {variant:3}You have Vaal Pact if you've dealt a Critical Strike Recently"]={nil,"Gain Life and Mana from Leech instantly on Critical Strike {variant:3}You have Vaal Pact if you've dealt a Critical Strike Recently"}c["20% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=20,name="LifeLeechRate",keywordFlags=0}},nil}c["6% reduced Damage taken from Bleeding Enemies"]={{[1]={flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}}," from Bleeding Enemies"}c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience"}c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds on Critical Strike"]={{}," to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds"}c["Removes all mana. Spend Life instead of Mana for Skills"]={{[1]={value=-100,type="MORE",keywordFlags=0,name="Mana",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="BloodMagic",flags=0}},nil}c["300% increased Physical Damage"]={{[1]={flags=0,type="INC",value=300,name="PhysicalDamage",keywordFlags=0}},nil}c["220% increased Physical Damage"]={{[1]={flags=0,type="INC",value=220,name="PhysicalDamage",keywordFlags=0}},nil}c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["18% increased Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=18,name="AreaOfEffect",keywordFlags=2}},nil}c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=20,name="Damage",keywordFlags=0}}," to gain a Power Charge on Hit 6% increased "}c["Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"]={nil,"Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"}c["+3% to all maximum Resistances while you have no Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"]={nil,"With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"}c["165% increased Physical Damage"]={{[1]={flags=0,type="INC",value=165,name="PhysicalDamage",keywordFlags=0}},nil}c["Movement Skills cost no Mana"]={{[1]={value=-100,type="MORE",keywordFlags=8,name="ManaCost",flags=0}},nil}c["Adds 1 to 100 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=100,name="LightningMax",keywordFlags=0}},nil}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed 200% increased Physical Damage"]={nil,"Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed 200% increased Physical Damage"}c["Adds 1 to 120 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=120,name="LightningMax",keywordFlags=0}},nil}c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["Cannot Block Spells"]={nil,"Cannot Block Spells"}c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["Grants Level 15 Envy Skill"]={{[1]={flags=0,type="LIST",value={skillId="Envy",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["+14 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=14,name="ManaOnHit",keywordFlags=0}},nil}c["25% chance to gain a Power Charge on Throwing a Trap Grants level 20 Bear Trap Skill"]={{}," to gain a Power Charge on Throwing a Grants level 20Skill"}c["6% increased Burning Damage for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=12,type="INC",value=6,name="FireDamage",keywordFlags=0}}," for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits "}c["-18 Physical Damage taken from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a Trap"]={{[1]={flags=0,type="BASE",value=-18,name="PhysicalDamageTaken",keywordFlags=4096}}," from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a "}c["Cannot be Stunned if you have at least 10 Crab Barriers You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"Cannot be Stunned if you have at least 10 Crab Barriers You only lose 7 Crab Barriers when you take Physical Damage from a Hit"}c["25% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["6% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value"}c["60% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=60,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Cannot be Shocked while Chilled"]={nil,"Cannot be Shocked while Chilled"}c["Raging Spirits' Hits always Ignite Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits' Hits always Ignite Raging Spirits refresh their Duration when they Kill an Ignited Enemy"}c["31% increased Spell Damage"]={{[1]={flags=2,type="INC",value=31,name="Damage",keywordFlags=0}},nil}c["45% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=45,name="ManaRegen",keywordFlags=0}},nil}c["22% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=22,name="PhysicalDamage",keywordFlags=0}},nil}c["+8% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ChaosResist",keywordFlags=0}},nil}c["2% chance to Dodge Attacks per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=2,name="AttackDodgeChance",keywordFlags=0}},nil}c["Adds 1 to 4 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=4,name="LightningMax",keywordFlags=0}},nil}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved Blood Magic"]={{[1]={flags=2,type="BASE",value=14,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=173,name="LightningMax",keywordFlags=0}}," while no is Reserved Blood Magic"}c["25% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["60% increased Armour"]={{[1]={flags=0,type="INC",value=60,name="Armour",keywordFlags=0}},nil}c["+10 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="ManaOnKill",keywordFlags=0}},nil}c["Minions have 20% reduced Maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=-20,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently Shock Reflection"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="LightningMax",keywordFlags=0}}," for each Shocked Enemy you've Killed Recently Shock Reflection"}c["+500 to Armour"]={{[1]={flags=0,type="BASE",value=500,name="Armour",keywordFlags=0}},nil}c["25% chance to Trigger level 20 Animate Weapon on Kill"]={{[1]={flags=0,type="LIST",value={skillId="AnimateWeapon",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow"}c["8% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["6% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block"}c["0.4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.4,name="LifeRegenPercent",keywordFlags=0}},nil}c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies on Hit"}c["16% increased Attack Damage"]={{[1]={flags=1,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["All Sockets are White Socketed Gems have Elemental Equilibrium"]={nil,"All Sockets are White Socketed Gems have Elemental Equilibrium"}c["Adds 63 to 98 Chaos Damage"]={{[1]={flags=0,type="BASE",value=63,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=98,name="ChaosMax",keywordFlags=0}},nil}c["30% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="BlockChance",keywordFlags=0}},nil}c["Increases and Reductions to Light Radius also apply to Accuracy"]={nil,"Increases and Reductions to Light Radius also apply to Accuracy"}c["20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}}," Attack and with Her Blessing"}c["+75% to Critical Strike Multiplier during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=75,name="CritMultiplier",keywordFlags=0}},nil}c["12% increased maximum Life"]={{[1]={flags=0,type="INC",value=12,name="Life",keywordFlags=0}},nil}c["40% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["20% increased maximum Life"]={{[1]={flags=0,type="INC",value=20,name="Life",keywordFlags=0}},nil}c["-50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=-50,name="CritMultiplier",keywordFlags=0}},nil}c["+25% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of"}c["25% increased Effect of Buffs granted by Socketed Golem Skills"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}c["5% chance to Ignite"]={{[1]={flags=0,type="BASE",value=5,name="EnemyIgniteChance",keywordFlags=0}},nil}c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={nil,"5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion {variant:1}15% increased Attack and Movement Speed while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion {variant:1}15% increased Attack and Movement Speed while you have a Bestial Minion"}c["Celestial Footprints"]={nil,"Celestial Footprints"}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsFire",keywordFlags=0}}," while affected by Purity of Fire"}c["Critical Strike Chance is increased by Lightning Resistance"]={nil,"Critical Strike Chance is increased by Lightning Resistance"}c["Adds 235 to 290 Physical Damage"]={{[1]={flags=0,type="BASE",value=235,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=290,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["You and nearby Allies have 15% increased damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["20% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",keywordFlags=4096}},nil}c["Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={flags=0,type="BASE",value=15,name="ColdPenetration",keywordFlags=0}}," while affected by Hatred"}c["25% increased Elemental Damage with Attack Skills Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=0}}," with Attack Skills Adds 1 to 60 Lightning Damage"}c["Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"}c["2% of Chaos Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["Projectiles gain Damage as they travel further, dealing up"]={nil,"Projectiles gain Damage as they travel further, dealing up"}c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}}," with Attack Skills"}c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 1 to 20 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["2% chance to Dodge Spell Hits +2 to Level of Socketed Lightning Gems"]={{}," to Dodge Hits +2 to Level of Socketed Lightning Gems"}c["-100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=-100,name="Accuracy",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["50% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-50,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges"}c["20% chance to Ignite"]={{[1]={flags=0,type="BASE",value=20,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Minions have 13% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["30% of Damage you Reflect to enemies is gained as Life"]={{[1]={flags=0,type="BASE",value=30,name="Damage",keywordFlags=0}}," you Reflect to enemies is gained as Life"}c["6% increased Attack Speed"]={{[1]={flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["25% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=25,name="ChaosDamage",keywordFlags=0}},nil}c["0.5% of Energy Shield Regenerated per second for each"]={{[1]={flags=0,type="BASE",value=0.5,name="EnergyShieldRegenPercent",keywordFlags=0}}," for each"}c["10% chance to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill"}c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredConsecrate",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["10% chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}c["130% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=130,name="Evasion",keywordFlags=0}},nil}c["35% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=35,name="EnemyChillDuration",keywordFlags=0}},nil}c["You are Immune to Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidBleed",flags=0}},nil}c["20% chance to Maim on Hit 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=0}}," to Maim on Hit 20% chance "}c["+63% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=63,name="ColdResist",keywordFlags=0}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=50,name="ColdDamage",keywordFlags=0}}," to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 to s "}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="BASE",value=70,name="LightningMax",keywordFlags=0}}," to Hits "}c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="strength"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsFire",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Adds 17 to 29 Chaos Damage"]={{[1]={flags=0,type="BASE",value=17,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=0}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"}c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=43,name="EnemyChillDuration",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs have -10% to All Resistances"}c["Damage Penetrates 10% Lightning Resistance during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="LightningPenetration",keywordFlags=0}},nil}c["+15% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=15,name="LightningResist",keywordFlags=0}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}},nil}c["+80 to maximum Life"]={{[1]={flags=0,type="BASE",value=80,name="Life",keywordFlags=0}},nil}c["4% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=4,name="SpellDodgeChance",keywordFlags=0}},nil}c["30% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=30,name="ProjectileSpeed",keywordFlags=0}},nil}c["Adds 280 to 843 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,type="BASE",value=280,name="LightningMin",keywordFlags=0},[2]={flags=1048576,type="BASE",value=843,name="LightningMax",keywordFlags=0}},nil}c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=0}}," if you have Shocked an Enemy Recently"}c["Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second"}c["Has no Sockets"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoSockets",flags=0}},nil}c["50% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShield",keywordFlags=0}},nil}c["You count as on Low Life while you are Cursed with Vulnerability You are Cursed with Level 20 Vulnerability"]={nil,"You count as on Low Life while you are Cursed with Vulnerability You are Cursed with Level 20 Vulnerability"}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life"]={nil,"Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life"}c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,type="LIST",value={skillId="CatAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["30% increased Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["22% Chance to Block"]={{[1]={flags=0,type="BASE",value=22,name="BlockChance",keywordFlags=0}},nil}c["30% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["+15% to Lightning and Chaos Resistances {variant:4}{crafted}+17 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Lightning and s {variant:4}{crafted}+17 to Strength and Dexterity"}c["Gain a Power Charge on non-Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike"}c["2% increased Minion Attack and Cast Speed per Skeleton you own 2% increased Minion Duration per Zombie you own"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=2,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Minion per Skeleton you own 2% increased Minion Duration per you own"}c["Minions have 5% additional chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions have 4% additional chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike"]={nil,"Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike"}c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=12,name="ArmourAndEvasion",keywordFlags=0}},nil}c["210% increased Physical Damage"]={{[1]={flags=0,type="INC",value=210,name="PhysicalDamage",keywordFlags=0}},nil}c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=0}},nil}c["113% increased Physical Damage"]={{[1]={flags=0,type="INC",value=113,name="PhysicalDamage",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["130% increased Physical Damage"]={{[1]={flags=0,type="INC",value=130,name="PhysicalDamage",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"}c["450% increased Physical Damage"]={{[1]={flags=0,type="INC",value=450,name="PhysicalDamage",keywordFlags=0}},nil}c["Curses in this item are reflected back to you"]={nil,"Curses in this item are reflected back to you"}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies"}c["50% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-50,name="Mana",keywordFlags=0}},nil}c["155% increased Physical Damage"]={{[1]={flags=0,type="INC",value=155,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["5% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=5,name="Duration",keywordFlags=0}},nil}c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"You gain Divinity for 10 seconds on reaching maximum Divine Charges"}c["14% increased Spell Damage"]={{[1]={flags=2,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["10.0 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="LifeRegen",keywordFlags=0}},nil}c["6% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-6,name="ManaReserved",keywordFlags=0}},nil}c["100% increased Warcry Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=4}},nil}c["-20 Fire Damage taken when Hit"]={{[1]={flags=0,type="BASE",value=-20,name="FireDamageTakenWhenHit",keywordFlags=0}},nil}c["50% reduced Mana Cost of Raise Spectre"]={{[1]={flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}}," of Raise Spectre"}c["Golems have 38% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=38,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground"}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-3,name="ManaCost",keywordFlags=0}},nil}c["16% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=16,name="ElementalDamage",keywordFlags=0}},nil}c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=6,name="LifeGainAsEnergyShield",keywordFlags=0}},nil}c["Adds 40 to 70 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=40,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=70,name="LightningMax",keywordFlags=0}},nil}c["50% reduced Experience gain"]={{}," Experience gain"}c["+40% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=40,name="ElementalResist",keywordFlags=0}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy"}c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=10,name="ManaRegen",keywordFlags=0}},nil}c["26% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=26,name="CritChance",keywordFlags=0}},nil}c["55% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=55,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"}c["Allocated Small Passive Skills in Radius grant nothing Grants all bonuses of Unallocated Small Passive Skills in Radius"]={nil,"Allocated Small Passive Skills in Radius grant nothing Grants all bonuses of Unallocated Small Passive Skills in Radius"}c["Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Gains no Charges During effect of any Soul Ripper Flask"}c["3% increased maximum Life"]={{[1]={flags=0,type="INC",value=3,name="Life",keywordFlags=0}},nil}c["+24 to Dexterity"]={{[1]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0}},nil}c["Projectiles Pierce 5 additional Targets while you have Phasing"]={nil,"Projectiles Pierce 5 additional Targets while you have Phasing"}c["Adds 135 to 360 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=2,type="BASE",value=135,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="Unarmed"},flags=2,type="BASE",value=360,name="LightningMax",keywordFlags=0}},nil}c["20% increased Mine Detonation Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="MineDetonationAreaOfEffect",keywordFlags=0}},nil}c["Gain Onslaught for 3 seconds on Kill"]={nil,"Gain Onslaught for 3 seconds on Kill"}c["63% increased Physical Damage"]={{[1]={flags=0,type="INC",value=63,name="PhysicalDamage",keywordFlags=0}},nil}c["+35 to maximum Mana"]={{[1]={flags=0,type="BASE",value=35,name="Mana",keywordFlags=0}},nil}c["30% increased Damage over Time"]={{[1]={flags=8,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["18% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=18,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Grants level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonBeastialRhoa",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["50% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["+6% chance to Block Spell Damage {variant:3}+4% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=6,name="BlockChance",keywordFlags=0}}," Damage {variant:3}+4% chance to Block Spell Damage"}c["10% chance to Freeze"]={{[1]={flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=0}},nil}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Ignited Enemies Hits with this Weapon deal 60% increased Damage to Frozen Enemies"}c["+15 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=15,name="Evasion",keywordFlags=0}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"}c["Ghost Reaver"]={{[1]={value="Ghost Reaver",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["+8 to all Attributes"]={{[1]={flags=0,type="BASE",value=8,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=8,name="Int",keywordFlags=0}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={flags=0,type="BASE",value=-5,name="ManaCost",keywordFlags=0}}," Total while affected by Clarity"}c["15% increased maximum Life"]={{[1]={flags=0,type="INC",value=15,name="Life",keywordFlags=0}},nil}c["1% increased Damage per 15 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=15},flags=0,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["15% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=15,name="CooldownRecovery",keywordFlags=4096}},nil}c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,type="BASE",value=78,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=114,name="PhysicalMax",keywordFlags=0}},nil}c["4% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=24,name="CritMultiplier",keywordFlags=0}},nil}c["Cannot be Shocked if Intelligence is higher than Strength 1% increased Damage per 5 of your lowest Attribute"]={nil,"Cannot be Shocked if Intelligence is higher than Strength 1% increased Damage per 5 of your lowest Attribute"}c["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.5,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["45% reduced Effect of Chill on You {variant:2}75% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="FlaskEffect",keywordFlags=0}}," of Chill on You {variant:2}75% reduced Effect of Chill on You"}c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge on Hit"}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=256,type="BASE",value=50,name="BleedChance",keywordFlags=0}}," with Critical Strikes "}c["Ornate Quiver Requires Level 45"]={nil,"Ornate Quiver Requires Level 45"}c["1% increased Maximum Life per Abyss Jewel affecting you 1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={flags=0,type="INC",value=1,name="Life",keywordFlags=0}}," per Abyss Jewel affecting you 1% increased Maximum Mana per Abyss Jewel affecting you"}c["20% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["8% reduced Elemental Damage taken while at Maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},flags=0,type="INC",value=-8,name="ElementalDamageTaken",keywordFlags=0}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"}c["Arrows that Pierce have 50% chance to cause Bleeding"]={nil,"Arrows that Pierce have 50% chance to cause Bleeding"}c["Grants level 20 Bear Trap Skill"]={{[1]={flags=0,type="LIST",value={skillId="BearTrap",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["10% increased Mana Regeneration Rate Per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=10,name="ManaRegen",keywordFlags=0}},nil}c["15% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=15,name="CritChance",keywordFlags=0}},nil}c["+18 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=18,name="EnergyShield",keywordFlags=0}},nil}c["100% increased Shock Duration on You Shocks you cause are reflected back to you"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=0}}," on You Shocks you cause are reflected back to you"}c["+333 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=333,name="Accuracy",keywordFlags=0}},nil}c["+1% to maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=1,name="LightningResistMax",keywordFlags=0}},nil}c["Your Fire Damage can Poison"]={nil,"Your Fire Damage can Poison"}c["+2 to Level of Socketed Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="all",value=2},name="GemProperty",keywordFlags=0}},nil}c["10% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit"}c["10% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=10,name="FireDamageTaken",keywordFlags=0}},nil}c["Minions have 10% reduced Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=-10,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["60% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon 40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=260,type="BASE",keywordFlags=0,name="BleedChance",value=50}}," with Critical Strikes 40% increased Attack Damage "}c["You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage"]={nil,"You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage"}c["Can have up to 1 additional Remote Mine placed at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveMineLimit",keywordFlags=0}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste"}c["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"Nearby Enemies grant 25% increased Flask Charges"}c["+1% to Critical Strike Chance while affected by Aspect of the Cat"]={{[1]={flags=0,type="BASE",value=1,name="CritChance",keywordFlags=0}}," while affected by Aspect of the Cat"}c["50% increased Curse Duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=2}},nil}c["120% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=120,name="Evasion",keywordFlags=0}},nil}c["15% chance to Shock"]={{[1]={flags=0,type="BASE",value=15,name="EnemyShockChance",keywordFlags=0}},nil}c["Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"}c["Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy"}c["Adds 1 to 59 Chaos Damage"]={{[1]={flags=0,type="BASE",value=1,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=59,name="ChaosMax",keywordFlags=0}},nil}c["Zealot's Oath during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="ZealotsOath",flags=0}},nil}c["+160 to maximum Life"]={{[1]={flags=0,type="BASE",value=160,name="Life",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier with Wands"]={{[1]={flags=524288,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["+2 seconds to Avian's Might Duration Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Avian's Might Adds 25 to 40 Cold Damage while you have Avian's Might"}c["You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={nil,"47 to 61 added Chaos Damage per White Socket"}c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["You are Immune to Silence Grants level 20 Illusory Warp Skill"]={nil,"You are Immune to Silence Grants level 20 Illusory Warp Skill"}c["0.87% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.87,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=7,name="ElementalDamage",keywordFlags=0}},nil}c["their Maximum Life as Lightning Damage which cannot Shock"]={nil,"their Maximum Life as Lightning Damage which cannot Shock"}c["Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills ignore Curse Limit"}c["20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=4,type="INC",value=20,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["23% increased Cold Damage"]={{[1]={flags=0,type="INC",value=23,name="ColdDamage",keywordFlags=0}},nil}c["16% increased Totem Duration"]={{[1]={flags=0,type="INC",value=16,name="TotemDuration",keywordFlags=0}},nil}c["12% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"}c["Can have up to 1 additional Totem summoned at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTotemLimit",keywordFlags=0}},nil}c["Arrows Pierce an additional Target Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Arrows Pierce an additional Target Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"}c["Cannot inflict Ignite 10% increased Elemental Damage per Sextant affecting the area"]={nil,"Cannot inflict Ignite 10% increased Elemental Damage per Sextant affecting the area"}c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,type="LIST",value={skillId="LightningResistAura",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["20% reduced Chill Duration on You {variant:2}50% chance to Avoid being Chilled"]={{[1]={flags=0,type="INC",value=-20,name="EnemyChillDuration",keywordFlags=0}}," on You {variant:2}50% chance to Avoid being Chilled"}c["15% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-15,name="EnergyShield",keywordFlags=0}},nil}c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"}c["200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={nil,"200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy Recover 100 Life when your Trap is triggered by an Enemy"]={{[1]={flags=0,type="BASE",value=30,name="Life",keywordFlags=4096}}," to gain Phasing for 4 seconds when your is triggered by an Enemy Recover 100 when your Trap is triggered by an Enemy"}c["30% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=30,name="LifeLeechRate",keywordFlags=0}},nil}c["Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",value=0,name="LightningMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",value=3,name="LightningMax",keywordFlags=0}},nil}c["20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," Attack Damage "}c["10% chance to gain Onslaught for 10 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=10,name="Life",keywordFlags=0}}," to gain Onslaught for 10 seconds on Kill Recover 1% of on Kill"}c["+150 to Evasion Rating and Energy Shield"]={{[1]={flags=0,type="BASE",value=150,name="Evasion",keywordFlags=0}}," and Energy Shield"}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge 1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=4,name="ChaosDamageGainAsChaos",keywordFlags=0}}," Non- per Siphoning Charge 1% additional Physical Damage Reduction from Hits per Siphoning Charge"}c["100% reduced Despair Mana Reservation"]={{[1]={flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}}," Despair "}c["4% reduced Damage taken from Taunted Enemies"]={{[1]={flags=0,type="INC",value=-4,name="DamageTaken",keywordFlags=0}}," from Taunted Enemies"}c["Culling Strike"]={{},"Culling Strike"}c["200% increased Physical Damage"]={{[1]={flags=0,type="INC",value=200,name="PhysicalDamage",keywordFlags=0}},nil}c["Golems have 45% less Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-45,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["12% increased Cast Speed"]={{[1]={flags=16,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["+2 to Level of Socketed Support Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="support",value=2},name="GemProperty",keywordFlags=0}},nil}c["25% chance to create a Smoke Cloud when Hit {variant:1}40% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",value=25,name="Damage",keywordFlags=0}}," to create a Smoke Cloud when Hit {variant:1}40% increased "}c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon"}c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"}c["+68 to Intelligence"]={{[1]={flags=0,type="BASE",value=68,name="Int",keywordFlags=0}},nil}c["You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit"}c["28% increased Cast Speed"]={{[1]={flags=16,type="INC",value=28,name="Speed",keywordFlags=0}},nil}c["Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers"}c["Warcries cost no Mana"]={{[1]={value=-100,type="MORE",keywordFlags=4,name="ManaCost",flags=0}},nil}c["25% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-25,name="LightRadius",keywordFlags=0}},nil}c["Adds 15 to 26 Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=26,name="ChaosMax",keywordFlags=0}},nil}c["13% increased Spell Damage"]={{[1]={flags=2,type="INC",value=13,name="Damage",keywordFlags=0}},nil}c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["Charan's Sword Source: Drops from unique{Hillock}"]={nil,"Charan's Sword Source: Drops from unique{Hillock}"}c["24% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["65% increased Spell Damage"]={{[1]={flags=2,type="INC",value=65,name="Damage",keywordFlags=0}},nil}c["70% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["28% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Armour"]={{[1]={flags=0,type="INC",value=16,name="Armour",keywordFlags=0}},nil}c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=6,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Stygian Vise"]={nil,"Stygian Vise"}c["+50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=50,name="ElementalResist",keywordFlags=0}},nil}c["Grants Summon Harbinger of Directions Skill Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=22,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=0}},"Grants Summon Harbinger of Directions Skill "}c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Aspect of the Spider Debuff "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton"}c["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"}c["45% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=45,name="CritChance",keywordFlags=0}},nil}c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"]={nil,"Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"}c["50% increased Totem Life"]={{[1]={flags=0,type="INC",value=50,name="TotemLife",keywordFlags=0}},nil}c["23% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=23,name="Accuracy",keywordFlags=0}},nil}c["18% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=18,name="LootQuantity",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=60,name="ManaCost",keywordFlags=0}},nil}c["Unaffected by Shock"]={nil,"Unaffected by Shock"}c["You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them Your Elemental Damage can Shock"]={nil,"Enemies take 5% increased Damage for each type of Ailment you have inflicted on them Your Elemental Damage can Shock"}c["You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled"}c["+20 Mana gained when you Block {variant:2,3}+24 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block {variant:2,3}+24 Mana gained when you Block"}c["+150 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=150,name="EnergyShield",keywordFlags=0}},nil}c["+25 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=25,name="EnergyShield",keywordFlags=0}}," gained on Kill"}c["Adds 53 to 60 Chaos Damage"]={{[1]={flags=0,type="BASE",value=53,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="ChaosMax",keywordFlags=0}},nil}c["You have Onslaught while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["0.4% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.4,name="DamageManaLeech",keywordFlags=0}},nil}c["+300 to Armour"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=0}},nil}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=30,name="FireDamage",keywordFlags=0}}," with Hits and Ailments "}c["+4% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=4,name="ChaosResist",keywordFlags=0}},nil}c["3% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=3,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="EnemyIgniteChance",keywordFlags=0}},nil}c["30% increased Radius of Curse Skills"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=2}},nil}c["+110 to Armour"]={{[1]={flags=0,type="BASE",value=110,name="Armour",keywordFlags=0}},nil}c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}c["140% increased Spell Damage"]={{[1]={flags=2,type="INC",value=140,name="Damage",keywordFlags=0}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["1% of Attack Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Wrath"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect 75% increased Duration of Poisons you inflict during Flask effect"]={nil,"Your Critical Strikes do not deal extra Damage during Flask effect 75% increased Duration of Poisons you inflict during Flask effect"}c["You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked"}c["80% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,type="INC",value=80,name="Evasion",keywordFlags=0}},nil}c["1.4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.4,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% increased Shock Duration on You"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}}," on You"}c["Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills"}c["25% reduced Bleed duration"]={{[1]={flags=0,type="INC",value=-25,name="Duration",keywordFlags=2097152}},nil}c["15% reduced Cast Speed"]={{[1]={flags=16,type="INC",value=-15,name="Speed",keywordFlags=0}},nil}c["Chill and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill and Freeze duration on you is based on 65% of Energy Shield"}c["10% increased maximum Life"]={{[1]={flags=0,type="INC",value=10,name="Life",keywordFlags=0}},nil}c["90% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="NormalItem",threshold=1},flags=0,type="INC",value=90,name="LootRarity",keywordFlags=0}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have Nearby Allies have 2% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={type="PerStat",stat="Dex",div=100},[2]={type="PerStat",stat="Int",div=100},flags=0,type="LIST",keywordFlags=0,name="ExtraAura",value={onlyAllies=true,mod={flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=7}}}}," you have Nearby Allies have 2% increased Cast Speed you have"}c["+60% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=60,name="FireResist",keywordFlags=0}},nil}c["40% increased Damage of each Damage Type for which you"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=0}}," of each Damage Type for which you"}c["+72% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=72,name="CritMultiplier",keywordFlags=0}},nil}c["Wrath Reserves no Mana"]={nil,"Wrath Reserves no Mana"}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["+15 to Strength"]={{[1]={flags=0,type="BASE",value=15,name="Str",keywordFlags=0}},nil}c["2% chance to Ignite"]={{[1]={flags=0,type="BASE",value=2,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Socketed Gems fire Projectiles in a Nova"]={nil,"Socketed Gems fire Projectiles in a Nova"}c["Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken"]={nil,"Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken"}c["100% increased Critical Strike Chance with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork"}c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["5% increased Spell Damage"]={{[1]={flags=2,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use"}c["10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill"}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15"}c["+28 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=28,name="EnergyShield",keywordFlags=0}},nil}c["+190 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=190,name="Accuracy",keywordFlags=0}},nil}c["+300 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=300,name="Accuracy",keywordFlags=0}},nil}c["+30 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={flags=0,type="BASE",value=30,name="EnergyShield",keywordFlags=0}}," gained on Killing a Shocked Enemy"}c["+1% to Critical Strike Multiplier per 1% Block Chance"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=1},flags=0,type="BASE",value=1,name="CritMultiplier",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."}c["Projectiles Pierce you {Variant:3}+160 Dexterity Requirement"]={nil,"Projectiles Pierce you {Variant:3}+160 Dexterity Requirement"}c["5% increased Projectile Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1024,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["125% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=125,name="ArmourAndEvasion",keywordFlags=0}},nil}c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=1,type="BASE",value=20,name="PoisonChance",keywordFlags=0}},nil}c["Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life Your Damaging Hits always Stun Enemies that are on Full Life"}c["35% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=35,name="ChaosDamage",keywordFlags=0}},nil}c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=60,name="PhysicalDamage",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"}c["7% increased Attack Speed"]={{[1]={flags=1,type="INC",value=7,name="Speed",keywordFlags=0}},nil}c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=30,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["Has 2 Abyssal Sockets 10% increased Attack Speed"]={nil,"Has 2 Abyssal Sockets 10% increased Attack Speed"}c["110% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=110,name="Evasion",keywordFlags=0}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes"}c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,type="LIST",value={skillId="FireBeam",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["22% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=1,type="BASE",keywordFlags=0,name="ChainCountMax",flags=0}},nil}c["Minions have 8% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 19 to 29 Chaos Damage"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=0}},nil}c["70% increased Minion Damage if you have Hit Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["230% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+8% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=8,name="ElementalResist",keywordFlags=0}},nil}c["+110 to maximum Mana"]={{[1]={flags=0,type="BASE",value=110,name="Mana",keywordFlags=0}},nil}c["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"]={nil,"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"}c["5% increased Movement Speed"]={{[1]={flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"}c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["+45 to maximum Life"]={{[1]={flags=0,type="BASE",value=45,name="Life",keywordFlags=0}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets"}c["+2 seconds to Cat's Stealth Duration"]={{[1]={flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Cat's Stealth "}c["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill"}c["Your Maximum Resistances are 80%"]={nil,"Your Maximum Resistances are 80%"}c["16% increased maximum Mana"]={{[1]={flags=0,type="INC",value=16,name="Mana",keywordFlags=0}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect"}c["295% increased Physical Damage"]={{[1]={flags=0,type="INC",value=295,name="PhysicalDamage",keywordFlags=0}},nil}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsCold",keywordFlags=0}}," while affected by Purity of Ice"}c["You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Ignited for 3 seconds after being Ignited"}c["Unaffected by Temporal Chains while affected by Haste"]={nil,"Unaffected by Temporal Chains while affected by Haste"}c["Half of your Strength is added to your Minions"]={nil,"Half of your Strength is added to your Minions"}c["+25% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0}},nil}c["13% increased Cast Speed"]={{[1]={flags=16,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["Life Leech applies instantly. Life Regeneration has no effect."]={{[1]={value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="NoLifeRegen",flags=0}},nil}c["Envy Reserves no Mana"]={nil,"Envy Reserves no Mana"}c["Critical Strike Chance is increased by Lightning Resistance {variant:1}Critical Strikes deal 50% increased Lightning Damage"]={nil,"Critical Strike Chance is increased by Lightning Resistance {variant:1}Critical Strikes deal 50% increased Lightning Damage"}c["Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"}c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,type="INC",value=40,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["3% increased Experience gain {variant:2}2% increased Experience gain"]={{}," Experience gain {variant:2}2% increased Experience gain"}c["12% increased Spell Damage"]={{[1]={flags=2,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["25% Chance to Ignite when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="BASE",value=25,name="EnemyIgniteChance",keywordFlags=0}},nil}c["12% reduced Skill Effect Duration"]={{[1]={flags=0,type="INC",value=-12,name="Duration",keywordFlags=0}},nil}c["8% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-8,name="MovementSpeed",keywordFlags=0}},nil}c["15% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="MORE",value=15,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["25% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=65,name="CritChance",keywordFlags=0}},nil}c["5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=5,name="ProjectileSpeed",keywordFlags=0}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies 30% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},[2]={type="Condition",var="KilledRecently"},[3]={type="ActorCondition",actor="enemy",var="Maimed"},flags=5,type="BASE",keywordFlags=0,name="Duration",value=50}}," to Maim on Hit 30% increased "}c["50% chance to Cause Poison on Critical Strike"]={{}," to Cause Poison"}c["Zombies deal 100% increased Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Elemental Overload"]={{[1]={value="Elemental Overload",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["15% increased Armour"]={{[1]={flags=0,type="INC",value=15,name="Armour",keywordFlags=0}},nil}c["Your Golems are aggressive Primordial"]={nil,"Your Golems are aggressive Primordial"}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"}c["30% increased Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["3% additional Block Chance"]={{[1]={flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=20,name="ManaRegen",keywordFlags=0}},nil}c["56% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=56,name="ManaRegen",keywordFlags=0}},nil}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={nil,"Aspect of the Spider can inflict Spider's Web on Enemies an additional time Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"}c["40% more Elemental Damage if you've Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,type="MORE",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["80% increased Spell Damage"]={{[1]={flags=2,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["Damage Penetrates 25% Cold Resistance if you've used a Fire Skill in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsedFireSkillInPast10Sec"},flags=0,type="BASE",value=25,name="ColdPenetration",keywordFlags=0}},nil}c["20% increased Taunt Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Taunt "}c["4% increased maximum Life"]={{[1]={flags=0,type="INC",value=4,name="Life",keywordFlags=0}},nil}c["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=7,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=60,name="LightningDamage",keywordFlags=0}},nil}c["Gain Shocking Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ShockingConflux"},value=100,type="BASE",keywordFlags=0,name="EnemyShockChance",flags=0},[2]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="PhysicalCanShock",flags=0},[3]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="ColdCanShock",flags=0},[4]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="FireCanShock",flags=0},[5]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="ChaosCanShock",flags=0}},nil}c["30% increased Block Recovery"]={{[1]={flags=0,type="INC",value=30,name="BlockRecovery",keywordFlags=0}},nil}c["Unaffected by Enfeeble while affected by Grace"]={nil,"Unaffected by Enfeeble while affected by Grace"}c["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={type="SkillName",skillName="Siege Ballista"},[2]={type="PerStat",stat="Dex",div=200},flags=0,type="BASE",keywordFlags=0,name="ActiveTotemLimit",value=1}},nil}c["Gain 5% of Cold Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="ColdDamageGainAsChaos",keywordFlags=0}},nil}c["3% increased Damage per Crab Barrier"]={{[1]={flags=0,type="INC",value=3,name="Damage",keywordFlags=0}}," per Crab Barrier"}c["+200 to Armour"]={{[1]={flags=0,type="BASE",value=200,name="Armour",keywordFlags=0}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"}c["10% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit 20% chance to Taunt on Hit"]={{}," to Fortify 20% chance to Taunt on Hit"}c["Adds 12 to 16 Fire Damage"]={{[1]={flags=0,type="BASE",value=12,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="FireMax",keywordFlags=0}},nil}c["45% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=45,name="LootRarity",keywordFlags=0}},nil}c["50% less Poison Duration"]={{[1]={flags=0,type="MORE",value=-50,name="Duration",keywordFlags=1048576}},nil}c["12% increased Damage over Time"]={{[1]={flags=8,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["Triggers Level 20 Blinding Aura when Equipped Adds 22 to 44 Physical Damage"]={{[1]={flags=0,type="BASE",value=22,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=44,name="PhysicalMax",keywordFlags=0}},"Triggers Level 20 Blinding Aura when Equipped "}c["8% increased Physical Damage for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently"}c["-25 Physical Damage taken from Projectile Attacks +5% Chance to Block"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks +5% Chance to Block"}c["Minions Poison Enemies on Hit"]={{[1]={value={mod={value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},type="LIST",keywordFlags=0,name="MinionModifier",flags=0}},nil}c["5% additional Chance to Block Spells with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=5,name="SpellBlockChance",keywordFlags=0}},nil}c["Grants level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonBeastialSnake",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["43% increased Damage with Movement Skills"]={{[1]={flags=0,type="INC",value=43,name="Damage",keywordFlags=8}},nil}c["+80 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=80,name="Accuracy",keywordFlags=0}},nil}c["3% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["+20% chance to Block Spell Damage 30% increased Spell Damage"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," Damage 30% increased Spell Damage"}c["Adds 10 to 38 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=38,name="PhysicalMax",keywordFlags=0}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger {variant:2}Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={[1]={type="SkillName",skillName="Anger"},flags=0,type="BASE",value=1.5,name="FireDamageLifeLeech",keywordFlags=0}}," while affected by{variant:2}Damage Penetrates 15% Fire Resistance while affected by Anger"}c["-1 Intelligence per 1 Intelligence on Allocated Passives in Radius +100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Int",div=1},[2]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",keywordFlags=0,name="Int",value=-1}}," on Allocated Passives in Radius +100 to Accuracy Rating on Unallocated Passives in Radius"}c["30% reduced Power Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="PowerChargesDuration",keywordFlags=0}},nil}c["Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 240 to 300 Physical Damage to Attackers on Block"}c["25% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootQuantity",keywordFlags=0}},nil}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"}c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="Accuracy",keywordFlags=0}},nil}c["100% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=4}},nil}c["Deal no Non-Fire Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoPhysical",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="DealNoLightning",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="DealNoCold",flags=0},[4]={value=true,type="FLAG",keywordFlags=0,name="DealNoChaos",flags=0}},nil}c["100% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=256}},nil}c["100% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["Adds 250 to 280 Fire Damage"]={{[1]={flags=0,type="BASE",value=250,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=280,name="FireMax",keywordFlags=0}},nil}c["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=2,name="Duration",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Minion per you own"}c["18% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=18,name="ChaosDamage",keywordFlags=0}},nil}c["Minions have 10% chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=-50,name="Damage",keywordFlags=0}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier 2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=55,name="ChaosDamage",keywordFlags=0}}," Non-Ailment over Time Multiplier 2% increased Cast Speed "}c["50% increased Shock Duration on You Take no Extra Damage from Critical Strikes"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}}," on You Take no Extra Damage from Critical Strikes"}c["+200 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=200,name="Accuracy",keywordFlags=0}},nil}c["50% increased Mana Regeneration while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=50,name="ManaRegen",keywordFlags=0}},nil}c["8% Chance to Block"]={{[1]={flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["You and nearby Allies deal 35% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["+23 to all Attributes"]={{[1]={flags=0,type="BASE",value=23,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=23,name="Int",keywordFlags=0}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill {variant:2,3}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 {variant:2,3}You take 450 Chaos Damage per second for 3 seconds on Kill"}c["-35 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-35,name="ChaosDamageTaken",keywordFlags=0}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted with Bleeding when Hit by an Attack"}c["Trigger Socketed Spells when you Focus"]={nil,"Trigger Socketed Spells when you Focus"}c["Cannot be Blinded"]={nil,"Cannot be Blinded"}c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["15% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=15,name="PierceChance",keywordFlags=0}},nil}c["You are cursed with Level 10 Vulnerability"]={nil,"You are cursed with Level 10 Vulnerability"}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your"}c["Arrows Pierce all Targets 10% increased Movement Speed"]={nil,"Arrows Pierce all Targets 10% increased Movement Speed"}c["20% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=20,name="FireDamageTaken",keywordFlags=0}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=50,name="LifeRegen",keywordFlags=0}}," if you have at least 500 "}c["Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"]={nil,"Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"}c["+100 to Intelligence"]={{[1]={flags=0,type="BASE",value=100,name="Int",keywordFlags=0}},nil}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=1,name="PhysicalDamage",keywordFlags=0}}," Level of Socketed Active Skill Gems per 25 Player Levels Adds 3 to 5 to Attacks per 3 Player Levels"}c["24% increased Elemental Damage with Attack Skills 175% increased Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills 175% increased Physical Damage"}c["420% increased Armour"]={{[1]={flags=0,type="INC",value=420,name="Armour",keywordFlags=0}},nil}c["500% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=500,name="Evasion",keywordFlags=0}},nil}c["+5000 to Zombie maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5000,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["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"]={nil,"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"}c["Skills from your Gloves have 40% increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="Gloves"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="AreaOfEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["24% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=24,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,type="LIST",value={skillId="BirdAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["125% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=125,name="Evasion",keywordFlags=0}},nil}c["Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther"]={nil,"Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther"}c["Gain a Frenzy Charge on every 50th Rampage Kill"]={nil,"Gain a Frenzy Charge on every 50th Rampage Kill"}c["220% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=220,name="Evasion",keywordFlags=0}},nil}c["8% increased Melee Damage"]={{[1]={flags=256,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["+110 to maximum Life"]={{[1]={flags=0,type="BASE",value=110,name="Life",keywordFlags=0}},nil}c["+13% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=13,name="ColdResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Pierce"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportPierce",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["Golems have 22% increased Maximum Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=22,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["20% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["+40 to Intelligence"]={{[1]={flags=0,type="BASE",value=40,name="Int",keywordFlags=0}},nil}c["If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"}c["25% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=25,name="ProjectileSpeed",keywordFlags=0}},nil}c["10% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["Attack skills can have 1 additional Totem Summoned at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTotemLimit",keywordFlags=65536}},nil}c["+90 to maximum Life"]={{[1]={flags=0,type="BASE",value=90,name="Life",keywordFlags=0}},nil}c["1.5% of Damage leeched as Life while affected by Vitality"]={{[1]={flags=0,type="BASE",value=1.5,name="DamageLifeLeech",keywordFlags=0}}," while affected by Vitality"}c["+18% Chance to Block Attack Damage while wielding a Staff Has no Sockets"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}}," Attack Damage Has no Sockets"}c["to 30% increased Damage to targets Skills fire an additional Projectile"]={nil,"to 30% increased Damage to targets Skills fire an additional Projectile"}c["Projectiles from Attacks have 20% 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"]={nil,"Projectiles from Attacks have 20% 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"}c["Adds Knockback during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=0}},nil}c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=90,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["0.4% of Energy Shield Regenerated per Second for"]={{[1]={flags=0,type="BASE",value=0.4,name="EnergyShieldRegenPercent",keywordFlags=0}}," for"}c["0.9% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.9,name="DamageLifeLeech",keywordFlags=0}},nil}c["Enemies Become Chilled as they Unfreeze"]={nil,"Enemies Become Chilled as they Unfreeze"}c["Cannot be Stunned"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidStun",flags=0}},nil}c["+3% to all maximum Resistances while Poisoned Poisons on you expire 50% slower"]={{[1]={flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}}," while Poisoned Poisons on you expire 50% slower"}c["+24% chance to Block Spell Damage {variant:4}+20% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=24,name="BlockChance",keywordFlags=0}}," Damage {variant:4}+20% chance to Block Spell Damage"}c["43% increased Attack Speed"]={{[1]={flags=1,type="INC",value=43,name="Speed",keywordFlags=0}},nil}c["20% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=20,name="StunRecovery",keywordFlags=0}},nil}c["+14 to maximum Life"]={{[1]={flags=0,type="BASE",value=14,name="Life",keywordFlags=0}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element 20% increased Area of Effect for Attacks"]={{[1]={flags=8388608,type="BASE",value=300,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of an Element 20% increased Area of Effect for Attacks"}c["Grants level 5 Frostbite Skill"]={{[1]={flags=0,type="LIST",value={skillId="Frostbite",level=5},name="ExtraSkill",keywordFlags=0}},nil}c["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use"}c["285% increased Physical Damage"]={{[1]={flags=0,type="INC",value=285,name="PhysicalDamage",keywordFlags=0}},nil}c["8% increased Physical Damage for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently 80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyRecently"},flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently 80% increased Physical Damage "}c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["163% increased Physical Damage"]={{[1]={flags=0,type="INC",value=163,name="PhysicalDamage",keywordFlags=0}},nil}c["7% increased Cast Speed"]={{[1]={flags=16,type="INC",value=7,name="Speed",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}}," Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased "}c["Raging Spirits have 140% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Raging Spirit"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=140,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Gain Flask Charges when you deal a Critical Strike"]={nil,"Gain Flask Charges when you deal a Critical Strike"}c["Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={type="StatThreshold",stat="PowerCharges",thresholdStat="PowerChargesMax"},flags=0,type="BASE",value=12,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["+1000 to maximum Life"]={{[1]={flags=0,type="BASE",value=1000,name="Life",keywordFlags=0}},nil}c["17% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=17,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["4% increased Damage per Enemy Killed by you or your Totems Recently 8% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,type="INC",value=4,name="Damage",keywordFlags=16384}}," per Enemy Killed by you or your s Recently 8% increased Attack and Cast Speed "}c["Socketed Gems are supported by level 2 Chance to Flee"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportChanceToFlee",level=2},name="ExtraSupport",keywordFlags=0}},nil}c["30% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["20% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-20,name="Life",keywordFlags=0}},nil}c["14% increased Armour"]={{[1]={flags=0,type="INC",value=14,name="Armour",keywordFlags=0}},nil}c["Cannot inflict Freeze or Chill 10% increased Elemental Damage per Sextant affecting the area"]={nil,"Cannot inflict Freeze or Chill 10% increased Elemental Damage per Sextant affecting the area"}c["10% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge on non-Critical Strike"}c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=65,name="ManaRegen",keywordFlags=0}},nil}c["10% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block"}c["+35 to maximum Life"]={{[1]={flags=0,type="BASE",value=35,name="Life",keywordFlags=0}},nil}c["Casts level 7 Abberath's Fury when equipped"]={{[1]={flags=0,type="LIST",value={skillId="RepeatingShockwave",level=7},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 285 to 360 Physical Damage"]={{[1]={flags=0,type="BASE",value=285,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=360,name="PhysicalMax",keywordFlags=0}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped 25% chance to gain a Siphoning Charge when you use a Skill"]={{}," Maximum Siphoning Charges per Elder or Shaper Item Equipped 25% chance to gain a Siphoning Charge when you use a Skill"}c["300% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=300,name="Damage",keywordFlags=0}},nil}c["Nearby Enemies have -10% to all Resistances You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={nil,"Nearby Enemies have -10% to all Resistances You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"}c["20% increased Totem Life"]={{[1]={flags=0,type="INC",value=20,name="TotemLife",keywordFlags=0}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}c["Adds 115 to 260 Physical Damage"]={{[1]={flags=0,type="BASE",value=115,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=260,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["3% increased Experience gain"]={{}," Experience gain"}c["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=240,name="CritMultiplier",keywordFlags=0}},nil}c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage Rampage"}c["+14% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=14,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="ColdResist",keywordFlags=0}},nil}c["+20 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}}," gained on Kill"}c["0.6% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.6,name="LifeRegenPercent",keywordFlags=0}},nil}c["Your Energy Shield starts at zero You cannot Recharge Energy Shield"]={nil,"Your Energy Shield starts at zero You cannot Recharge Energy Shield"}c["30% increased Zombie Resistances"]={{}," Resistances"}c["Extra gore"]={nil,"Extra gore"}c["Traps and Mines have a 25% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=25,name="PoisonChance",keywordFlags=12288}},nil}c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies"}c["Vaal Skills deal 40% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills deal 40% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"}c["Elemental Hit deals 15% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"Elemental Hit deals 15% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"}c["+14% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=14,name="ChaosResist",keywordFlags=0}},nil}c["50% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},nil}c["+35% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=35,name="ChaosResist",keywordFlags=0}},nil}c["Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"}c["20% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Zealot's Oath"]={{[1]={value="Zealot's Oath",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-30,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["+23% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=23,name="FireResist",keywordFlags=0}},nil}c["Flasks do not apply to You"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="FlasksDoNotApplyToPlayer",flags=0}},nil}c["60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=60,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["Golems Deal 40% less Damage"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-40,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting"}c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill"}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsFire",keywordFlags=0}}," while affected by Purity of Elements"}c["24% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=24,name="LootQuantity",keywordFlags=0}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block"}c["Vaal Skills deal 40% more Damage during effect"]={nil,"Vaal Skills deal 40% more Damage during effect"}c["+40% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=40,name="FireResist",keywordFlags=0}},nil}c["Pain Attunement"]={{[1]={value="Pain Attunement",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["18% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage"}c["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=1000,name="CritChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["+5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=5,name="FireResistMax",keywordFlags=0}},nil}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"}c["Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"]={nil,"Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"}c["Adds 5 to 10 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=5,name="FireMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=10,name="FireMax",keywordFlags=0}},nil}c["+330 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=330,name="Accuracy",keywordFlags=0}},nil}c["10% increased Physical Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={nil,"While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"}c["200% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+38 to all Attributes"]={{[1]={flags=0,type="BASE",value=38,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=38,name="Int",keywordFlags=0}},nil}c["105% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=105,name="ArmourAndEvasion",keywordFlags=0}},nil}c["80% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["+20 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ClawCritChanceAppliesToUnarmed",flags=0}},nil}c["Socketed Golem Gems grant Onslaught for 10 seconds on Summon"]={nil,"Socketed Golem Gems grant Onslaught for 10 seconds on Summon"}c["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"}c["18% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=18,name="AuraEffect",keywordFlags=0}},nil}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Embrace for 3 seconds when you Ignite an Enemy"}c["10% increased Light Radius"]={{[1]={flags=0,type="INC",value=10,name="LightRadius",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"}c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["90% increased Fire Damage"]={{[1]={flags=0,type="INC",value=90,name="FireDamage",keywordFlags=0}},nil}c["115% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=115,name="Evasion",keywordFlags=0}},nil}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",keywordFlags=0}}," for each Equipped Corrupted Item"}c["Skills in your Helm can have up to 1 additional Totem Summoned at a time"]={{[1]={[1]={type="SocketedIn",slotName="Helmet"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1,name="ActiveTotemLimit",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Minions Regenerate 1% Life per second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=40,name="FlaskRecovery",keywordFlags=0}},nil}c["+100 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=100,name="Evasion",keywordFlags=0}},nil}c["+50 to maximum Mana"]={{[1]={flags=0,type="BASE",value=50,name="Mana",keywordFlags=0}},nil}c["You take 20% reduced Extra Damage from Critical Strikes"]={nil,"You take 20% reduced Extra Damage from Critical Strikes"}c["Adds 1 to 2 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=1,type="BASE",value=1,name="FireMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Str",div=10},flags=1,type="BASE",value=2,name="FireMax",keywordFlags=0}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier"}c["+65 to maximum Life"]={{[1]={flags=0,type="BASE",value=65,name="Life",keywordFlags=0}},nil}c["+15% chance to Block Spell Damage {variant:3}+15% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=15,name="BlockChance",keywordFlags=0}}," Damage {variant:3}+15% chance to Block Spell Damage"}c["Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems Can Summon up to 1 additional Golem at a time"]={nil,"Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems Can Summon up to 1 additional Golem at a time"}c["6% increased Movement Speed"]={{[1]={flags=0,type="INC",value=6,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={flags=0,type="BASE",value=25,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}}," while you have Avian's Might"}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,type="INC",value=-10,name="Duration",keywordFlags=0}},nil}c["Elemental Status Effects caused by your Skills spread to other nearby Enemies"]={nil,"Elemental Status Effects caused by your Skills spread to other nearby Enemies"}c["10% of Damage taken Gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,type="BASE",value=10,name="DamageTaken",keywordFlags=0}}," Gained as Mana over 4 seconds when Hit"}c["13% reduced Intelligence"]={{[1]={flags=0,type="INC",value=-13,name="Int",keywordFlags=0}},nil}c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers"}c["Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"}c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=150,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Adds 1 to 11 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=11,name="LightningMax",keywordFlags=0}},nil}c["An additional Curse can be applied to you 20% increased Damage per Curse on you"]={nil,"An additional Curse can be applied to you 20% increased Damage per Curse on you"}c["50% increased Attack Speed"]={{[1]={flags=1,type="INC",value=50,name="Speed",keywordFlags=0}},nil}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["Adds 65 to 120 Chaos Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=120,name="ChaosMax",keywordFlags=0}},nil}c["14% Chance to Block"]={{[1]={flags=0,type="BASE",value=14,name="BlockChance",keywordFlags=0}},nil}c["100% reduced Frostbite Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Frostbite"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["2% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["Can Allocate Passives from the Marauder's starting point"]={{},nil}c["Adds 22 to 32 Cold Damage"]={{[1]={flags=0,type="BASE",value=22,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=32,name="ColdMax",keywordFlags=0}},nil}c["Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking"}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedColdDamage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["+25% chance to be Ignited"]={{}," to be Ignited"}c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=3,name="DamageTaken",keywordFlags=0}},nil}c["Critical Strikes deal 50% increased Lightning Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="INC",value=50,name="LightningDamage",keywordFlags=0}},nil}c["+1 to maximum number of Summoned Holy Relics"]={{}," maximum number of Summoned Holy Relics"}c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"}c["100% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=100,name="LifeLeechRate",keywordFlags=0}},nil}c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["25% increased Strength Requirement"]={{[1]={flags=0,type="INC",value=25,name="StrRequirement",keywordFlags=0}},nil}c["Items and Gems have 50% increased Attribute Requirements"]={nil,"Items and Gems have 50% increased Attribute Requirements"}c["50% reduced number of Zombies allowed"]={{[1]={flags=0,type="INC",value=-50,name="ActiveZombieLimit",keywordFlags=0}},nil}c["Cannot Be Stunned while on Full Energy Shield"]={nil,"Cannot Be Stunned while on Full Energy Shield"}c["Grants Armour equal to 160% of your Reserved Life to you and nearby Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1.6,name="Armour",keywordFlags=0}},name="GrantReservedLifeAsAura",keywordFlags=0}},nil}c["40% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["-1 Strength per 1 Strength on Allocated Passives in Radius +5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Str",div=1},[2]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",keywordFlags=0,name="Str",value=-1}}," on Allocated Passives in Radius +5% to Critical Strike Multiplier on Unallocated Passives in Radius"}c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=30,name="BuffEffect",keywordFlags=0}},nil}c["24% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["75% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-75,name="FlaskEffect",keywordFlags=0}}," of Chill on You"}c["4% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-4,name="ManaReserved",keywordFlags=0}},nil}c["20% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={flags=0,type="BASE",value=18,name="ManaGainAsEnergyShield",keywordFlags=0}}," while affected by Clarity"}c["Raging Spirits have 150% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Raging Spirit"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=150,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," with arrows that Fork"}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy"}c["40% increased Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["-40% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-40,name="ElementalResist",keywordFlags=0}},nil}c["Your Flasks grant 10% chance to Ignite during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["5% chance to Freeze"]={{[1]={flags=0,type="BASE",value=5,name="EnemyFreezeChance",keywordFlags=0}},nil}c["90% increased Spell Damage"]={{[1]={flags=2,type="INC",value=90,name="Damage",keywordFlags=0}},nil}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=-1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["25% reduced Golem Size"]={{}," Size"}c["2% of Fire Damage Leeched as Life while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=2,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["Your Offering Skills also affect you"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"}},value={mod={value={key="buffNotPlayer",value=false},type="LIST",keywordFlags=0,name="SkillData",flags=0}},type="LIST",keywordFlags=0,name="ExtraSkillMod",flags=0}},nil}c["5% increased maximum Life"]={{[1]={flags=0,type="INC",value=5,name="Life",keywordFlags=0}},nil}c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"Gain an Endurance Charge when you take a Critical Strike"}c["40% increased Damage against Frozen Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 65 to 105 Chaos Damage to Spells"]={{[1]={flags=2,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={flags=2,type="BASE",value=105,name="ChaosMax",keywordFlags=0}},nil}c["1.5% of Damage leeched as Life while affected by Vitality {variant:46}140 Life Regenerated per Second while affected by Vitality"]={{}," while affected by Vitality"}c["Enemies you Shock have 30% reduced Cast Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed"}c["Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use"}c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=100,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=100,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=100,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-5,name="ManaCost",keywordFlags=0}},nil}c["10% increased Damage over Time"]={{[1]={flags=8,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["10% increased Dexterity"]={{[1]={flags=0,type="INC",value=10,name="Dex",keywordFlags=0}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect Enemies on Consecrated Ground you create during Effect take 10% increased Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,type="BASE",keywordFlags=0,name="CritChance",value=2}}," against Enemies on Consecrated Ground Enemies on Consecrated Ground you create take 10% increased Damage"}c["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges"}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently 10% increased Movement Speed if you have used a Vaal Skill Recently"]={nil,"10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently 10% increased Movement Speed if you have used a Vaal Skill Recently"}c["30 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=30,name="LifeRegen",keywordFlags=0}},nil}c["Deal no Physical Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoPhysical",flags=0}},nil}c["+45% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=45,name="ChaosResist",keywordFlags=0}},nil}c["5% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=5,name="FlaskEffect",keywordFlags=0}},nil}c["8% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["20% chance to gain Fortify on Melee Stun You have Onslaught while you have Fortify"]={{}," to gain Fortify on Stun You have Onslaught "}c["Your Energy Shield starts at zero Cannot gain Energy Shield"]={nil,"Your Energy Shield starts at zero Cannot gain Energy Shield"}c["You can only Socket Corrupted Gems in this item {variant:1}Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item {variant:1}Acrobatics"}c["With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"]={nil,"With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill 180% increased Evasion and Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="EvasionAndEnergyShield",keywordFlags=0}}," to Trigger Level 20 Shade Form when you Use a Socketed Skill 180% increased "}c["20% increased Warcry Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=4}},nil}c["35% reduced Stun Recovery"]={{[1]={flags=0,type="INC",value=-35,name="StunRecovery",keywordFlags=0}},nil}c["Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"}c["100% increased Shock Duration on You"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=0}}," on You"}c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=36,name="PhysicalMax",keywordFlags=0}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"]={nil,"16 to 144 added Lightning Damage per Blue Socket"}c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=18,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["100% increased Charges used"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargesUsed",keywordFlags=0}},nil}c["Adds 14 to 26 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=26,name="PhysicalMax",keywordFlags=0}},nil}c["+24 to Strength"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0}},nil}c["Vitality Reserves no Mana"]={nil,"Vitality Reserves no Mana"}c["Purity of Lightning Reserves no Mana"]={nil,"Purity of Lightning Reserves no Mana"}c["100% increased Mana Regeneration if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=100,name="ManaRegen",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,type="INC",value=25,name="CritChance",keywordFlags=16384}},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["+58 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=58,name="EnergyShield",keywordFlags=0}},nil}c["+20 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["+16 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=16,name="EnergyShield",keywordFlags=0}},nil}c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky"}c["+45 to all Attributes"]={{[1]={flags=0,type="BASE",value=45,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=45,name="Int",keywordFlags=0}},nil}c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=138,name="CritChance",keywordFlags=0}},nil}c["100% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=100,name="ElementalDamage",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["0.5% of Energy Shield Regenerated per second for each Enemy you've Killed Recently"]={{[1]={flags=0,type="BASE",value=0.5,name="EnergyShieldRegenPercent",keywordFlags=0}}," for each Enemy you've Killed Recently"}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"}c["20% of Life Regenerated per Second while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,type="BASE",value=20,name="LifeRegenPercent",keywordFlags=0}},nil}c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=5,name="LightningResistMax",keywordFlags=0}},nil}c["20% chance to Freeze, Shock and Ignite while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="EnemyFreezeChance",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="EnemyShockChance",keywordFlags=0},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="EnemyIgniteChance",keywordFlags=0}},nil}c["20% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Frozen Enemies Hits with this Weapon deal 60% increased Damage to Shocked Enemies"}c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=256}},nil}c["10% increased Totem Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=16384}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"}c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={{}," to gain aCharge on Kill Gore Footprints"}c["You cannot have non-Golem Minions"]={nil,"You cannot have non-Golem Minions"}c["+38 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=38,name="Accuracy",keywordFlags=0}},nil}c["10% increased Movement Speed if you have used a Vaal Skill Recently"]={{[1]={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=256}}," if you have used a Recently"}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={nil,"Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"}c["Adds 3 to 8 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,type="BASE",value=3,name="FireMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,type="BASE",value=8,name="FireMax",keywordFlags=0}},nil}c["225% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=225,name="Evasion",keywordFlags=0}},nil}c["+40 to maximum Mana"]={{[1]={flags=0,type="BASE",value=40,name="Mana",keywordFlags=0}},nil}c["Adds 3 to 7 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,type="BASE",value=3,name="FireMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,type="BASE",value=7,name="FireMax",keywordFlags=0}},nil}c["You cannot have non-Animated Minions"]={nil,"You cannot have non-Animated Minions"}c["30% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyStunDuration",keywordFlags=0}},nil}c["+40% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=40,name="CritMultiplier",keywordFlags=0}},nil}c["+25% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},nil}c["40% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=40,name="PhysicalDamage",keywordFlags=0}}," Maximum "}c["220% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["5% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=5,name="MineLayingSpeed",keywordFlags=0}},nil}c["8% increased Intelligence"]={{[1]={flags=0,type="INC",value=8,name="Int",keywordFlags=0}},nil}c["17% increased Attack Speed"]={{[1]={flags=1,type="INC",value=17,name="Speed",keywordFlags=0}},nil}c["+3% to all maximum Resistances while Poisoned 50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}}," while Poisoned 50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"}c["5 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="ManaRegen",keywordFlags=0}},nil}c["Adds 225 to 600 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,type="BASE",value=225,name="LightningMin",keywordFlags=0},[2]={flags=1048576,type="BASE",value=600,name="LightningMax",keywordFlags=0}},nil}c["+25% chance to be Poisoned"]={{}," to be Poisoned"}c["2% increased Attack Critical Strike Chance per 200 Accuracy Rating"]={{[1]={[1]={type="PerStat",stat="Accuracy",div=200},flags=0,type="INC",value=2,name="CritChance",keywordFlags=0}}," Attack "}c["+55 to maximum Life"]={{[1]={flags=0,type="BASE",value=55,name="Life",keywordFlags=0}},nil}c["25% increased Attack Speed"]={{[1]={flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["Mind Over Matter"]={{[1]={value="Mind Over Matter",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["185% increased Physical Damage"]={{[1]={flags=0,type="INC",value=185,name="PhysicalDamage",keywordFlags=0}},nil}c["+8 to Strength"]={{[1]={flags=0,type="BASE",value=8,name="Str",keywordFlags=0}},nil}c["Minions have 8% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Notable Passive Skills in Radius grant nothing"]={nil,"Notable Passive Skills in Radius grant nothing"}c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={flags=2,type="INC",value=200,name="Damage",keywordFlags=0}}," if you've dealt a Critical Strike in the past 8 seconds"}c["You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste"}c["12% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=16777217,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["40% increased Damage of each Damage Type for which you have a matching Golem"]={{[1]={[1]={type="Condition",var="HavePhysicalGolem"},flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0},[2]={[1]={type="Condition",var="HaveLightningGolem"},flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0},[3]={[1]={type="Condition",var="HaveColdGolem"},flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0},[4]={[1]={type="Condition",var="HaveFireGolem"},flags=0,type="INC",value=40,name="FireDamage",keywordFlags=0},[5]={[1]={type="Condition",var="HaveChaosGolem"},flags=0,type="INC",value=40,name="ChaosDamage",keywordFlags=0}},nil}c["Arrows that Pierce have 50% chance to cause Bleeding {variant:3}Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have 50% chance to cause Bleeding {variant:3}Arrows that Pierce have +50% to Critical Strike Multiplier"}c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's"}c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero"}c["6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge"}c["206% increased Physical Damage"]={{[1]={flags=0,type="INC",value=206,name="PhysicalDamage",keywordFlags=0}},nil}c["2% increased Area of Effect per 25 Rampage Kills Gain a Frenzy Charge on every 50th Rampage Kill"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="INC",value=2,name="AreaOfEffect",keywordFlags=0}}," per 25 Rampage Kills Gain aCharge on every 50th Rampage Kill"}c["40% less Damage"]={{[1]={flags=0,type="MORE",value=-40,name="Damage",keywordFlags=0}},nil}c["Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons have Avatar of Fire"}c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when any of your s is Triggered by an Enemy"}c["10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="MORE",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="INC",value=20,name="Damage",keywordFlags=0}}," with Hits "}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"}c["+18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}}," Attack Damage "}c["40% chance to Poison on Hit against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=40,name="PoisonChance",keywordFlags=0}},nil}c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=260,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["45% increased Spell Damage"]={{[1]={flags=2,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["8% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=8,name="LootQuantity",keywordFlags=0}},nil}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=19,name="LifeOnHit",keywordFlags=0}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you"}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"}c["15% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies"}c["24% increased Armour"]={{[1]={flags=0,type="INC",value=24,name="Armour",keywordFlags=0}},nil}c["Adds 10 to 14 Fire Damage"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="FireMax",keywordFlags=0}},nil}c["25% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies"]={{[1]={flags=0,type="BASE",value=25,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased "}c["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike"}c["Minions gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill"}c["50% increased Evasion if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["9% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=9,name="Damage",keywordFlags=0}},nil}c["40% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=40,name="ManaCost",keywordFlags=0}},nil}c["8% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["Adds 15 to 33 Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="ChaosMax",keywordFlags=0}},nil}c["2% increased Experience gain"]={{}," Experience gain"}c["Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"]={nil,"Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"}c["Adds 20 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=20,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="FireMax",keywordFlags=0}},nil}c["Adds 20 to 50 Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["Adds 21 to 33 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=21,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="ColdMax",keywordFlags=0}},nil}c["24% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["50% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=50,name="BlockChanceConv",keywordFlags=0}},nil}c["10% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=10,name="ManaLeechRate",keywordFlags=0}},nil}c["0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["50% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=50,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit {variant:4}Trigger Level 1 Abyssal Cry on Hit"]={{}," to cause Enemies to Flee on Hit {variant:4}Trigger Level 1on Hit"}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["1.6% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.6,name="LifeRegenPercent",keywordFlags=0}},nil}c["Far Shot"]={nil,"Far Shot"}c["35% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=35,name="Armour",keywordFlags=0}},nil}c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=10}},nil}c["+15% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}},nil}c["12% increased Intelligence"]={{[1]={flags=0,type="INC",value=12,name="Int",keywordFlags=0}},nil}c["35% increased Energy Shield Recovery Rate"]={{[1]={flags=0,type="INC",value=35,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["13% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=13,name="StunRecovery",keywordFlags=0}},nil}c["+20% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FireResist",keywordFlags=0}},nil}c["+3% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,type="BASE",value=3,name="MaxLifeLeechRate",keywordFlags=0}},nil}c["20% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges"}c["8% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["50% increased Damage with Movement Skills"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=8}},nil}c["15% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 50 Life when you Stun an Enemy"]={nil,"Gain 50 Life when you Stun an Enemy"}c["10% reduced Reflected Physical Damage taken"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["40% reduced Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=-40,name="AreaOfEffect",keywordFlags=2}},nil}c["Adds 10 to 15 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Every 14 seconds:"]={{},nil}c["6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="ActorCondition",actor="enemy",var="LowLife"},flags=4,type="INC",keywordFlags=0,name="Damage",value=6}}," with Hits "}c["5% chance to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill"}c["+5% of maximum Mana per second to maximum Mana Leech rate"]={{[1]={flags=0,type="BASE",value=5,name="MaxManaLeechRate",keywordFlags=0}},nil}c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["4 additional Arrows"]={{[1]={flags=1,type="BASE",value=4,name="ProjectileCount",keywordFlags=0}},nil}c["1% of Life Regenerated per second per 500 Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}}," per 500 "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy"}c["7% increased Spell Damage"]={{[1]={flags=2,type="INC",value=7,name="Damage",keywordFlags=0}},nil}c["Adds 51 to 59 Chaos Damage"]={{[1]={flags=0,type="BASE",value=51,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=59,name="ChaosMax",keywordFlags=0}},nil}c["+360 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=360,name="Accuracy",keywordFlags=0}},nil}c["+1 Life per 4 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=4},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=5,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=5,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["Damage Penetrates 25% Fire Resistance if you've used a Lightning Skill in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsedLightningSkillInPast10Sec"},flags=0,type="BASE",value=25,name="FirePenetration",keywordFlags=0}},nil}c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems"}c["25% chance on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground"}c["You have Crimson Dance while you have Cat's Stealth"]={nil,"You have Crimson Dance while you have Cat's Stealth"}c["Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"]={nil,"Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"}c["+6% to maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=6,name="LightningResistMax",keywordFlags=0}},nil}c["10% increased Damage for each type of Abyssal Jewel affecting you"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=0}}," for each type of Abyssal Jewel affecting you"}c["+30 Life gained on Killing Ignited Enemies Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=30,name="LifeOnKillGainAsFire",keywordFlags=0}}," ing Ignited Enemies Gain 20% of Physical Damage "}c["+40% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=40,name="LightningResist",keywordFlags=0}},nil}c["+18 to all Attributes"]={{[1]={flags=0,type="BASE",value=18,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=18,name="Int",keywordFlags=0}},nil}c["5% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="BASE",value=5,name="EnemyFreezeChance",keywordFlags=0}},nil}c["100% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=100,name="Damage",keywordFlags=0}},nil}c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["4% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=4,name="Evasion",keywordFlags=0}},nil}c["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you"}c["Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"]={nil,"Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"}c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy"}c["1% of Damage against Frozen Enemies Leeched as Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["1% increased Armour per 16 Strength when in Off Hand"]={{[1]={[1]={type="PerStat",stat="Str",div=16},[2]={type="SlotNumber",num=2},flags=0,type="INC",keywordFlags=0,name="Armour",value=1}},nil}c["Adds 4 to 8 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},nil}c["310% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=310,name="Evasion",keywordFlags=0}},nil}c["Adds 2 to 4 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=4,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 4 to 7 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=7,name="PhysicalMax",keywordFlags=0}},nil}c["+70 to maximum Mana"]={{[1]={flags=0,type="BASE",value=70,name="Mana",keywordFlags=0}},nil}c["Reserves 30% of Life"]={{[1]={flags=0,type="BASE",value=30,name="ExtraLifeReserved",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 12 Fortify"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFortify",level=12},name="ExtraSupport",keywordFlags=0}},nil}c["+2 to Weapon range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"]={{[1]={[1]={type="Condition",varList={[1]="KilledRecently",[2]="TotemsKilledRecently"}},flags=0,type="BASE",value=20,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Skills fire an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=0}},nil}c["Recover Full Life at the end of the Flask effect"]={nil,"Recover Full Life at the end of the Flask effect"}c["33% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["28% increased Fire Damage"]={{[1]={flags=0,type="INC",value=28,name="FireDamage",keywordFlags=0}},nil}c["50% reduced Maximum Recovery per Life Leech 6% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=-50,name="Life",keywordFlags=0}}," Maximum Recovery per Leech 6% increased Attack and Cast Speed"}c["+70 to Intelligence"]={{[1]={flags=0,type="BASE",value=70,name="Int",keywordFlags=0}},nil}c["28% increased Movement Speed"]={{[1]={flags=0,type="INC",value=28,name="MovementSpeed",keywordFlags=0}},nil}c["Totems Fire 2 additional Projectiles"]={{[1]={flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=16384}},nil}c["-8% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-8,name="ElementalResist",keywordFlags=0}},nil}c["+40% to Critical Strike Multiplier against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=40,name="CritMultiplier",keywordFlags=0}},nil}c["10% increased Damage taken from Skeletons 10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Skeletons 10% increased Damage taken from Ghosts"}c["7% increased Movement Speed"]={{[1]={flags=0,type="INC",value=7,name="MovementSpeed",keywordFlags=0}},nil}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,type="BASE",value=20,name="CritMultiplier",keywordFlags=0}},nil}c["15% increased Attributes"]={{[1]={flags=0,type="INC",value=15,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=15,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=15,name="Int",keywordFlags=0}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"}c["Gain Life from Leech instantly from Hits with this Weapon"]={nil,"Gain Life from Leech instantly from Hits with this Weapon"}c["30% increased Trap Trigger Radius {variant:2}60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=4096}}," Trigger {variant:2}60% increased Trap Trigger Area of Effect"}c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-8,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered"}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"}c["15% of Physical Attack Damage Added as Lightning Damage"]={{[1]={flags=1,type="BASE",value=15,name="PhysicalDamageGainAsLightning",keywordFlags=0}},nil}c["30% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-30,name="Damage",keywordFlags=0}},nil}c["16% increased Attack Speed"]={{[1]={flags=1,type="INC",value=16,name="Speed",keywordFlags=0}},nil}c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes are doubled"}c["0.5% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.5,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect"}c["+5000 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,type="BASE",value=5000,name="Armour",keywordFlags=0}},nil}c["15% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=15,name="LifeLeechRate",keywordFlags=0}},nil}c["Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements"]={{[1]={flags=0,type="FLAG",value=true,name="ElementalEquilibrium",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="HitByFireDamage"},flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[3]={flags=0,type="LIST",value={mod={[1]={type="Condition",neg=true,var="HitByFireDamage"},[2]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,type="BASE",keywordFlags=0,name="FireResist",value=-50}},name="EnemyModifier",keywordFlags=0},[4]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="HitByColdDamage"},flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[5]={flags=0,type="LIST",value={mod={[1]={type="Condition",neg=true,var="HitByColdDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,type="BASE",keywordFlags=0,name="ColdResist",value=-50}},name="EnemyModifier",keywordFlags=0},[6]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="HitByLightningDamage"},flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[7]={flags=0,type="LIST",value={mod={[1]={type="Condition",neg=true,var="HitByLightningDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,type="BASE",keywordFlags=0,name="LightningResist",value=-50}},name="EnemyModifier",keywordFlags=0}},nil}c["Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 30% of Maximum Life Regenerated over one second"}c["Can have up to 2 additional Totems summoned at a time"]={{[1]={flags=0,type="BASE",value=2,name="ActiveTotemLimit",keywordFlags=0}},nil}c["3% increased Damage per Crab Barrier 10% chance that if you would gain a Crab Barrier, you instead gain up to"]={{[1]={flags=0,type="INC",value=3,name="Damage",keywordFlags=0}}," per Crab Barrier 10% chance that if you would gain a Crab Barrier, you instead gain up to"}c["Trigger a Socketed Lightning Spell on Hit"]={nil,nil}c["24% Chance to Block"]={{[1]={flags=0,type="BASE",value=24,name="BlockChance",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["0% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=0,name="Duration",keywordFlags=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=18,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}},nil}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements {variant:30}12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={type="SkillName",skillName="Purity of Elements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsCold",keywordFlags=0}}," while affected by{variant:30}12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"}c["100% increased Ignite Duration on You {variant:2}10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=100,name="EnemyIgniteDuration",keywordFlags=0}}," on You {variant:2}10% increased Movement Speed "}c["Minions deal 13% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["15% increased Movement Speed if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Attacks have an additional Projectile when in Off Hand"]={{[1]={[1]={type="SlotNumber",num=2},value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=1}},nil}c["25% increased Attack Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["Adds 125 to 265 Physical Damage"]={{[1]={flags=0,type="BASE",value=125,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=265,name="PhysicalMax",keywordFlags=0}},nil}c["45% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="FlaskEffect",keywordFlags=0}}," of Chill on You"}c["Adds 115 to 265 Physical Damage"]={{[1]={flags=0,type="BASE",value=115,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=265,name="PhysicalMax",keywordFlags=0}},nil}c["2% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["50% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=50,name="ElementalDamage",keywordFlags=0}},nil}c["2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}}," on Allocated Passives in Radius"}c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted"}c["Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently"}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."}c["22% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=22,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Damage"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["100% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork"}c["6% increased Attack Damage for each Map Item Modifier affecting the Area 3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,type="INC",value=6,name="Damage",keywordFlags=0}}," for each Map Item Modifier affecting the 3% increased Attack Speed for each Map Item Modifier affecting the Area"}c["+60% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=60,name="ElementalResist",keywordFlags=0}},nil}c["Life Leech is applied to Energy Shield instead"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="GhostReaver",flags=0}},nil}c["30% chance for Attacks to Maim on Hit against Bleeding Enemies 30% increased Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="BASE",keywordFlags=0,name="Damage",value=30}}," to Maim on Hit 30% increased "}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=40,name="ManaRegen",keywordFlags=0}},nil}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["3% increased Poison Duration per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=3,name="Duration",keywordFlags=1048576}},nil}c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled"}c["6% increased maximum Life"]={{[1]={flags=0,type="INC",value=6,name="Life",keywordFlags=0}},nil}c["30% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second"}c["+150% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=150,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 23 to 40 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=23,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}},nil}c["+212 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=212,name="IntRequirement",keywordFlags=0}},nil}c["+40 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=40,name="ManaOnKill",keywordFlags=0}},nil}c["20 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["Adds 30 to 45 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=30,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="ColdMax",keywordFlags=0}},nil}c["12% increased Dexterity"]={{[1]={flags=0,type="INC",value=12,name="Dex",keywordFlags=0}},nil}c["You gain 100 Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=100,name="Evasion",keywordFlags=0}},nil}c["80% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["10% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+25% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ChaosResist",keywordFlags=0}},nil}c["Fire Skills have 20% chance to Poison on Hit {variant:2}Cold Skills have 20% chance to Poison on Hit"]={nil,"Fire Skills have 20% chance to Poison on Hit {variant:2}Cold Skills have 20% chance to Poison on Hit"}c["Projectile Damage increased by 50% of Arrow Pierce Chance"]={{[1]={[1]={type="PerStat",stat="PierceChance",div=2},flags=1024,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["50% increased Effect of non-Keystone Passive Skills in Radius Notable Passive Skills in Radius grant nothing"]={{[1]={flags=0,type="INC",value=50,name="FlaskEffect",keywordFlags=0}}," of non-Keystone Passive Skills in Radius Notable Passive Skills in Radius grant nothing"}c["Melee Critical Strikes have 25% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,type="BASE",value=25,name="PoisonChance",keywordFlags=0}},nil}c["30% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="SupportUniqueMjolnerLightningSpellsCastOnHit",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{}," Rarity of Items Dropped by Enemies killed with a Critical Strike"}c["Adds 4 to 9 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=9,name="PhysicalMax",keywordFlags=0}},nil}c["+30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=30,name="FireResist",keywordFlags=0}},nil}c["2% chance to Dodge Spell Hits"]={{}," to Dodge Hits"}c["their Maximum Life as Physical Damage 25% reduced Bleed duration"]={nil,"their Maximum Life as Physical Damage 25% reduced Bleed duration"}c["20% increased Damage with Hits against Chilled Enemies {variant:2}With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},[2]={type="SkillName",skillName="Ice Shot"},flags=4,type="INC",keywordFlags=0,name="Damage",value=20}}," with Hits {variant:2}With at least 40 Dexterity in Radius,Pierces 5 additional Targets"}c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies"}c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,type="BASE",value=100,name="ColdResist",keywordFlags=0}}," when Socketed with a Green Gem"}c["2% of Life Regenerated per Second if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="FireMax",keywordFlags=0}},nil}c["Adds 190 to 320 Cold Damage"]={{[1]={flags=0,type="BASE",value=190,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=320,name="ColdMax",keywordFlags=0}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets"}c["Totems have 10% additional Physical Damage Reduction"]={nil,"Totems have 10% additional Physical Damage Reduction"}c["70% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-70,name="FlaskRecovery",keywordFlags=0}},nil}c["17% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=17,name="LootQuantity",keywordFlags=0}},nil}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["Enemies you Kill that are affected by Elemental Status Ailments"]={nil,"Enemies you Kill that are affected by Elemental Status Ailments"}c["15% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,type="INC",value=15,name="CritChance",keywordFlags=16384}},nil}c["30% increased Elemental Damage with Weapons while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["25% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-25,name="EnergyShield",keywordFlags=0}},nil}c["3% increased Character Size"]={{}," Character Size"}c["0.8% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.8,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["30% Chance to Dodge Attacks. 50% less Armour and Energy Shield, 30% less Chance to Block Spells and Attacks"]={{[1]={value=30,type="BASE",keywordFlags=0,name="AttackDodgeChance",flags=0},[2]={value=-50,type="MORE",keywordFlags=0,name="Armour",flags=0},[3]={value=-50,type="MORE",keywordFlags=0,name="EnergyShield",flags=0},[4]={value=-30,type="MORE",keywordFlags=0,name="BlockChance",flags=0},[5]={value=-30,type="MORE",keywordFlags=0,name="SpellBlockChance",flags=0}},nil}c["10% increased Charges used"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesUsed",keywordFlags=0}},nil}c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"You only lose 7 Crab Barriers when you take Physical Damage from a Hit"}c["100% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={flags=0,type="BASE",value=10,name="DamageTaken",keywordFlags=0}}," from Mana before Life while affected by Clarity"}c["+29 to all Attributes"]={{[1]={flags=0,type="BASE",value=29,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=29,name="Int",keywordFlags=0}},nil}c["18% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="LifeRecoveryRate",keywordFlags=0}},nil}c["Enemies killed by Zombies explode dealing Fire Damage"]={nil,"Enemies killed by Zombies explode dealing Fire Damage"}c["+50% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=50,name="LightningResist",keywordFlags=0}},nil}c["30% increased Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Leech applies instantly during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0},[2]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="InstantManaLeech",flags=0}},nil}c["100% reduced Despair Mana Reservation Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={{[1]={flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}}," Despair Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"}c["Immune to Burning Ground, Shocked Ground and Chilled Ground"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground"}c["12% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Your Minions spread Caustic Cloud on Death, dealing 10% of their maximum Life as Chaos Damage per second"]={{[1]={value={skillId="BeaconCausticCloud"},type="LIST",keywordFlags=0,name="ExtraMinionSkill",flags=0}},nil}c["+120 to Intelligence"]={{[1]={flags=0,type="BASE",value=120,name="Int",keywordFlags=0}},nil}c["Cannot be Stunned when on Low Life"]={nil,"Cannot be Stunned when on Low Life"}c["14% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=14,name="ChaosDamage",keywordFlags=0}},nil}c["Clarity Reserves no Mana"]={nil,"Clarity Reserves no Mana"}c["Gain Unholy Might for 2 seconds on Critical Strike"]={nil,"Gain Unholy Might for 2 seconds on Critical Strike"}c["Can have up to 2 additional Remote Mines placed at a time"]={{[1]={flags=0,type="BASE",value=2,name="ActiveMineLimit",keywordFlags=0}},nil}c["140% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=140,name="Evasion",keywordFlags=0}},nil}c["10% Chance to Cause Monster to Flee on Block 1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=4,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Cause Monster to Flee on Block 1% of Leeched as Life "}c["6% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["Spell Skills deal no Damage Your Spells are disabled"]={nil,"Spell Skills deal no Damage Your Spells are disabled"}c["12% increased Physical Damage Reduction"]={{[1]={flags=0,type="INC",value=12,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["6% reduced Damage taken from Bleeding Enemies 30% chance for Attacks to Maim on Hit against Bleeding Enemies 30% increased Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="INC",keywordFlags=0,name="DamageTaken",value=-6}}," from Bleeding Enemies 30% chance to Maim on Hit 30% increased Damage "}c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["15% increased Damage with Ailments per Elder Item Equipped"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}}," with Ailments per Elder Item Equipped"}c["+170 to maximum Life"]={{[1]={flags=0,type="BASE",value=170,name="Life",keywordFlags=0}},nil}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you"}c["+60 to maximum Mana"]={{[1]={flags=0,type="BASE",value=60,name="Mana",keywordFlags=0}},nil}c["175% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=175,name="ArmourAndEvasion",keywordFlags=0}},nil}c["10% chance to Cause Monsters to Flee {variant:1}Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee {variant:1} Attacks cause Bleeding"}c["Ornate Quiver"]={nil,"Ornate Quiver"}c["400% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=400,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Using Warcries is Instant Warcries cost no Mana"]={nil,"Using Warcries is Instant Warcries cost no Mana"}c["Determination Reserves no Mana"]={nil,"Determination Reserves no Mana"}c["Socketed Gems have 40% reduced Elemental Equilibrium effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-40,name="FlaskEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," Elemental Equilibrium "}c["nearby Enemies when Hit"]={nil,"nearby Enemies when Hit"}c["6% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=6,name="MineLayingSpeed",keywordFlags=0}},nil}c["240% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=240,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=25},flags=1,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Dex",div=25},flags=1,type="BASE",value=3,name="PhysicalMax",keywordFlags=0}},nil}c["Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"]={nil,"Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"}c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={nil,"Cannot be Frozen or Chilled if you've used a Fire Skill Recently"}c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=23,name="FlaskManaRecovery",keywordFlags=0}},nil}c["+79 to maximum Life"]={{[1]={flags=0,type="BASE",value=79,name="Life",keywordFlags=0}},nil}c["15% increased Item Quantity per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}}," Attack Damage "}c["+300 Armour per active Totem"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active "}c["+10 to Dexterity"]={{[1]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"]={{[1]={flags=0,type="BASE",value=30,name="LightningDamage",keywordFlags=0}}," is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"}c["15% increased Attack Speed"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["40% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",keywordFlags=0}},nil}c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=68,name="CritChance",keywordFlags=0}},nil}c["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,type="LIST",value={skillId="Purity",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["+100 to Maximum Energy Shield per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["25% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["10% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"}c["23% increased Attack Speed"]={{[1]={flags=1,type="INC",value=23,name="Speed",keywordFlags=0}},nil}c["10% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Golems regenerate 2% of their Maximum Life per second"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Shared Suffering"]={nil,"Shared Suffering"}c["+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}}," while you do not have Avatar of Fire"}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"]={nil,"Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"}c["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"]={nil,"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"}c["Remove Bleeding on Flask use Gain a Flask Charge when you deal a Critical Strike"]={nil,"Remove Bleeding on Flask use Gain a Flask Charge when you deal a Critical Strike"}c["25% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies 25% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{[1]={flags=0,type="BASE",value=25,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased 25% chance to create Consecrated Ground on Kill, lasting 8 seconds"}c["Deal no Non-Elemental Damage"]={nil,"Deal no Non-Elemental Damage"}c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon"}c["5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["+450 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=450,name="Evasion",keywordFlags=0}},nil}c["10% chance to Dodge Attacks while affected by Grace {variant:19}15% increased Movement Speed while affected by Grace"]={{[1]={[1]={type="SkillName",skillName="Grace"},flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}}," while affected by{variant:19}15% increased Movement Speed while affected by Grace"}c["Reflects 23 Physical Damage to Melee Attackers"]={{},nil}c["8% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=8,name="PoisonChance",keywordFlags=0}},nil}c["Minions cannot be Blinded"]={nil,"cannot be Blinded"}c["20% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["18% increased Cast Speed"]={{[1]={flags=16,type="INC",value=18,name="Speed",keywordFlags=0}},nil}c["1% of Fire Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=1,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["Bleeding you inflict on Maimed Enemies deals 100% more Damage"]={{[1]={[1]={type="ActorCondition",var="Maimed",actor="enemy"},flags=0,type="MORE",value=100,name="Damage",keywordFlags=2097152}},nil}c["100% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,type="INC",value=100,name="DamageTaken",keywordFlags=0}}," when on Low Mana"}c["8% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=8,name="LightningDamage",keywordFlags=0}},nil}c["55% increased Spell Damage"]={{[1]={flags=2,type="INC",value=55,name="Damage",keywordFlags=0}},nil}c["39% increased Spell Damage"]={{[1]={flags=2,type="INC",value=39,name="Damage",keywordFlags=0}},nil}c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=100,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={flags=0,type="BASE",value=50,name="EnergyShieldRegen",keywordFlags=0}}," per Poison on you, up to 250 per second"}c["15% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Minions have +10% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="ElementalResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["14% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=14,name="EnergyShield",keywordFlags=0}},nil}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}}," to Avoid interruption from Stuns while Casting +20 to "}c["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["+11% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=11,name="ElementalResist",keywordFlags=0}},nil}c["1% of Energy Shield regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["18% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-18,name="Duration",keywordFlags=0}},nil}c["Unaffected by Burning Ground"]={nil,"Unaffected by Burning Ground"}c["40% increased Burning Damage"]={{[1]={flags=8,type="INC",value=40,name="FireDamage",keywordFlags=0}},nil}c["Arrows Pierce an additional Target"]={nil,"Arrows Pierce an additional Target"}c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit"}c["50% reduced Reflected Physical Damage taken 20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=-50,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected 20% more Damage "}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"}c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=16,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="ColdResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Generosity"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportGenerosity",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["16% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=16,name="LootRarity",keywordFlags=0}},nil}c["10% increased Physical Damage"]={{[1]={flags=0,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill"}c["Grants Summon Harbinger of Brutality Skill"]={nil,"Grants Summon Harbinger of Brutality Skill"}c["+1 Mana per 4 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=4},flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}},nil}c["10% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,type="INC",value=-10,name="BlockChance",keywordFlags=0},[2]={flags=0,type="INC",value=-10,name="SpellBlockChance",keywordFlags=0}},nil}c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={nil,"Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"}c["+10 to Strength"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0}},nil}c["Cold Skills have 20% chance to Poison on Hit {variant:3}Lightning Skills have 20% chance to Poison on Hit"]={nil,"Cold Skills have 20% chance to Poison on Hit {variant:3}Lightning Skills have 20% chance to Poison on Hit"}c["20% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=20,name="FlaskChargesGained",keywordFlags=0}},nil}c["+16% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=16,name="ChaosResist",keywordFlags=0}},nil}c["15% increased Dexterity"]={{[1]={flags=0,type="INC",value=15,name="Dex",keywordFlags=0}},nil}c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,type="BASE",value=1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={type="PerStat",stat="Dex",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="BASE",value=7,name="CritMultiplier",keywordFlags=0}},name="ExtraAura",keywordFlags=0}}," you have"}c["Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",value=10,name="FirePenetration",keywordFlags=0}},nil}c["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit"}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"}c["0.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.8,name="LifeRegenPercent",keywordFlags=0}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Trigger Socketed Curse Spells when you cast a Curse"]={nil,"Trigger Socketed Curse Spells when you cast a Curse"}c["10% chance of Arrows Piercing"]={{[1]={flags=8192,type="BASE",value=10,name="PierceChance",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMulticast",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 3 to 6 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=3,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=6,name="FireMax",keywordFlags=0}},nil}c["15% increased Movement Speed while affected by Grace {variant:20}Unaffected by Enfeeble while affected by Grace"]={{[1]={[1]={type="SkillName",skillName="Grace"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," while affected by{variant:20}Unaffected by Enfeeble while affected by Grace"}c["Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage"}c["50% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["20% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="LifeConvertToEnergyShield",keywordFlags=0}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",keywordFlags=0}}," for Recharge to start when you use a Skill"}c["16% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=16,name="LootQuantity",keywordFlags=0}},nil}c["170% increased Energy Shield"]={{[1]={flags=0,type="INC",value=170,name="EnergyShield",keywordFlags=0}},nil}c["+2 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=40,name="EnergyShield",keywordFlags=0}},nil}c["12% chance to deal Double Damage"]={{[1]={flags=0,type="BASE",value=12,name="DoubleDamageChance",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=4096}},nil}c["Hits that Stun Enemies have Culling Strike"]={nil,"Hits that Stun Enemies have Culling Strike"}c["20% increased Stun Threshold"]={{[1]={flags=0,type="INC",value=20,name="StunThreshold",keywordFlags=0}},nil}c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers"}c["+1% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=1,name="FireResistMax",keywordFlags=0}},nil}c["65% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=65,name="ChaosDamage",keywordFlags=0}},nil}c["Adds 1 to 18 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger"]={{[1]={flags=0,type="BASE",value=1.5,name="FireDamageLifeLeech",keywordFlags=0}}," while affected by Anger"}c["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["8% chance to Block Spells while affected by Discipline"]={{[1]={flags=0,type="BASE",value=8,name="SpellBlockChance",keywordFlags=0}}," while affected by Discipline"}c["Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality"}c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move"}c["2% increased Area of Effect per 25 Rampage Kills"]={{[1]={flags=0,type="INC",value=2,name="AreaOfEffect",keywordFlags=0}}," per 25 Rampage Kills"}c["Minions' Attacks deal 7 to 14 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=7,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"]={{[1]={flags=0,type="BASE",value=35,name="AvoidStun",keywordFlags=0}}," for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"}c["Adds 1 to 17 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=17,name="LightningMax",keywordFlags=0}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"}c["Adds 12 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 13 to 30 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="PhysicalMax",keywordFlags=0}},nil}c["30% increased Fire Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=12,name="Speed",keywordFlags=0}},name="AffectedByAuraMod",keywordFlags=0}},nil}c["40% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-40,name="Damage",keywordFlags=16384}},nil}c["-40 Physical Damage taken when hit by Animals"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTakenWhenHit",keywordFlags=0}}," by Animals"}c["35% increased damage against Burning Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Burning"},flags=4,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage"}c["100% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="NormalItem",threshold=1},flags=0,type="INC",value=100,name="LootRarity",keywordFlags=0}},nil}c["Socketed Gems are supported by level 20 Cast on Death"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportCastOnDeath",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of"}c["70% increased Fire Damage"]={{[1]={flags=0,type="INC",value=70,name="FireDamage",keywordFlags=0}},nil}c["+20 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=20,name="Evasion",keywordFlags=0}},nil}c["+8% chance to Evade Attacks while affected by Grace {variant:18}10% chance to Dodge Attacks while affected by Grace"]={{[1]={[1]={type="SkillName",skillName="Grace"},flags=0,type="BASE",value=8,name="AttackDodgeChance",keywordFlags=0}}," to Evade Attacks while affected by{variant:18}10% chance while affected by Grace"}c["+125 to maximum Life"]={{[1]={flags=0,type="BASE",value=125,name="Life",keywordFlags=0}},nil}c["+10 to maximum Mana"]={{[1]={flags=0,type="BASE",value=10,name="Mana",keywordFlags=0}},nil}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect {variant:1}50% reduced Duration"]={nil,"Immune to Freeze, Chill, Curses and Stuns during Flask Effect {variant:1}50% reduced Duration"}c["14% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=14,name="AuraEffect",keywordFlags=0}},nil}c["100% increased Aspect of the Avian Buff Effect"]={{[1]={flags=0,type="INC",value=100,name="BuffEffect",keywordFlags=0}}," Aspect of the Avian "}c["2% increased Energy Shield per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="INC",value=2,name="EnergyShield",keywordFlags=0}},nil}c["130% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 40 to 60 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="PhysicalMax",keywordFlags=0}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["Adds 25 to 60 Physical Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Your Fire Damage can Shock but not Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="FireCanShock",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="FireCannotIgnite",flags=0}},nil}c["36% chance to deal Double Damage while Focussed {variant:13}{crafted}Trigger a Socketed Spell when you Use a Skill"]={{[1]={flags=2,type="BASE",value=36,name="DoubleDamageChance",keywordFlags=0}}," while Focussed {variant:13}{crafted}Trigger a Socketed when you Use a Skill"}c["You are Immune to Silence"]={nil,"You are Immune to Silence"}c["Adds 145 to 230 Fire Damage"]={{[1]={flags=0,type="BASE",value=145,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=230,name="FireMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIncreasedAreaOfEffect",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["14% increased Attack Speed"]={{[1]={flags=1,type="INC",value=14,name="Speed",keywordFlags=0}},nil}c["Cannot gain Energy Shield"]={nil,"Cannot gain Energy Shield"}c["Spectres have 75% increased maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=75,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["70% increased Aspect of the Spider Area of Effect"]={{[1]={flags=0,type="INC",value=70,name="AreaOfEffect",keywordFlags=0}}," Aspect of the Spider "}c["10% increased maximum Mana"]={{[1]={flags=0,type="INC",value=10,name="Mana",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"]={{}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web"}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"}c["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["15% increased Character Size"]={{}," Character Size"}c["50% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="INC",value=50,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["25% chance to gain an Endurance Charge when you gain a Power Charge"]={{}," to gain an Endurance Charge when you gain a Power Charge"}c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=50,name="Defences",keywordFlags=0}},nil}c["25% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 1% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{}," "}c["157% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=157,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["235% increased Physical Damage"]={{[1]={flags=0,type="INC",value=235,name="PhysicalDamage",keywordFlags=0}},nil}c["25% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-25,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["15% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["20% increased Duration of Elemental Ailments on Enemies Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," of Elemental Ailments Items and Gems have 10% reduced Attribute Requirements"}c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"}c["17% increased Totem Life"]={{[1]={flags=0,type="INC",value=17,name="TotemLife",keywordFlags=0}},nil}c["1% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=1,name="DamageTaken",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["25% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-25,name="Life",keywordFlags=0}},nil}c["+160% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=160,name="CritMultiplier",keywordFlags=0}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies {variant:1}{crafted}2% of Life Regenerated per second during any Flask Effect"]={{}," "}c["12% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Your Elemental Damage can Shock"]={nil,"Your Elemental Damage can Shock"}c["36% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,type="INC",value=36,name="Speed",keywordFlags=0}},nil}c["42% increased Spell Damage"]={{[1]={flags=2,type="INC",value=42,name="Damage",keywordFlags=0}},nil}c["25% increased Attack and Cast Speed if you've taken a Savage"]={{[1]={flags=0,type="INC",value=25,name="Speed",keywordFlags=0}}," if you've taken a Savage"}c["10% reduced Quantity of Items found"]={{[1]={flags=0,type="INC",value=-10,name="LootQuantity",keywordFlags=0}},nil}c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=50,name="ManaRegen",keywordFlags=0}},nil}c["Totems have 50% of your Armour"]={nil,"Totems have 50% of your Armour"}c["20% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}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["225% increased Armour"]={{[1]={flags=0,type="INC",value=225,name="Armour",keywordFlags=0}},nil}c["7% increased maximum Life"]={{[1]={flags=0,type="INC",value=7,name="Life",keywordFlags=0}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds"}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{}," to inflict Bleeding "}c["Adds 9 to 15 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=9,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["20% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="LightningDamageLifeLeech",keywordFlags=0}},nil}c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-7,name="ManaCost",keywordFlags=0}},nil}c["+2 Mana per 4 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=4},flags=0,type="BASE",value=2,name="Mana",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={flags=0,type="BASE",value=20,name="Evasion",keywordFlags=0}}," per 5 Maximum Energy Shield on Equipped Shield"}c["90% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=90,name="CritChance",keywordFlags=0}},nil}c["20% increased Effect of Auras on you"]={{[1]={flags=0,type="INC",value=20,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of"}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsLightning",keywordFlags=0}}," while affected by Purity of Lightning"}c["With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"]={nil,"With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"}c["25% increased Totem Life"]={{[1]={flags=0,type="INC",value=25,name="TotemLife",keywordFlags=0}},nil}c["Adds 2 to 4 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=4,name="PhysicalMax",keywordFlags=0}},nil}c["22% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=22,name="StunRecovery",keywordFlags=0}},nil}c["0.5% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"}c["Adds 10 to 16 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=16,name="PhysicalMax",keywordFlags=0}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit"}c["+20% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=0}},nil}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"]={nil,"During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"}c["Aspect of the Cat Reserves no Mana +2 seconds to Cat's Stealth Duration"]={nil,"Aspect of the Cat Reserves no Mana +2 seconds to Cat's Stealth Duration"}c["Adds 7 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"}c["Melee Attacks Poison on Hit"]={{[1]={value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=256}},nil}c["Adds 2 to 3 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="ColdMax",keywordFlags=0}},nil}c["Adds 6 to 12 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["160% increased Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EnergyShield",keywordFlags=0}},nil}c["Minions have +15% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% more Damage"]={{[1]={flags=0,type="MORE",value=10,name="Damage",keywordFlags=0}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=25,name="Damage",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion "}c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse"}c["Adds 10 to 14 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=14,name="FireMax",keywordFlags=0}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield"]={nil,"Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield"}c["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="ColdPenetration",keywordFlags=0}},nil}c["+90 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=90,name="EnergyShield",keywordFlags=0}},nil}c["+7 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}c["Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"}c["25% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-25,name="ProjectileSpeed",keywordFlags=0}},nil}c["Iron Will"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IronWill",flags=0}},nil}c["20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="BASE",value=20,name="Damage",keywordFlags=0}}," to Taunt on Hit You and nearby Allies have 15% increased "}c["Your Spells have Culling Strike"]={nil,"Your Spells have Culling Strike"}c["+1000 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=1000,name="Accuracy",keywordFlags=0}},nil}c["240% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=240,name="Evasion",keywordFlags=0}},nil}c["Immune to Elemental Status Ailments while Phasing"]={nil,"Immune to Elemental Status Ailments while Phasing"}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments"}c["Adds 1 to 25 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=25,name="LightningMax",keywordFlags=0}},nil}c["Cold Skills have 20% chance to Poison on Hit"]={nil,"Cold Skills have 20% chance to Poison on Hit"}c["+200 Strength Requirement"]={{[1]={flags=0,type="BASE",value=200,name="StrRequirement",keywordFlags=0}},nil}c["80% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=80,name="ChaosDamage",keywordFlags=0}},nil}c["2 additional Projectiles if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,type="INC",value=-30,name="Duration",keywordFlags=0}}," of Ailments "}c["+15% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 4 to 8 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=8,name="ColdMax",keywordFlags=0}},nil}c["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="LightningMax",keywordFlags=0}}," for each Shocked Enemy you've Killed Recently"}c["+10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ColdResist",keywordFlags=0}},nil}c["Cannot be affected by Elemental Status Ailments while on Consecrated Ground"]={nil,"Cannot be affected by Elemental Status Ailments while on Consecrated Ground"}c["2 Mana Regenerated per Second per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=2,name="ManaRegen",keywordFlags=0}},nil}c["20% reduced Cast Speed"]={{[1]={flags=16,type="INC",value=-20,name="Speed",keywordFlags=0}},nil}c["+15% to Fire and Chaos Resistances {variant:3}{crafted}+15% to Cold and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Fire and s {variant:3}{crafted}+15% to Cold and Chaos Resistances"}c["Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask"}c["Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"]={nil,"Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"}c["15% increased Damage with One Handed Weapons"]={{[1]={flags=16777216,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["20% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=25,name="FlaskManaRecovery",keywordFlags=0}},nil}c["+78 to maximum Life"]={{[1]={flags=0,type="BASE",value=78,name="Life",keywordFlags=0}},nil}c["+15 to maximum Life"]={{[1]={flags=0,type="BASE",value=15,name="Life",keywordFlags=0}},nil}c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"}c["Critical Strike Chance is increased by Uncapped Lightning Resistance"]={{[1]={[1]={type="PerStat",stat="LightningResistTotal",div=1},value=1,type="INC",keywordFlags=0,name="CritChance",flags=0}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["Critical Strikes with Daggers have a 30% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=32768,type="BASE",value=30,name="PoisonChance",keywordFlags=0}},nil}c["30% increased Elemental Damage with Attack Skills Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}}," with Attack Skills Adds 15 to 28 Fire Damage to Attacks"}c["92% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=92,name="Evasion",keywordFlags=0}},nil}c["15% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=15,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=15,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=15,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["every 10 Intelligence on Allocated Passives in Radius +100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"]={nil,"every 10 Intelligence on Allocated Passives in Radius +100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"}c["100% reduced Flammability Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Flammability"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["30% less Animate Weapon Duration"]={{[1]={[1]={type="SkillName",skillName="Animate Weapon"},flags=0,type="MORE",value=-30,name="Duration",keywordFlags=0}},nil}c["50% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=50,name="StunRecovery",keywordFlags=0}},nil}c["+8% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=8,name="CritMultiplier",keywordFlags=0}},nil}c["Modifiers to Claw Damage also apply to Unarmed Attack Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ClawDamageAppliesToUnarmed",flags=0}},nil}c["10% increased Totem Life"]={{[1]={flags=0,type="INC",value=10,name="TotemLife",keywordFlags=0}},nil}c["200% increased Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=200,name="Duration",keywordFlags=0}},nil}c["10% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=165,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Rampage"]={nil,"Rampage"}c["4% increased Cast Speed"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"}c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy"}c["10% of Fire Damage taken as Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="FireDamageTakenAsPhysical",keywordFlags=0}},nil}c["20% increased Cast Speed"]={{[1]={flags=16,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["60% increased Intelligence Requirement"]={{[1]={flags=0,type="INC",value=60,name="IntRequirement",keywordFlags=0}},nil}c["200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently Elder Item"]={nil,"200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently Elder Item"}c["225% increased Physical Damage"]={{[1]={flags=0,type="INC",value=225,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 12 to 20 Fire Damage"]={{[1]={flags=0,type="BASE",value=12,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="FireMax",keywordFlags=0}},nil}c["Adds 30 to 53 Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=53,name="ColdMax",keywordFlags=0}},nil}c["30% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=30,name="LootQuantity",keywordFlags=0}},nil}c["Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=8,name="FireMax",keywordFlags=0}},nil}c["Socketed Gems fire 4 additional Projectiles"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="ProjectileCount",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Nearby allies gain 18% increased Damage"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Adds 65 to 120 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=65,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=120,name="FireMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Hypothermia"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportDamageAgainstChilled",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["60% less Critical Strike Chance"]={{[1]={flags=0,type="MORE",value=-60,name="CritChance",keywordFlags=0}},nil}c["15% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=15,name="ElementalDamage",keywordFlags=0}},nil}c["1% increased Chaos Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="INC",value=1,name="ChaosDamage",keywordFlags=0}},nil}c["1% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 25 Life for each Enemy hit by your Attacks"}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"}c["71 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=71,name="LifeRegen",keywordFlags=0}},nil}c["77% increased Spell Damage"]={{[1]={flags=2,type="INC",value=77,name="Damage",keywordFlags=0}},nil}c["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=38,name="LifeOnHit",keywordFlags=0}},nil}c["+2 to Level of Socketed Bow Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="bow",value=2},name="GemProperty",keywordFlags=0}},nil}c["Adds 21 to 39 Physical Damage"]={{[1]={flags=0,type="BASE",value=21,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=39,name="PhysicalMax",keywordFlags=0}},nil}c["34% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=34,name="ElementalDamage",keywordFlags=0}},nil}c["+74 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=74,name="Accuracy",keywordFlags=0}},nil}c["10 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="ManaRegen",keywordFlags=0}},nil}c["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,type="LIST",value={skillId="AssassinsMark",level=10,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["5% increased Defences"]={{[1]={flags=0,type="INC",value=5,name="Defences",keywordFlags=0}},nil}c["Adds 15 to 28 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=28,name="PhysicalMax",keywordFlags=0}},nil}c["Chaos Damage can Ignite, Chill and Shock Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Chaos Damage can Ignite, Chill and Shock Gain Soul Eater for 10 seconds when you use a Vaal Skill"}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}c["172% increased Physical Damage"]={{[1]={flags=0,type="INC",value=172,name="PhysicalDamage",keywordFlags=0}},nil}c["+27% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=27,name="CritMultiplier",keywordFlags=0}},nil}c["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=27,name="CritChance",keywordFlags=0}},nil}c["+50 Mana gained when you Block +5% Chance to Block"]={{[1]={flags=0,type="BASE",value=50,name="Mana",keywordFlags=0}}," gained when you Block +5% Chance to Block"}c["24% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+45 to Dexterity"]={{[1]={flags=0,type="BASE",value=45,name="Dex",keywordFlags=0}},nil}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath {variant:51}Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={type="SkillName",skillName="Wrath"},flags=0,type="BASE",value=15,name="LightningPenetration",keywordFlags=0}}," while affected by{variant:51}Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"}c["+20% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="LightningResist",keywordFlags=0}},nil}c["+13 to Dexterity"]={{[1]={flags=0,type="BASE",value=13,name="Dex",keywordFlags=0}},nil}c["+18% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["+20% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=20,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="LightningResist",keywordFlags=0}},nil}c["+18% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["+121 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=121,name="EnergyShield",keywordFlags=0}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=257,name="IntRequirement",keywordFlags=0}},nil}c["15% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["15% increased Curse Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=2}},nil}c["0.8% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.8,name="DamageManaLeech",keywordFlags=0}},nil}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.6,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["Damage Penetrates 6% Elemental Resistances if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},nil}c["15% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=15,name="LightningDamage",keywordFlags=0}},nil}c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Chilled"},keywordFlags=0,type="MORE",value=100,name="Damage",flags=4}},nil}c["20% increased Physical Damage"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 5 to 11 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=11,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["40% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}}," with Hits "}c["Intelligence provides no bonus to Maximum Mana"]={nil,"Intelligence provides no bonus to Maximum Mana"}c["92% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Prefix: IncreasedLife6"]={nil,"Prefix: IncreasedLife6"}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"}c["16% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=16,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["30% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=30,name="LootRarity",keywordFlags=0}},nil}c["20% increased Mine Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8192}},nil}c["Always Poison on Hit while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},nil}c["30% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=30,name="ManaLeechRate",keywordFlags=0}},nil}c["16% increased Physical Damage"]={{[1]={flags=0,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["Speed per second"]={nil,"Speed per second"}c["200% increased Armour against Projectiles +25% additional Block Chance against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles +25% additional Block Chance against Projectiles"}c["18% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["10% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesGained",keywordFlags=0}},nil}c["+23 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=23,name="Evasion",keywordFlags=0}},nil}c["18% increased Melee Damage"]={{[1]={flags=256,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["+23 to Armour"]={{[1]={flags=0,type="BASE",value=23,name="Armour",keywordFlags=0}},nil}c["You have Vaal Pact if you've dealt a Critical Strike Recently"]={nil,"You have Vaal Pact if you've dealt a Critical Strike Recently"}c["92% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=92,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Lightning Skills have 20% chance to Poison on Hit"]={nil,"Lightning Skills have 20% chance to Poison on Hit"}c["20% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-20,name="StrRequirement",keywordFlags=0}},nil}c["+39 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=39,name="EnergyShield",keywordFlags=0}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["215% increased Physical Damage"]={{[1]={flags=0,type="INC",value=215,name="PhysicalDamage",keywordFlags=0}},nil}c["Damage Penetrates 25% Cold Resistance if you've"]={{[1]={flags=0,type="BASE",value=25,name="ColdPenetration",keywordFlags=0}}," if you've"}c["Adds 5 to 8 Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},nil}c["1% of Damage against Shocked Enemies Leeched as Mana"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="BASE",value=1,name="DamageManaLeech",keywordFlags=0}},nil}c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=0}},nil}c["35% increased Damage over Time"]={{[1]={flags=8,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=48,name="Evasion",keywordFlags=0}},nil}c["6% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["92% increased Armour"]={{[1]={flags=0,type="INC",value=92,name="Armour",keywordFlags=0}},nil}c["Adds 13 to 47 Lightning Damage"]={{[1]={flags=0,type="BASE",value=13,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=47,name="LightningMax",keywordFlags=0}},nil}c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"}c["+25% to Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0}},nil}c["Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill"}c["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=3,name="ElementalDamage",keywordFlags=0}}," Experience gain 20% increased "}c["You have Zealot's Oath if you haven't been hit recently"]={nil,"You have Zealot's Oath if you haven't been hit recently"}c["You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Chilled"}c["80% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["1% increased Area of Effect per Enemy killed recently, up to 50% You have Zealot's Oath if you haven't been hit recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="INC",value=1,name="AreaOfEffect",keywordFlags=0}}," per Enemy killed recently, up to 50% You have Zealot's Oath "}c["1% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={flags=0,type="INC",value=1,name="AreaOfEffect",keywordFlags=0}}," per Enemy killed recently, up to 50%"}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.8,name="LifeRegenPercent",keywordFlags=0}},nil}c["Socketed Gems are supported by level 10 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLifeLeech",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Onslaught"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill 80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="Damage",value=25}}," to gain aCharge on Kill 80% increased "}c["75% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["Reflects 61 Physical Damage to Melee Attackers"]={{},nil}c["Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=1,type="BASE",value=1,name="ColdMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Dex",div=10},flags=1,type="BASE",value=2,name="ColdMax",keywordFlags=0}},nil}c["0.3% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.3,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-50,name="ElementalResist",keywordFlags=0}},nil}c["Minions have 15% chance to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=15,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Leech"}c["Adds 63 to 98 Physical Damage"]={{[1]={flags=0,type="BASE",value=63,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=98,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBloodMagic",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill"]={nil,"Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill"}c["550% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=550,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit"}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsFire",keywordFlags=0}},nil}c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=0}}," of Ailments "}c["600% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=600,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice"}c["23% increased Trap Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=4096}},nil}c["Reflects 241 Physical Damage to Melee Attackers"]={{},nil}c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,type="BASE",value=25,name="ManaOnKill",keywordFlags=0}}," ing a Frozen Enemy"}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=150,name="EnemyChillDuration",keywordFlags=0}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",keywordFlags=0}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-8,name="ManaCost",keywordFlags=0}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["+435 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=435,name="Accuracy",keywordFlags=0}},nil}c["-18 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-18,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["100% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"}c["+1 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Defences from equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=25,name="Defences",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 5 Elemental Proliferation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportElementalProliferation",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["28% increased Trap Damage"]={{[1]={flags=0,type="INC",value=28,name="Damage",keywordFlags=4096}},nil}c["Reflects 17 Physical Damage to Melee Attackers"]={{},nil}c["You always Ignite while Burning"]={nil,"You always Ignite while Burning"}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage"}c["+5 to Level of Socketed Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="all",value=5},name="GemProperty",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge when you are Hit You cannot be Stunned while at maximum Endurance Charges"]={{}," to gain an Endurance Charge when you are Hit You cannot be Stunned "}c["You have Onslaught while on Low Life"]={nil,"You have Onslaught while on Low Life"}c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=4,type="MORE",value=100,name="CritChance",keywordFlags=0}},nil}c["Adds 5 to 8 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=5,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=8,name="FireMax",keywordFlags=0}},nil}c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={nil,"Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"}c["15% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["When you Kill an Enemy, for each Curse on that Enemy, gain 4%"]={nil,"When you Kill an Enemy, for each Curse on that Enemy, gain 4%"}c["10% increased Radius of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",value=33,name="Damage",keywordFlags=0}},nil}c["25% increased Totem Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=16384}},nil}c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["70% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["Trigger Commandment of Inferno on Critical Strike 70% increased Global Critical Strike Chance"]={nil,"Trigger Commandment of Inferno on Critical Strike 70% increased Global Critical Strike Chance"}c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={flags=512,type="INC",value=10,name="ElementalDamage",keywordFlags=0}}," per Sextant affecting the "}c["Adds 1 to 65 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=65,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 32 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=32,name="LightningMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMinionDamage",level=17},name="ExtraSupport",keywordFlags=0}},nil}c["Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"}c["4% additional chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},nil}c["26% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=26,name="ElementalDamage",keywordFlags=0}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning"}c["+50 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=50,name="Mana",keywordFlags=0}}," gained when you Block"}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["Grants Summon Harbinger of Focus Skill +80 to maximum Life"]={nil,"Grants Summon Harbinger of Focus Skill +80 to maximum Life"}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped {variant:1}{crafted}+15% to Fire and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=-2,name="ManaCost",keywordFlags=0}}," Total for each Corrupted Item Equipped {variant:1}{crafted}+15% to Fire and Chaos Resistances"}c["50% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-50,name="Damage",keywordFlags=16384}},nil}c["50% reduced Freeze Duration on You {variant:1}1% of Life Regenerated per Second"]={{},""}c["+45% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=45,name="ColdResist",keywordFlags=0}},nil}c["40% increased Fire Damage"]={{[1]={flags=0,type="INC",value=40,name="FireDamage",keywordFlags=0}},nil}c["40% increased Trap Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=4096}},nil}c["3% increased Attack Speed"]={{[1]={flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["35% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=35,name="Speed",keywordFlags=0}},nil}c["Take 30 Chaos Damage per Second during Flask effect 25% chance to Poison on Hit during Flask effect"]={nil,"30 Chaos Damage per Second during Flask effect 25% chance to Poison on Hit during Flask effect"}c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam"}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike"}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={{[1]={flags=0,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently"}c["Adds 13 to 19 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=19,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 1 to 30 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="LightningMax",keywordFlags=0}},nil}c["45% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=45,name="EnemyStunDuration",keywordFlags=0}},nil}c["6% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=6,name="LifeRegenPercent",keywordFlags=0}},nil}c["Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets"]={nil,"Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets"}c["1% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=4096}}," for 9 seconds on Throwing a "}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,type="INC",value=-50,name="EnemyFreezeDuration",keywordFlags=0}}," on You"}c["+20% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0}},nil}c["75% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=75,name="BlockChanceConv",keywordFlags=0}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"]={nil,"Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"}c["+700 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=700,name="Evasion",keywordFlags=0}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies"}c["Cannot Block Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockAttacks",flags=0}},nil}c["+4% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalResist",keywordFlags=0}},nil}c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers for 4 seconds on Block"}c["Adds 34 to 45 Cold Damage"]={{[1]={flags=0,type="BASE",value=34,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="ColdMax",keywordFlags=0}},nil}c["+20% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," Damage"}c["Socketed Gems are Supported by level 6 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=6},name="ExtraSupport",keywordFlags=0}},nil}c["30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality"}c["80% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=80,name="BlockChanceConv",keywordFlags=0}},nil}c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"}c["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=16384}},nil}c["5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=5,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Adds 11 to 29 Physical Damage"]={{[1]={flags=0,type="BASE",value=11,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 335 to 900 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,type="BASE",value=335,name="LightningMin",keywordFlags=0},[2]={flags=1048576,type="BASE",value=900,name="LightningMax",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"}c["Adds 68 to 195 Physical Damage"]={{[1]={flags=0,type="BASE",value=68,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="PhysicalMax",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=120,name="BlockChanceConv",keywordFlags=0}},nil}c["Adds 42 to 335 Physical Damage"]={{[1]={flags=0,type="BASE",value=42,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=335,name="PhysicalMax",keywordFlags=0}},nil}c["800% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=800,name="PhysicalDamage",keywordFlags=0}},nil}c["+5% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=5,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=5,name="ChaosResistMax",keywordFlags=0}},nil}c["10% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["+48 to Armour"]={{[1]={flags=0,type="BASE",value=48,name="Armour",keywordFlags=0}},nil}c["60% increased maximum Mana"]={{[1]={flags=0,type="INC",value=60,name="Mana",keywordFlags=0}},nil}c["Adds 40 to 115 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=115,name="PhysicalMax",keywordFlags=0}},nil}c["+8% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResistMax",keywordFlags=0}},nil}c["20% increased Attack Speed"]={{[1]={flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Elemental Hit deals 15% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"Elemental Hit deals 15% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"}c["20 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["Your Chaos Damage Poisons Enemies"]={{[1]={value=100,type="BASE",keywordFlags=0,name="ChaosPoisonChance",flags=0}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="LifeRegen",keywordFlags=0}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,type="INC",value=190,name="PhysicalDamage",keywordFlags=0}},nil}c["+60 Maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["Arrows always Pierce"]={{[1]={value=100,type="BASE",keywordFlags=0,name="PierceChance",flags=1}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage"}c["Adds 130 to 195 Cold Damage"]={{[1]={flags=0,type="BASE",value=130,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="ColdMax",keywordFlags=0}},nil}c["Socketed Gems have 25% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-25,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies {variant:1}Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={nil,"deal 100 to 200 added Fire Damage to Bleeding Enemies {variant:1}Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"}c["250% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=15,name="CurseEffect",keywordFlags=0}},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["100% increased Fire Damage if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 5 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportConcentratedEffect",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%"]={{[1]={flags=2,type="BASE",value=2,name="Mana",keywordFlags=0}}," to Dodge Attack and Hits per 500 , up to 20%"}c["Adds 36 to 54 Cold Damage"]={{[1]={flags=0,type="BASE",value=36,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=54,name="ColdMax",keywordFlags=0}},nil}c["0% increased Charges used"]={{[1]={flags=0,type="INC",value=0,name="FlaskChargesUsed",keywordFlags=0}},nil}c["Triggers Level 20 Fire Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="FireAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["6% Chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="Defences",keywordFlags=0}},nil}c["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds"}c["40% increased Damage with Hits against Shocked Enemies 20% increased Lightning Damage"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}}," with Hits 20% increased Lightning Damage"}c["2% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["+500 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",value=500,name="Accuracy",keywordFlags=0}},nil}c["90% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=90,name="PowerChargesDuration",keywordFlags=0}},nil}c["0.8% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.8,name="DamageLifeLeech",keywordFlags=0}},nil}c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun"}c["30% increased Damage when you have no Energy Shield"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," when you have no Energy Shield"}c["-10% Chance to Block"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChance",keywordFlags=0}},nil}c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius"}c["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["4% increased Movement Speed for each Hit you've Blocked Recently 80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyRecently"},flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}}," for each Hit you've Blocked Recently 80% increased Physical Damage "}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.4,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["Hits deal 30% increased Damage against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=4,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block"}c["100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}}," while you have Avian's Flight"}c["6% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="DamageTaken",keywordFlags=0}},nil}c["30% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=30,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["+30 to maximum Mana"]={{[1]={flags=0,type="BASE",value=30,name="Mana",keywordFlags=0}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain Phasing for 4 seconds when your is triggered by an Enemy"}c["Minions Leech 0.2% of Damage as Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block"}c["20% increased Elemental Damage with Attack Skills {variant:1,2,3}100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:1,2,3}100% increased Armour and Energy Shield"}c["+8 to Armour"]={{[1]={flags=0,type="BASE",value=8,name="Armour",keywordFlags=0}},nil}c["12% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["100% increased Duration of Curses on you +5% Chance to Block"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=0}}," of Curses on you +5% Chance to Block"}c["2% additional Block Chance"]={{[1]={flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["You lose all Endurance Charges at maximum Endurance Charges Cannot Block"]={nil,"You lose all Endurance Charges at maximum Endurance Charges Cannot Block"}c["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="ColdAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill"}c["10% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["20% chance to Block Attacks if you've Blocked a Spell Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["70% increased Damage"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["10% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["100% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=100,name="ChaosDamage",keywordFlags=0}},nil}c["+30% chance to Block Spell Damage while on Low Life +6% Chance to Block"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,type="BASE",value=30,name="BlockChance",keywordFlags=0}}," Damage +6% Chance to Block"}c["+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,type="BASE",value=30,name="BlockChance",keywordFlags=0}}," Damage "}c["75% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=75,name="Duration",keywordFlags=0}}," of Poisons you inflict "}c["30% more Bow Damage at Close Range while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=30,name="Damage",keywordFlags=0}}," while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"}c["8% increased maximum Life"]={{[1]={flags=0,type="INC",value=8,name="Life",keywordFlags=0}},nil}c["+36% chance to Block Spell Damage while on Low Life {variant:4}+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},[2]={type="Condition",var="LowLife"},flags=2,type="BASE",keywordFlags=0,name="BlockChance",value=36}}," Damage {variant:4}+30% chance to Block Spell Damage "}c["+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,type="BASE",value=36,name="BlockChance",keywordFlags=0}}," Damage "}c["144% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=144,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["25% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="MORE",value=25,name="MeleeEvadeChance",keywordFlags=0}},nil}c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=60,name="ManaRegen",keywordFlags=0}},nil}c["120% increased Block Recovery"]={{[1]={flags=0,type="INC",value=120,name="BlockRecovery",keywordFlags=0}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=6,name="LootQuantity",keywordFlags=0}},nil}c["Adds 19 to 29 Physical Damage"]={{[1]={flags=0,type="BASE",value=19,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="PhysicalMax",keywordFlags=0}},nil}c["+18 to All Attributes"]={{[1]={flags=0,type="BASE",value=18,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=18,name="Int",keywordFlags=0}},nil}c["20% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Spreads Tar when you take a Critical Strike"]={nil,"Spreads Tar when you take a Critical Strike"}c["1% of Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+200 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=200,name="EnergyShield",keywordFlags=0}},nil}c["10 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="LifeRegen",keywordFlags=0}},nil}c["30% reduced Spell Damage taken from Blinded Enemies No Block Chance"]={{[1]={flags=2,type="INC",value=-30,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies No Block Chance"}c["Adds 400 to 600 Physical Damage to Spells"]={{[1]={flags=2,type="BASE",value=400,name="PhysicalMin",keywordFlags=0},[2]={flags=2,type="BASE",value=600,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels 12% increased Attack Speed"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=1,type="BASE",value=3,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=1,type="BASE",value=5,name="PhysicalMax",keywordFlags=0}}," per 3 Player Levels 12% increased "}c["If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second"]={nil,"If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second"}c["50% chance on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground"}c["100% increased Physical Damage while you have Resolute Technique Elder Item"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}}," while you have Resolute Technique Elder Item"}c["6% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["+2 seconds to Avian's Might Duration"]={{[1]={flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Avian's Might "}c["15% increased Damage against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"}c["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack"}c["+10% chance to Block Spell Damage +30 to Intelligence"]={{[1]={flags=2,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," Damage +30 to Intelligence"}c["+10% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," Damage"}c["+7% chance to Block Spell Damage {variant:3}+10% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=7,name="BlockChance",keywordFlags=0}}," Damage {variant:3}+10% chance to Block Spell Damage"}c["+15% chance to Block Spell Damage 60% increased Spell Damage"]={{[1]={flags=2,type="BASE",value=15,name="BlockChance",keywordFlags=0}}," Damage 60% increased Spell Damage"}c["+18% chance to Block Spell Damage {variant:3}+15% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=18,name="BlockChance",keywordFlags=0}}," Damage {variant:3}+15% chance to Block Spell Damage"}c["+18% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=18,name="BlockChance",keywordFlags=0}}," Damage"}c["60% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=60,name="BlockChanceConv",keywordFlags=0}},nil}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-6,name="ManaCost",keywordFlags=0}},nil}c["+24 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0}},nil}c["+10 Life Gained on Killing Ignited Enemies"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}}," ing Ignited Enemies"}c["Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"}c["8% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=5},flags=2,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["Minions Regenerate 1.5% Life per second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1.5,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% reduced Cast Speed"]={{[1]={flags=16,type="INC",value=-10,name="Speed",keywordFlags=0}},nil}c["40% increased Damage over Time"]={{[1]={flags=8,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy"}c["+20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=20,name="ElementalResist",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"}c["Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill"}c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"}c["12% increased Attack Speed with Bows"]={{[1]={flags=8193,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["5% Additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLifeLeech",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=5,type="BASE",value=0.6,name="DamageLifeLeech",keywordFlags=0}},nil}c["+61% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=61,name="ChaosResist",keywordFlags=0}},nil}c["Spreads Tar when you Block"]={nil,"Spreads Tar when you Block"}c["75% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=75,name="ProjectileSpeed",keywordFlags=0}},nil}c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=15,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["8% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={type="PerStat",stat="Life",div=1},flags=0,type="BASE",value=0.08,name="ChaosDegen",keywordFlags=0}},nil}c["+3 to Level of Socketed Minion Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="minion",value=3},name="GemProperty",keywordFlags=0}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["50% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=50,name="EnemyStunDuration",keywordFlags=0}}," to double "}c["You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"You are Shocked for 4 seconds on reaching Maximum Power Charges"}c["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit"}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"}c["1% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeechToPlayer",keywordFlags=16384}},nil}c["+2 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=2,name="PowerChargesMax",keywordFlags=0}},nil}c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["Adds 39 to 60 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=39,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=60,name="ColdMax",keywordFlags=0}},nil}c["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently"}c["6% reduced Damage taken from Bleeding Enemies 30% chance for Attacks to Maim on Hit against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="INC",value=-6,name="DamageTaken",keywordFlags=0}}," from Bleeding Enemies 30% chance to Maim on Hit "}c["18% increased Poison Duration"]={{[1]={flags=0,type="INC",value=18,name="Duration",keywordFlags=1048576}},nil}c["25% chance to inflict Brittle Cannot inflict Freeze or Chill"]={{}," to inflict Brittle Cannot inflict Freeze or Chill"}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy"}c["You have Crimson Dance if you have dealt a Critical Strike Recently"]={nil,"You have Crimson Dance if you have dealt a Critical Strike Recently"}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently {variant:2}200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={nil,"400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently {variant:2}200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}c["6% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=6,name="EnergyShield",keywordFlags=0}},nil}c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={flags=2,type="INC",value=-30,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies"}c["13% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=13,name="LootQuantity",keywordFlags=0}},nil}c["Adds 14 to 24 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=24,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=8,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies 30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=6,type="INC",value=30,name="FireDamage",keywordFlags=0}}," with Hits and Ailments 30% reduced Damage taken from Blinded Enemies"}c["30% increased Fire Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["30% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,type="INC",value=-30,name="BlockChance",keywordFlags=0},[2]={flags=0,type="INC",value=-30,name="SpellBlockChance",keywordFlags=0}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{}," that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"}c["+375 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=375,name="Accuracy",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire"}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies"}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"}c["6% reduced Damage taken if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"}c["+38% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=38,name="LightningResist",keywordFlags=0}},nil}c["33% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-33,name="CurseEffect",keywordFlags=0}},nil}c["Shock Reflection"]={nil,"Shock Reflection"}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry"}c["8% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry"]={nil,"Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry"}c["8% increased Dexterity"]={{[1]={flags=0,type="INC",value=8,name="Dex",keywordFlags=0}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy"}c["+3000 to Armour during Soul Gain Prevention {variant:6}{crafted}+2 to Level of Socketed Support Gems"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}}," during Soul Gain Prevention {variant:6}{crafted}+2 to Level of Socketed Support Gems"}c["You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"]={nil,"You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"}c["Adds 14 to 22 Fire Damage"]={{[1]={flags=0,type="BASE",value=14,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="FireMax",keywordFlags=0}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage"}c["10% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=10,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Adds 15 to 30 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=15,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="FireMax",keywordFlags=0}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered Corrupted"]={{}," to gain an additional Soul per Enemy Shattered Corrupted"}c["40% increased Energy Shield"]={{[1]={flags=0,type="INC",value=40,name="EnergyShield",keywordFlags=0}},nil}c["Adds 5 to 15 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["16% increased Cast Speed with Curse Skills"]={{[1]={flags=16,type="INC",value=16,name="Speed",keywordFlags=0}}," with Curse Skills"}c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="LightningMax",keywordFlags=0}},nil}c["Adds 12 to 16 Cold Damage"]={{[1]={flags=0,type="BASE",value=12,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="ColdMax",keywordFlags=0}},nil}c["20% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining"}c["2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius +15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},[2]={type="PerStat",stat="Dex",div=10},flags=0,type="INC",keywordFlags=0,name="MovementSpeed",value=2}}," on Allocated Passives in Radius +15 to Maximum Mana on Unallocated Passives in Radius"}c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={flags=2,type="INC",value=50,name="CritChance",keywordFlags=0}}," per Raised Spectre"}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["You gain Divinity for 10 seconds on reaching maximum Divine Charges Lose all Divine Charges when you gain Divinity"]={nil,"You gain Divinity for 10 seconds on reaching maximum Divine Charges Lose all Divine Charges when you gain Divinity"}c["325% increased Armour"]={{[1]={flags=0,type="INC",value=325,name="Armour",keywordFlags=0}},nil}c["Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"}c["16% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["Adds 60 to 110 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=60,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=110,name="ColdMax",keywordFlags=0}},nil}c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=40,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["50% additional Block Chance for 1 second every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,type="BASE",value=50,name="BlockChance",keywordFlags=0}},nil}c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee"}c["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield"}c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently"}c["165% increased Armour"]={{[1]={flags=0,type="INC",value=165,name="Armour",keywordFlags=0}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding"}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"}c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=50,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Adds 55 to 80 Chaos Damage"]={{[1]={flags=0,type="BASE",value=55,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="ChaosMax",keywordFlags=0}},nil}c["Adds 21 to 34 Chaos Damage"]={{[1]={flags=0,type="BASE",value=21,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=34,name="ChaosMax",keywordFlags=0}},nil}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=33,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets 20% increased Area of Effect of Area Skills"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets 20% increased Area of Effect of Area Skills"}c["6% increased Strength"]={{[1]={flags=0,type="INC",value=6,name="Str",keywordFlags=0}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower"}c["+150 to maximum Life"]={{[1]={flags=0,type="BASE",value=150,name="Life",keywordFlags=0}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second Poisons on you expire 50% slower"]={{[1]={flags=0,type="BASE",value=50,name="EnergyShieldRegen",keywordFlags=0}}," per Poison on you, up to 250 per second Poisons on you expire 50% slower"}c["+225 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=225,name="Accuracy",keywordFlags=0}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum "}c["Adds 240 to 325 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=240,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=325,name="FireMax",keywordFlags=0}},nil}c["Adds 22 to 37 Chaos Damage"]={{[1]={flags=0,type="BASE",value=22,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=37,name="ChaosMax",keywordFlags=0}},nil}c["20% increased Mine Duration"]={{[1]={flags=0,type="INC",value=20,name="MineDuration",keywordFlags=0}},nil}c["100% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask"}c["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,type="BASE",value=10,name="Damage",keywordFlags=0}}," Reflected Gained as Life"}c["Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life"}c["Reflects 1 to 1000 Physical Damage to Attackers on Block"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block"}c["3% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["90% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["110% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=110,name="ArmourAndEvasion",keywordFlags=0}},nil}c["120% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 1 to 40 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=40,name="LightningMax",keywordFlags=0}},nil}c["25% Increased Warcry Effect"]={{[1]={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=4}},nil}c["You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect"]={nil,"You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect"}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry"}c["+43% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=43,name="FireResist",keywordFlags=0}},nil}c["+30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ColdResist",keywordFlags=0}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["40% increased Totem Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=16384}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalDamage",keywordFlags=0}}," Bow as Extra Damage of an Element"}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["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"]={nil,"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"}c["+10 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers"}c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["+12% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed"]={nil,"Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed"}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=15,name="FlaskManaRecovery",keywordFlags=0}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["25% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-25,name="MovementSpeed",keywordFlags=0}},nil}c["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ElementalDamageLifeLeech",keywordFlags=0}},nil}c["32% increased Attributes"]={{[1]={flags=0,type="INC",value=32,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=32,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=32,name="Int",keywordFlags=0}},nil}c["Adds 10 to 18 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["12% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=12,name="SpellBlockChance",keywordFlags=0}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["Adds 12 to 20 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["+18 to maximum Life"]={{[1]={flags=0,type="BASE",value=18,name="Life",keywordFlags=0}},nil}c["7 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=7,name="LifeRegen",keywordFlags=0}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath {variant:50}Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={[1]={type="SkillName",skillName="Wrath"},flags=0,type="BASE",value=1.5,name="LightningDamageManaLeech",keywordFlags=0}}," is while affected by{variant:50}Damage Penetrates 15% Lightning Resistance while affected by Wrath"}c["10% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.6,name="DamageManaLeech",keywordFlags=0}},nil}c["Adds 75 to 358 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=358,name="PhysicalMax",keywordFlags=0}},nil}c["+58 to Dexterity"]={{[1]={flags=0,type="BASE",value=58,name="Dex",keywordFlags=0}},nil}c["100% increased Curse Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=2}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 8% reduced Damage Taken for 4 seconds after spending 200 Mana"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill 8% reduced Damage Taken for 4 seconds after spending 200 Mana"}c["Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"}c["+190 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=190,name="EnergyShield",keywordFlags=0}},nil}c["180% increased Physical Damage"]={{[1]={flags=0,type="INC",value=180,name="PhysicalDamage",keywordFlags=0}},nil}c["190% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=190,name="Evasion",keywordFlags=0}},nil}c["20% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=20,name="CurseEffect",keywordFlags=0}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=60,name="StunRecovery",keywordFlags=0}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,type="INC",value=11,name="Speed",keywordFlags=0}},nil}c["Adds 30 to 50 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=30,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["4% additional Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses"}c["Adds 75 to 110 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=110,name="PhysicalMax",keywordFlags=0}},nil}c["Curse Reflection"]={nil,"Curse Reflection"}c["50% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Remove Bleeding on Flask use"]={nil,"Remove Bleeding on Flask use"}c["20% additional Spell Block chance while Cursed"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," while Cursed"}c["Minions deal 12% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=12,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Regenerate 100 Life per second while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["10% additional Block chance while not Cursed"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," while not Cursed"}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="FirePenetration",keywordFlags=0}},nil}c["Grants Level 20 Summon Petrification Statue Skill"]={nil,nil}c["50% reduced Duration of Curses on you"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}}," of Curses on you"}c["+30 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}c["40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+60 to Intelligence"]={{[1]={flags=0,type="BASE",value=60,name="Int",keywordFlags=0}},nil}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsLightning",keywordFlags=0}}," while affected by Purity of Elements"}c["125% increased Physical Damage"]={{[1]={flags=0,type="INC",value=125,name="PhysicalDamage",keywordFlags=0}},nil}c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=3}},nil}c["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active Blood Magic"}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["0.5% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,type="BASE",value=0.5,name="DamageLifeLeechToPlayer",keywordFlags=16384}},nil}c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies"}c["40% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=40,name="BlockChance",keywordFlags=0}},nil}c["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=16384}},nil}c["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=16384}},nil}c["Spells have an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=2}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"}c["0.5% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["Adds 23 to 35 Cold Damage"]={{[1]={flags=0,type="BASE",value=23,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ColdMax",keywordFlags=0}},nil}c["Adds 350 to 500 Cold Damage"]={{[1]={flags=0,type="BASE",value=350,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=500,name="ColdMax",keywordFlags=0}},nil}c["Crafted: true"]={nil,"Crafted: true"}c["15% increased Area of Effect of Area Skills if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=0}},nil}c["You have Phasing while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onlaught"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["Cannot be Stunned if you have at least 10 Crab Barriers"]={nil,"Cannot be Stunned if you have at least 10 Crab Barriers"}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast"}c["Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Pierce"}c["200% increased Armour against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles"}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=12,name="LifeOnHit",keywordFlags=0}},nil}c["Has 1 Abyssal Socket {variant:2}Has 2 Abyssal Sockets"]={nil,"Has 1 Abyssal Socket {variant:2}Has 2 Abyssal Sockets"}c["+500 to Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=500,name="Armour",keywordFlags=0}},nil}c["50% less Critical Strike Chance"]={{[1]={flags=0,type="MORE",value=-50,name="CritChance",keywordFlags=0}},nil}c["19% increased Spell Damage"]={{[1]={flags=2,type="INC",value=19,name="Damage",keywordFlags=0}},nil}c["13% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["+20 to maximum Mana"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}},nil}c["80% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration"]={nil,"With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration"}c["-75% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=-75,name="CritMultiplier",keywordFlags=0}},nil}c["2% increased Physical Damage over time per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=8,type="INC",value=2,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,type="INC",value=50,name="FlaskLifeRecoveryRate",keywordFlags=0}},nil}c["25% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-80,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks"}c["0.4% of Energy Shield Regenerated per Second for every 10 Intelligence on Allocated Passives in Radius"]={{[1]={flags=0,type="BASE",value=0.4,name="EnergyShieldRegenPercent",keywordFlags=0}}," for every 10 on Allocated Passives in Radius"}c["-10 Physical Damage taken from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-10,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks"}c["70% increased Armour"]={{[1]={flags=0,type="INC",value=70,name="Armour",keywordFlags=0}},nil}c["Enemies Become Chilled as they Unfreeze 5% chance to Freeze 5% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze 5% chance to Freeze 5% chance to Freeze Enemies which are Chilled"}c["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy"}c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Taunted"},flags=5,type="BASE",value=2,name="DamageLifeLeech",keywordFlags=0}},nil}c["+1 to Level of Socketed Warcry Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="warcry",value=1},name="GemProperty",keywordFlags=0}},nil}c["15% increased effect of Offering spells"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"}},flags=0,type="INC",value=15,name="BuffEffect",keywordFlags=0}},nil}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies Your Lightning Damage can Ignite"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="BASE",value=70,name="LightningMax",keywordFlags=0}}," to Hits Your can Ignite"}c["20% increased Movement Speed while you have Cat's Stealth"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}}," while you have Cat's Stealth"}c["Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 8% of their maximum Life as Fire Damage to"}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="ElementalAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["25% increased Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"}c["Herald of Thunder has 74% increased Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Herald of Thunder"},flags=0,type="INC",value=74,name="BuffEffect",keywordFlags=0}},nil}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage"}c["25% increased Trap Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=4096}},nil}c["+5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks"}c["20% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-20,name="LootRarity",keywordFlags=0}},nil}c["Your Aura Buffs do not affect allies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SelfAurasCannotAffectAllies",flags=0}},nil}c["+100 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["Adds 388 to 584 Physical Damage to Spells"]={{[1]={flags=2,type="BASE",value=388,name="PhysicalMin",keywordFlags=0},[2]={flags=2,type="BASE",value=584,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"]={nil,"Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"}c["Cannot Block 50% increased Warcry Cooldown Recovery Speed"]={nil,"Cannot Block 50% increased Warcry Cooldown Recovery Speed"}c["+4% to Chaos Resistance per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=4,name="ChaosResist",keywordFlags=0}},nil}c["25% increased Curse Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=2}},nil}c["8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}}," of non-Damaging Ailments per Elder Item Equipped"}c["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second"}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"}c["Adds 15 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=15,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=0}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill"}c["30% increased Physical Damage"]={{[1]={flags=0,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies"}c["135% increased Armour"]={{[1]={flags=0,type="INC",value=135,name="Armour",keywordFlags=0}},nil}c["20% increased Mine Laying Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="INC",value=20,name="MineLayingSpeed",keywordFlags=0}},nil}c["Adds 14 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=14,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="FireMax",keywordFlags=0}},nil}c["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=-100,type="MORE",keywordFlags=0,name="Damage",flags=0}},nil}c["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit"}c["Clarity Reserves no Mana {variant:10}Discipline Reserves no Mana"]={nil,"Clarity Reserves no Mana {variant:10}Discipline Reserves no Mana"}c["10% chance to Curse Enemies with Enfeeble on Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit"}c["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["14% increased Physical Damage"]={{[1]={flags=0,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["10% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-10,name="ManaCost",keywordFlags=0}},nil}c["10% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges"}c["36% chance to deal Double Damage while Focussed"]={{[1]={flags=0,type="BASE",value=36,name="DoubleDamageChance",keywordFlags=0}}," while Focussed"}c["Adds 10 to 25 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=25,name="FireMax",keywordFlags=0}},nil}c["Minions Regenerate 2% Life per Second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+1500 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",value=1500,name="Armour",keywordFlags=0}},nil}c["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block"}c["25% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice"}c["+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}}," on Unallocated Passives in Radius"}c["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block"}c["15 Life Regenerated per second for each Uncorrupted Item Equipped -2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}}," for each Uncorrupted Item Equipped -2 to Total for each Corrupted Item Equipped"}c["12% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["8% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=8,name="MineLayingSpeed",keywordFlags=0}},nil}c["170% increased Armour"]={{[1]={flags=0,type="INC",value=170,name="Armour",keywordFlags=0}},nil}c["-10% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChanceMax",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"}c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="ColdMax",keywordFlags=0}},nil}c["25% of Physical Damage taken as Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageTakenAsChaos",keywordFlags=0}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=100}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments"}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block"}c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="INC",value=16,name="Accuracy",keywordFlags=0}},nil}c["Enemies near your Totems take 16% increased Physical and Fire Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="PhysicalDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="FireDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["20% increased Damage with Movement Skills"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8}},nil}c["16% increased maximum Life"]={{[1]={flags=0,type="INC",value=16,name="Life",keywordFlags=0}},nil}c["+1000 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}},nil}c["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block"}c["0.3% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,type="BASE",value=0.3,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["+1500 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="BASE",value=1500,name="Evasion",keywordFlags=0}},nil}c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"}c["10% increased Skeleton Attack Speed 10% increased Skeleton Cast speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}}," Skeleton 10% increased Skeleton Cast speed"}c["You have Onslaught while at maximum Endurance Charges"]={nil,"You have Onslaught while at maximum Endurance Charges"}c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Adds 35 to 55 Physical Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=55,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 16 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill"}c["135% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,type="INC",value=135,name="Damage",keywordFlags=0}},nil}c["30% increased Damage of each Damage Type for which you"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," of each Damage Type for which you"}c["+5 to Maximum number of Crab Barriers"]={{}," Maximum number of Crab Barriers"}c["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=120,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=165,name="PhysicalMax",keywordFlags=0}},nil}c["150% increased Charges used"]={{[1]={flags=0,type="INC",value=150,name="FlaskChargesUsed",keywordFlags=0}},nil}c["40% increased maximum Life"]={{[1]={flags=0,type="INC",value=40,name="Life",keywordFlags=0}},nil}c["+15% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=15,name="BlockChance",keywordFlags=0}}," Damage"}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion {variant:3}Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=1,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=29,name="ChaosMax",keywordFlags=0}}," while you have a Bestial Minion {variant:3}Adds 16-25 to Attacks while you have a Bestial Minion"}c["21% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=21,name="StunRecovery",keywordFlags=0}},nil}c["Grants level 30 Reckoning Skill"]={{[1]={flags=0,type="LIST",value={skillId="Reckoning",level=30},name="ExtraSkill",keywordFlags=0}},nil}c["30% slower start of Energy Shield Recharge during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-30,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Deal no Non-Elemental Damage Elder Item"]={nil,"Deal no Non-Elemental Damage Elder Item"}c["20% reduced Mana Cost of Skills when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=-20,name="ManaCost",keywordFlags=0}},nil}c["Your Elemental Damage can Shock Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={nil,"Your Elemental Damage can Shock Gain 300% of Weapon Physical Damage as Extra Damage of an Element"}c["+370 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=370,name="Accuracy",keywordFlags=0}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={type="PerStat",stat="Evasion",div=5},flags=0,type="BASE",value=5,name="Armour",keywordFlags=0}}," on Equipped Shield"}c["63% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=63,name="CritChance",keywordFlags=0}},nil}c["Adds 12 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="INC",value=25,name="Evasion",keywordFlags=0}},nil}c["Adds 10 to 15 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike"}c["250% increased Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EnergyShield",keywordFlags=0}},nil}c["You and nearby Allies cannot be Stunned if you've Blocked Recently"]={nil,"You and nearby Allies cannot be Stunned if you've Blocked Recently"}c["75% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["You are Immune to Bleeding while Leeching"]={nil,"You are Immune to Bleeding while Leeching"}c["Enemies you Taunt deal 10% less Damage against other targets"]={nil,"Enemies you Taunt deal 10% less Damage against other targets"}c["Adds 12 to 24 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=12,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=24,name="FireMax",keywordFlags=0}},nil}c["Your Physical Damage can Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PhysicalCanShock",flags=0}},nil}c["Deal no Elemental Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoLightning",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="DealNoCold",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="DealNoFire",flags=0}},nil}c["+2000 to Armour"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",keywordFlags=0}},nil}c["+1 to Minimum Power Charges"]={{}," Minimum Power Charges"}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["500% increased Physical Damage"]={{[1]={flags=0,type="INC",value=500,name="PhysicalDamage",keywordFlags=0}},nil}c["+231 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=231,name="Evasion",keywordFlags=0}},nil}c["+80 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=80,name="EnergyShield",keywordFlags=0}},nil}c["+80 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=80,name="EnergyShield",keywordFlags=0}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEvasion",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"}c["Gain 25% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Adds 11 to 23 Cold Damage"]={{[1]={flags=0,type="BASE",value=11,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="ColdMax",keywordFlags=0}},nil}c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={nil,"Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"}c["8% increased Damage over Time"]={{[1]={flags=8,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["+305 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=305,name="Accuracy",keywordFlags=0}},nil}c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=90,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike"}c["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"]={nil,"64 to 96 added Fire Damage per Red Socket You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"}c["Adds 110 to 170 Physical Damage"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=170,name="PhysicalMax",keywordFlags=0}},nil}c["175% increased Armour"]={{[1]={flags=0,type="INC",value=175,name="Armour",keywordFlags=0}},nil}c["Adds 30 to 45 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=30,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="FireMax",keywordFlags=0}},nil}c["Adds 100 to 370 Physical Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=370,name="PhysicalMax",keywordFlags=0}},nil}c["+1 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby {variant:10}{crafted}Your Critical Strike Chance is Lucky while Focussed"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShieldRegen",keywordFlags=0}}," while a Rare or Unique Enemy is Nearby {variant:10}{crafted}Your is Lucky while Focussed"}c["+1 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["Immune to Elemental Status Ailments while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask"}c["+240 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=240,name="Accuracy",keywordFlags=0}},nil}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}c["+185 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=185,name="Accuracy",keywordFlags=0}},nil}c["+1 to Level of Socketed Cold Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="cold",value=1},name="GemProperty",keywordFlags=0}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-30,name="Speed",keywordFlags=0}},nil}c["Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"}c["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies"}c["Adds 475 to 600 Fire Damage"]={{[1]={flags=0,type="BASE",value=475,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="FireMax",keywordFlags=0}},nil}c["Adds 270 to 315 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=270,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=315,name="FireMax",keywordFlags=0}},nil}c["30% chance to Blind Enemies on Critical Strike {variant:1,2}Causes Bleeding on Melee Critical Strike"]={{}," to Blind Enemies {variant:1,2}Causes Bleeding on Critical Strike"}c["Skills which throw Traps have Blood Magic"]={nil,"Skills which throw Traps have Blood Magic"}c["50% increased Cold Damage"]={{[1]={flags=0,type="INC",value=50,name="ColdDamage",keywordFlags=0}},nil}c["50% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-50,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["140% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=140,name="ArmourAndEvasion",keywordFlags=0}},nil}c["135% increased Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EnergyShield",keywordFlags=0}},nil}c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=22,name="ColdDamage",keywordFlags=0}}," over Time Multiplier"}c["+40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},nil}c["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0}},nil}c["+10 to Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["Adds 45 to 100 Physical Damage"]={{[1]={flags=0,type="BASE",value=45,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=100,name="PhysicalMax",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"}c["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=50,name="LightningMax",keywordFlags=0}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you"}c["1% increased Elemental Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="INC",value=1,name="ElementalDamage",keywordFlags=0}},nil}c["+1 Life gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="LifeOnKill",keywordFlags=0}},nil}c["50% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=50,name="MineLayingSpeed",keywordFlags=0}},nil}c["Adds 1 to 2 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=1,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="Level"},flags=1,type="BASE",value=2,name="PhysicalMax",keywordFlags=0}},nil}c["+35 to Intelligence"]={{[1]={flags=0,type="BASE",value=35,name="Int",keywordFlags=0}},nil}c["Adds 65 to 105 Chaos Damage"]={{[1]={flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=105,name="ChaosMax",keywordFlags=0}},nil}c["+45% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=45,name="ElementalResist",keywordFlags=0}},nil}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-18,name="EnemyStunThreshold",keywordFlags=0}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["+1 to Level of Active Socketed Skill Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="active_skill",value=1},name="GemProperty",keywordFlags=0}},nil}c["2% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=2,name="SpellDodgeChance",keywordFlags=0}},nil}c["+25 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["2% increased Experience gain {variant:1}3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,type="INC",value=2,name="Int",keywordFlags=0}}," Experience gain {variant:1}3% increased "}c["100% more Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=4,type="MORE",value=100,name="CritChance",keywordFlags=0}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["Socketed Melee Gems have 15% increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="melee"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned"}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage"}c["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish"}c["Adds 31 to 100 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=31,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=100,name="LightningMax",keywordFlags=0}},nil}c["Take 5 Physical Damage when hit by Attacks"]={nil,"5 Physical Damage when hit by Attacks"}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,type="LIST",value={skillId="UniqueAnimateWeapon",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["2% increased Movement Speed"]={{[1]={flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}},nil}c["+30 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=30,name="Evasion",keywordFlags=0}},nil}c["Adds 3 to 7 Fire Damage"]={{[1]={flags=0,type="BASE",value=3,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=7,name="FireMax",keywordFlags=0}},nil}c["18% Chance to Shock"]={{[1]={flags=0,type="BASE",value=18,name="EnemyShockChance",keywordFlags=0}},nil}c["100% increased Global Armour when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Armour",keywordFlags=0}}," when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds"}c["50% increased Herald of Thunder Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Herald of Thunder"},flags=0,type="INC",value=50,name="BuffEffect",keywordFlags=0}},nil}c["20% Chance to Shock"]={{[1]={flags=0,type="BASE",value=20,name="EnemyShockChance",keywordFlags=0}},nil}c["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["8% increased Spell Damage"]={{[1]={flags=2,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-4,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["40% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="INC",value=40,name="Evasion",keywordFlags=0}},nil}c["19% increased Attack Speed"]={{[1]={flags=1,type="INC",value=19,name="Speed",keywordFlags=0}},nil}c["0% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootRarity",keywordFlags=0}},nil}c["10% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill"}c["22% increased Attack Speed"]={{[1]={flags=1,type="INC",value=22,name="Speed",keywordFlags=0}},nil}c["55% increased Elemental Damage with Attack Skills Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,type="INC",value=55,name="ElementalDamage",keywordFlags=0}}," with Attack Skills Adds 1 to 55 Lightning Damage"}c["10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["+20% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=20,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0}},nil}c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsFire",keywordFlags=0}},nil}c["Armour received from Body Armour is doubled"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Unbreakable",flags=0}},nil}c["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}c["20% increased Elemental Damage with Attack Skills {variant:3}25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:3}25% increased Elemental Damage with Attack Skills "}c["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage"}c["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellDamageAppliesToAttacks",flags=0}},nil}c["Adds 34 to 45 Physical Damage"]={{[1]={flags=0,type="BASE",value=34,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="PhysicalMax",keywordFlags=0}},nil}c["4% chance to Dodge Attack Hits 50% increased Spell Damage"]={{[1]={flags=2,type="BASE",value=4,name="Damage",keywordFlags=0}}," to Dodge Attack Hits 50% increased "}c["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["8% additional Physical Damage Reduction while affected by Determination {variant:11}You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={{[1]={[1]={type="SkillName",skillName="Determination"},flags=0,type="BASE",value=8,name="PhysicalDamageReduction",keywordFlags=0}}," while affected by{variant:11}You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"}c["80% increased Burning Damage"]={{[1]={flags=8,type="INC",value=80,name="FireDamage",keywordFlags=0}},nil}c["10% increased Damage Taken while Energy Shield is Full"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," while Energy Shield is Full"}c["Adds 38 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=38,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["Enemies Become Chilled as they Unfreeze 5% chance to Freeze"]={nil,"Enemies Become Chilled as they Unfreeze 5% chance to Freeze"}c["Adds 50 to 100 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=50,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=100,name="ColdMax",keywordFlags=0}},nil}c["Armour is increased by Uncapped Fire Resistance"]={{[1]={[1]={type="PerStat",stat="FireResistTotal",div=1},value=1,type="INC",keywordFlags=0,name="Armour",flags=0}},nil}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["Cast a Socketed Cold Spell on Melee Critical Strike"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value={name="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike",level=1},type="LIST",keywordFlags=0,name="ExtraSupport",flags=0}},nil}c["+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["Gain Arcane Surge when you deal a Critical Strike"]={nil,"Gain Arcane Surge when you deal a Critical Strike"}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=50}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments"}c["+2 to Weapon Range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",keywordFlags=0}},nil}c["18% increased Cold Damage"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",keywordFlags=0}},nil}c["Instant Recovery"]={{[1]={value=100,type="BASE",keywordFlags=0,name="FlaskInstantRecovery",flags=0}},nil}c["135% increased Physical Damage"]={{[1]={flags=0,type="INC",value=135,name="PhysicalDamage",keywordFlags=0}},nil}c["+1 to Maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=1,name="ActiveZombieLimit",keywordFlags=0}},nil}c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["Adds 38 to 90 Physical Damage"]={{[1]={flags=0,type="BASE",value=38,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="PhysicalMax",keywordFlags=0}},nil}c["40% increased Cold Damage with Attack Skills 40% increased Rarity of Items Dropped by Frozen Enemies"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}}," with Attack Skills 40% increased Rarity of Items Dropped by Frozen Enemies"}c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item"}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="ManaOnHit",keywordFlags=0}},nil}c["You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 10 seconds on using a Vaal Skill"}c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=260,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Adds 7 to 18 Physical Damage"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"}c["15% of Physical Attack Damage Added as Fire Damage"]={{[1]={flags=1,type="BASE",value=15,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["20% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=20,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=30,name="ElementalPenetration",keywordFlags=0}},nil}c["Adds 8 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Shocked Enemies"}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Frozen Enemies"}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect"]={nil,"Immune to Freeze, Chill, Curses and Stuns during Flask Effect"}c["5% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-5,name="MovementSpeed",keywordFlags=0}},nil}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"}c["30% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="ColdDamage",keywordFlags=0}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=100,name="PhysicalDamage",keywordFlags=0}}," from Hits is Converted to a random Element"}c["8% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-8,name="ManaReserved",keywordFlags=0}},nil}c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked"}c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["6% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=524288,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["Adds 100 to 200 Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=200,name="ColdMax",keywordFlags=0}},nil}c["30% increased Trap Trigger Radius"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=4096}}," Trigger "}c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=55,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["50% chance to avoid Freeze, Shock, Ignite and Bleed while using a Flask 4% reduced Elemental Damage taken while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,type="BASE",keywordFlags=0,name="ElementalDamageTaken",value=50}}," to avoid Freeze, Shock, Ignite and Bleed 4% reduced "}c["+1 to Minimum Frenzy Charges {variant:10}{crafted}+1 to Minimum Power Charges"]={{}," MinimumCharges {variant:10}{crafted}+1 to Minimum Power Charges"}c["+1 to maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=1,name="ActiveZombieLimit",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"}c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},flags=4,type="BASE",value=5,name="DamageLifeLeech",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["14% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"]={nil,"200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"}c["Minions have +29% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=29,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Grants level 15 Envy Skill"]={{[1]={flags=0,type="LIST",value={skillId="Envy",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["Minions deal 25% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy"}c["Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline"]={nil,"Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline"}c["Gain Unholy Might during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="Condition:UnholyMight",flags=0}},nil}c["Minions have 60% chance to Poison Enemies on Hit Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," to Pois on Hit Minions Recover 20% of on Killing a Poisoned Enemy"}c["Minions have 60% chance to Poison Enemies on Hit"]={{}," to Pois on Hit"}c["Minions have +17% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=17,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"}c["Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="LightningSpell",level=12},name="ExtraSkill",keywordFlags=0}},nil}c["20% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=62,name="LightningMax",keywordFlags=0}}," while you have Avian's Might"}c["Has 1 Abyssal Socket Has 1 Abyssal Socket"]={nil,"Has 1 Abyssal Socket Has 1 Abyssal Socket"}c["+425 to Armour"]={{[1]={flags=0,type="BASE",value=425,name="Armour",keywordFlags=0}},nil}c["45% increased Burning Damage"]={{[1]={flags=8,type="INC",value=45,name="FireDamage",keywordFlags=0}},nil}c["8% additional chance to Block when in Off Hand"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="INC",keywordFlags=0,name="Defences",value=8}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements"}c["75% increased Armour"]={{[1]={flags=0,type="INC",value=75,name="Armour",keywordFlags=0}},nil}c["5% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=5,name="AttackDodgeChance",keywordFlags=0}},nil}c["Adds 92 to 154 Physical Damage"]={{[1]={flags=0,type="BASE",value=92,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=154,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 1 to 65 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=65,name="LightningMax",keywordFlags=0}},nil}c["70% increased Damage with Channelling Skills"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}}," with Channelling Skills"}c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of"}c["83% increased Spell Damage"]={{[1]={flags=2,type="INC",value=83,name="Damage",keywordFlags=0}},nil}c["Adds 1 to 70 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=70,name="LightningMax",keywordFlags=0}},nil}c["12% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Take 100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"]={nil,"100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"}c["+225% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=225,name="CritMultiplier",keywordFlags=0}},nil}c["Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground 25% increased Attack and Cast Speed while on Consecrated Ground"]={nil,"Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground 25% increased Attack and Cast Speed while on Consecrated Ground"}c["18% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=18,name="LightningDamage",keywordFlags=0}},nil}c["30% chance to gain an additional Vaal Soul on Kill"]={{}," to gain an additional Soul on Kill"}c["Grants Summon Harbinger of the Arcane Skill Trigger level 20 Storm Cascade when you Attack"]={nil,"Grants Summon Harbinger of the Arcane Skill Trigger level 20 Storm Cascade when you Attack"}c["Grants Summon Harbinger of the Arcane Skill"]={nil,"Grants Summon Harbinger of the Arcane Skill"}c["80% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 80 to 180 Physical Damage"]={{[1]={flags=0,type="BASE",value=80,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=180,name="PhysicalMax",keywordFlags=0}},nil}c["10% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["15% increased Physical Damage"]={{[1]={flags=0,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 94 to 137 Physical Damage"]={{[1]={flags=0,type="BASE",value=94,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=137,name="PhysicalMax",keywordFlags=0}},nil}c["+2 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="LifeOnHit",keywordFlags=0}},nil}c["50% reduced Mana Cost of Raise Spectre Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}}," ofSpectres have 1000% increased Critical Strike Chance"}c["30% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyShockDuration",keywordFlags=0}},nil}c["+20% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ChaosResist",keywordFlags=0}},nil}c["Adds 2 to 6 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=6,name="PhysicalMax",keywordFlags=0}},nil}c["100% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["You gain 150 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="BASE",value=150,name="Evasion",keywordFlags=0}},nil}c["Adds 24 to 36 Physical Damage"]={{[1]={flags=0,type="BASE",value=24,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 28 to 40 Chaos Damage"]={{[1]={flags=0,type="BASE",value=28,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ChaosMax",keywordFlags=0}},nil}c["Adds 1 to 70 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=0}},nil}c["Adds 28 to 40 Cold Damage"]={{[1]={flags=0,type="BASE",value=28,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}},nil}c["Adds 28 to 40 Fire Damage"]={{[1]={flags=0,type="BASE",value=28,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="FireMax",keywordFlags=0}},nil}c["Adds 41 to 123 Physical Damage"]={{[1]={flags=0,type="BASE",value=41,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=123,name="PhysicalMax",keywordFlags=0}},nil}c["You gain 500 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="BASE",value=500,name="Evasion",keywordFlags=0}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="CritChance",keywordFlags=0}}," against Enemies on Consecrated Ground "}c["Adds 28 to 40 Physical Damage"]={{[1]={flags=0,type="BASE",value=28,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," of Elemental Ailments "}c["Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect"}c["Adds 100 to 158 Physical Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=158,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"}c["+33% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=33,name="FireResist",keywordFlags=0}},nil}c["30% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=30,name="Evasion",keywordFlags=0}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy"}c["100% increased Burning Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=8,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}c["30% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Damage Taken while Energy Shield is Full Corrupted"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," while Energy Shield is Full Corrupted"}c["Attacks with this Weapon Penetrate 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["+2 to Melee Weapon Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="BASE",value=2,name="MeleeWeaponRange",keywordFlags=0}},nil}c["15% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["0.4% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,type="BASE",value=0.4,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["6% reduced Damage taken from Blinded Enemies 50% increased Blind duration"]={{[1]={flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies 50% increased Blind duration"}c["25% increased Physical Damage with Weapons per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=8388608,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=28,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Adds 4 to 7 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=7,name="PhysicalMax",keywordFlags=0}},nil}c["13% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=13,name="Duration",keywordFlags=0}},nil}c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=256}},nil}c["+50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=50,name="FireResist",keywordFlags=0}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",keywordFlags=0}},nil}c["10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Ghosts"}c["298% increased Physical Damage"]={{[1]={flags=0,type="INC",value=298,name="PhysicalDamage",keywordFlags=0}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy"}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["18% increased Dexterity"]={{[1]={flags=0,type="INC",value=18,name="Dex",keywordFlags=0}},nil}c["Gain 10% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},nil}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={nil,"Gain Her Embrace for 3 seconds when you Ignite an Enemy While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"}c["Adds 2 to 3 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=1,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="Level"},flags=1,type="BASE",value=3,name="PhysicalMax",keywordFlags=0}},nil}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["120% increased Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EnergyShield",keywordFlags=0}},nil}c["+1 to Maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["Adds 7 to 12 Physical Damage"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["1% increased Bleed Duration per 12 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=12},flags=0,type="INC",value=1,name="Duration",keywordFlags=2097152}},nil}c["+24 to all Attributes"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["Socketed Gems are supported by level 1 Multistrike"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMultistrike",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["40% reduced Stun Recovery"]={{[1]={flags=0,type="INC",value=-40,name="StunRecovery",keywordFlags=0}},nil}c["Adds 8 to 14 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},nil}c["21% increased Attack Speed"]={{[1]={flags=1,type="INC",value=21,name="Speed",keywordFlags=0}},nil}c["Attacks with this Weapon Maim on hit"]={nil,"Maim on hit"}c["Purity of Ice Reserves no Mana"]={nil,"Purity of Ice Reserves no Mana"}c["Chance to Block Spell Damage is Unlucky +120 to Strength"]={nil,"Chance to Block Spell Damage is Unlucky +120 to Strength"}c["+3000 to Armour"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}},nil}c["Minions have 10% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+2 maximum Energy Shield per 5 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=5},flags=0,type="BASE",value=2,name="EnergyShield",keywordFlags=0}},nil}c["70% increased Damage against Hindered Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Hindered"},flags=4,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["10% increased Effect of Buffs on you"]={{[1]={flags=0,type="INC",value=10,name="BuffEffectOnSelf",keywordFlags=0}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="AlliesAurasCannotAffectSelf",flags=0}},nil}c["5% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-5,name="ManaReserved",keywordFlags=0}},nil}c["95% increased Physical Damage"]={{[1]={flags=0,type="INC",value=95,name="PhysicalDamage",keywordFlags=0}},nil}c["1% increased Area of Effect of Area Skills per 20 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=20},flags=0,type="INC",value=1,name="AreaOfEffect",keywordFlags=0}},nil}c["+20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=20,name="LifeOnKill",keywordFlags=0}},nil}c["Adds 52 to 79 Chaos Damage to Spells"]={{[1]={flags=2,type="BASE",value=52,name="ChaosMin",keywordFlags=0},[2]={flags=2,type="BASE",value=79,name="ChaosMax",keywordFlags=0}},nil}c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["Adds 1 to 650 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=650,name="LightningMax",keywordFlags=0}},nil}c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity"}c["20% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=20,name="FlaskDuration",keywordFlags=0}},nil}c["Adds 1 to 600 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="LightningMax",keywordFlags=0}},nil}c["Iron Reflexes while stationary"]={nil,"Iron Reflexes while stationary"}c["2 additional Projectiles if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="INC",value=80,name="Armour",keywordFlags=0}},nil}c["Gain 24% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=24,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["55% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=55,name="CritChance",keywordFlags=0}},nil}c["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonSpider",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["+2 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=2,name="LifeOnHit",keywordFlags=0}},nil}c["Adds 5 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["15% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-15,name="MovementSpeed",keywordFlags=0}},nil}c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=108,name="ElementalDamage",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block"}c["160% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=160,name="Evasion",keywordFlags=0}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield"}c["200% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=200,name="Evasion",keywordFlags=0}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy"}c["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=99,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["66% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=66,name="CritChance",keywordFlags=0}},nil}c["+180 to maximum Life"]={{[1]={flags=0,type="BASE",value=180,name="Life",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={nil,"deal 100 to 200 added Physical Damage to Ignited Enemies"}c["100% increased Physical Damage while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill"}c["Adds 6 to 66 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=66,name="PhysicalMax",keywordFlags=0}},nil}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."}c["+50% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=50,name="ColdResist",keywordFlags=0}},nil}c["Uses both hand slots Adds 6 to 66 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=66,name="PhysicalMax",keywordFlags=0}},"Uses both hand slots "}c["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite"}c["60% reduced Duration"]={{[1]={flags=0,type="INC",value=-60,name="Duration",keywordFlags=0}},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,type="INC",value=50,name="IgniteBurnFaster",keywordFlags=0}},nil}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",keywordFlags=0}},nil}c["110% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=110,name="CritChance",keywordFlags=0}},nil}c["55% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=55,name="ElementalDamage",keywordFlags=0}},nil}c["+33% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=33,name="ColdResist",keywordFlags=0}},nil}c["Uses both hand slots"]={nil,"Uses both hand slots"}c["18% Increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["45% increased Maximum Energy Shield"]={{[1]={flags=0,type="INC",value=45,name="EnergyShield",keywordFlags=0}},nil}c["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.8,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["+20 to Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["+29% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=29,name="LightningResist",keywordFlags=0}},nil}c["300% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item"}c["10% reduced Maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["60% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=60,name="LootRarity",keywordFlags=0}},nil}c["0.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["90% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=90,name="ArmourAndEvasion",keywordFlags=0}},nil}c["2% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["+45 to Intelligence"]={{[1]={flags=0,type="BASE",value=45,name="Int",keywordFlags=0}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.15,name="EnergyShield",keywordFlags=0}},name="GrantReservedManaAsAura",keywordFlags=0}},nil}c["Cannot be inflicted with Bleeding"]={nil,"Cannot be inflicted with Bleeding"}c["140% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["9 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=9,name="ManaRegen",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of"}c["Iron Grip"]={{[1]={value="Iron Grip",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=16384}},nil}c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=30,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=4096}}," for 9 seconds on Throwing a "}c["You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike"}c["2% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill"}c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=73,name="PhysicalMax",keywordFlags=0}},nil}c["+200 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=200,name="Evasion",keywordFlags=0}},nil}c["Adds 50 to 80 Physical Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 40 to 70 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="PhysicalMax",keywordFlags=0}},nil}c["18% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["92% increased Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="EnergyShield",keywordFlags=0}},nil}c["+475 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=475,name="Accuracy",keywordFlags=0}},nil}c["+4% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=4,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=4,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=4,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=4,name="ChaosResistMax",keywordFlags=0}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegen",keywordFlags=0}},nil}c["Triggers Level 20 Lightning Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="LightningAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["23% increased Poison Duration"]={{[1]={flags=0,type="INC",value=23,name="Duration",keywordFlags=1048576}},nil}c["Adds 15 to 140 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=15,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=140,name="LightningMax",keywordFlags=0}},nil}c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Has 2 Abyssal Sockets Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={nil,"Has 2 Abyssal Sockets Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"}c["80% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=80,name="Evasion",keywordFlags=0}},nil}c["All bonuses from an equipped Shield apply to your Minions instead of you"]={{},nil}c["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block"}c["Adds 25 to 40 Cold Damage while you have Avian's Might Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={flags=0,type="BASE",value=25,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}}," while you have Avian's Might Adds 3 to 62 while you have Avian's Might"}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["Adds 115 to 205 Physical Damage"]={{[1]={flags=0,type="BASE",value=115,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=205,name="PhysicalMax",keywordFlags=0}},nil}c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=40,name="Accuracy",keywordFlags=0}},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=58,name="CritChance",keywordFlags=0}},nil}c["Adds 4 to 19 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=19,name="PhysicalMax",keywordFlags=0}},nil}c["+13 to Strength"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0}},nil}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=8}},nil}c["Adds 6 to 22 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["You have Phasing while affected by Haste {variant:24}Unaffected by Temporal Chains while affected by Haste"]={nil,"You have Phasing while affected by Haste {variant:24}Unaffected by Temporal Chains while affected by Haste"}c["15% reduced Accuracy Rating"]={{[1]={flags=0,type="INC",value=-15,name="Accuracy",keywordFlags=0}},nil}c["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="LightningPenetration",value=15},[2]={[1]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="ColdPenetration",value=15},[3]={[1]={type="StatThreshold",stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=15}},nil}c["+15 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="LifeOnKill",keywordFlags=0}},nil}c["4% chance to Dodge Attack Hits"]={{}," to Dodge Attack Hits"}c["5% chance to Gain Unholy Might for 4 seconds on Melee Kill"]={{}," to Gain Unholy Might for 4 seconds on Kill"}c["Attacks with this Weapon deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={nil,"deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"}c["+7% chance to Block Spell Damage {variant:1}10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,type="BASE",value=7,name="BlockChance",keywordFlags=0}}," Damage {variant:1}10% additional Chance to Block "}c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={nil,"deal 80-120 added Chaos Damage against"}c["No Physical Damage"]={{[1]={value={key="PhysicalMin"},type="LIST",keywordFlags=0,name="WeaponData",flags=0},[2]={value={key="PhysicalMax"},type="LIST",keywordFlags=0,name="WeaponData",flags=0},[3]={value={key="PhysicalDPS"},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={flags=0,type="BASE",value=1.8,name="CritChance",keywordFlags=0}}," while affected by Hatred"}c["Adds 3 to 52 Lightning Damage"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=52,name="LightningMax",keywordFlags=0}},nil}c["Adds 45 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=45,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"}c["+650 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=650,name="Evasion",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy"}c["+120 to Strength"]={{[1]={flags=0,type="BASE",value=120,name="Str",keywordFlags=0}},nil}c["Adds 50 to 150 Physical Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="PhysicalMax",keywordFlags=0}},nil}c["Minions have 13% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=13,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Acrobatics"]={{[1]={value="Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Adds 43 to 113 Physical Damage"]={{[1]={flags=0,type="BASE",value=43,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=113,name="PhysicalMax",keywordFlags=0}},nil}c["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={[1]={type="PerStat",stat="ColdResistTotal",div=1},value=1,type="INC",keywordFlags=0,name="Evasion",flags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"}c["10% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=10,name="LootQuantity",keywordFlags=0}},nil}c["Increases and Reductions to Minion Damage also affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MinionDamageAppliesToPlayer",flags=0}},nil}c["Adds 13 to 24 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=13,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=24,name="ColdMax",keywordFlags=0}},nil}c["Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"]={nil,"Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"}c["Minions have 15% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=15,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 50 to 125 Physical Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=125,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 30 to 58 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=58,name="PhysicalMax",keywordFlags=0}},nil}c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=140,name="CritChance",keywordFlags=0}},nil}c["40% less Critical Strike Chance"]={{[1]={flags=0,type="MORE",value=-40,name="CritChance",keywordFlags=0}},nil}c["+15 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=15,name="LifeOnHit",keywordFlags=0}},nil}c["to surrounding targets"]={nil,"to surrounding targets"}c["+23 to maximum Mana"]={{[1]={flags=0,type="BASE",value=23,name="Mana",keywordFlags=0}},nil}c["also grant an equal chance to gain a Power Charge on Kill"]={nil,"also grant an equal chance to gain a Power Charge on Kill"}c["20% of Physical Damage gained as Extra Chaos Damage against"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}}," against"}c["Adds 35 to 65 Physical Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=65,name="PhysicalMax",keywordFlags=0}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike"}c["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["8% additional Block Chance if you were Damaged by a Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["+40 Life gained when you Block"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}}," gained when you Block"}c["+1 to Level of Socketed Dexterity Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="dexterity",value=1},name="GemProperty",keywordFlags=0}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,type="INC",value=88,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",keywordFlags=0,name="ElementalDamage",value=2}}," to Avoid when Hit 0.5% of Attack Damage Leeched as Life "}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block"]={{[1]={flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," if Equipped Shield has at least 30% Chance to Block"}c["Grace Reserves no Mana {variant:6}Haste Reserves no Mana"]={nil,"Grace Reserves no Mana {variant:6}Haste Reserves no Mana"}c["12% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=12,name="EnergyShield",keywordFlags=0}},nil}c["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},nil}c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,type="INC",value=8,name="Speed",keywordFlags=16384}},nil}c["23% increased Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=0}},nil}c["35% increased Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsLightning",keywordFlags=0}},nil}c["+38 to maximum Life"]={{[1]={flags=0,type="BASE",value=38,name="Life",keywordFlags=0}},nil}c["Immune to Freeze while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice"}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"}c["Grants Summon Harbinger of Time Skill 15% increased Attack and Cast Speed"]={nil,"Grants Summon Harbinger of Time Skill 15% increased Attack and Cast Speed"}c["+2 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=2},flags=0,type="BASE",value=2,name="Accuracy",keywordFlags=0}},nil}c["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=16384,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["1% of Damage Leeched as Life if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+15 to Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="Dex",keywordFlags=0}},nil}c["Adds 2 to 10 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},nil}c["25% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["85% increased Spell Damage"]={{[1]={flags=2,type="INC",value=85,name="Damage",keywordFlags=0}},nil}c["Adds 20 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["+130 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=130,name="EnergyShield",keywordFlags=0}},nil}c["Right ring slot: You cannot Regenerate Mana"]={nil,"You cannot Regenerate Mana"}c["Point Blank"]={{[1]={value="Point Blank",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["28% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=28,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 3 to 72 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=72,name="LightningMax",keywordFlags=0}},nil}c["+1 to Maximum Life per 2 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=2},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamage",keywordFlags=0}}," Bow as Extra Damage of an Element"}c["40% increased Physical Damage"]={{[1]={flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=25},flags=1,type="INC",value=1,name="Speed",keywordFlags=0}},nil}c["80% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=80,name="ManaCost",keywordFlags=0}},nil}c["10% chance to Trigger Level 8 Summon Raging Spirit on Kill"]={{[1]={flags=0,type="LIST",value={skillId="SummonRagingSpirit",level=8},name="ExtraSkill",keywordFlags=0}},nil}c["30% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["10% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=10,name="LootRarity",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportElementalProliferation",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 1 to 6 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",value=6,name="LightningMax",keywordFlags=0}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy"}c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=30}},nil}c["Adds 3 to 47 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=47,name="LightningMax",keywordFlags=0}},nil}c["60 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=60,name="LifeRegen",keywordFlags=0}},nil}c["Adds 2 to 45 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="LightningMax",keywordFlags=0}},nil}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=46,name="LifeOnHit",keywordFlags=0}},nil}c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=55,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",keywordFlags=0,name="LightningMin",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",keywordFlags=0,name="LightningMax",value=5}},nil}c["Adds 1 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",value=3,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="LightningMax",keywordFlags=0}},nil}c["+11% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=11,name="ChaosResist",keywordFlags=0}},nil}c["Adds 175 to 300 Cold Damage"]={{[1]={flags=0,type="BASE",value=175,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="ColdMax",keywordFlags=0}},nil}c["Adds 1 to 200 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=200,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="LightningMax",keywordFlags=0}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit"}c["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=31,name="LifeOnHit",keywordFlags=0}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy"}c["25 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=25,name="LifeRegen",keywordFlags=0}},nil}c["15% increased Damage over Time"]={{[1]={flags=8,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"}c["Uses both hand slots 90% increased Critical Strike Chance"]={nil,"Uses both hand slots 90% increased Critical Strike Chance"}c["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["15 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}},nil}c["You gain 8% increased Area of Effect for each Mine 10% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,type="BASE",value=8,name="AreaOfEffect",keywordFlags=8192}},"% increased for each 10% Chance for Traps to Trigger an additional time"}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=8192}},nil}c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["16% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="INC",value=4,name="ElementalDamage",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["3% of Damage taken gained as Mana when Hit"]={{[1]={flags=0,type="BASE",value=3,name="DamageTaken",keywordFlags=0}}," gained as Mana when Hit"}c["Nearby Allies gain 2% of Life Regenerated per Second"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Adds 18 to 35 Physical Damage"]={{[1]={flags=0,type="BASE",value=18,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="PhysicalMax",keywordFlags=0}},nil}c["You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill"}c["You gain Phasing for 3 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill"}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,type="LIST",value={skillId="AbyssalCry",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=15,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["10% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil}c["110% increased Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EnergyShield",keywordFlags=0}},nil}c["+110 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=110,name="Evasion",keywordFlags=0}},nil}c["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=44,name="LifeOnHit",keywordFlags=0}},nil}c["10% reduced Frenzy Charge Duration per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=-10,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["7% chance to Ignite"]={{[1]={flags=0,type="BASE",value=7,name="EnemyIgniteChance",keywordFlags=0}},nil}c["10% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=10,name="Duration",keywordFlags=0}},nil}c["Adds 190 to 220 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=190,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=220,name="FireMax",keywordFlags=0}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies"}c["Enemies you Curse take 10% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},name="AffectedByCurseMod",keywordFlags=0}},nil}c["Nearby Allies have 30% increased Item Rarity {variant:1}Nearby Allies' spells have Culling Strike"]={{}," Item Rarity {variant:1}Nearby Allies' s have Culling Strike"}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You"}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks"}c["+28% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=28,name="ElementalResist",keywordFlags=0}},nil}c["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"]={nil,"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"}c["Your Cold Damage can Ignite but not Freeze or Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ColdCanIgnite",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="ColdCannotFreeze",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="ColdCannotChill",flags=0}},nil}c["+90 to all Attributes"]={{[1]={flags=0,type="BASE",value=90,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=90,name="Int",keywordFlags=0}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies 40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}}," Rarity of Items Dropped by Frozen Enemies 40% increased with Attack Skills"}c["Grants Summon Harbinger of Storms Skill"]={nil,"Grants Summon Harbinger of Storms Skill"}c["230% increased Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="EnergyShield",keywordFlags=0}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,type="BASE",value=30,name="LightningDamage",keywordFlags=0}}," is taken from Mana before Life when Hit"}c["50% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["350% increased Energy Shield"]={{[1]={flags=0,type="INC",value=350,name="EnergyShield",keywordFlags=0}},nil}c["24% increased maximum Mana"]={{[1]={flags=0,type="INC",value=24,name="Mana",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFrenzyChargeOnSlayingFrozenEnemy",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=245,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportOnslaughtOnSlayingShockedEnemy",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,type="BASE",value=20,name="LightningDamage",keywordFlags=0}}," to be Shocked 30% of is taken from Mana before Life when Hit"}c["+20% chance to be Shocked"]={{}," to be Shocked"}c["30% increased maximum Mana"]={{[1]={flags=0,type="INC",value=30,name="Mana",keywordFlags=0}},nil}c["10% chance to gain a Power Charge when you Block 6% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," to gain a Power Charge when you Block 6% additional "}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"]={nil,"With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={flags=2,type="BASE",value=14,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=173,name="LightningMax",keywordFlags=0}}," while no is Reserved"}c["20% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-20,name="ProjectileSpeed",keywordFlags=0}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={nil,"16 to 144 added Lightning Damage per Blue Socket You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"}c["+4% chance to Block Spell Damage 4% chance to Block Attack Damage"]={{[1]={flags=2,type="BASE",value=4,name="BlockChance",keywordFlags=0}}," Damage 4% chance to Block Attack Damage"}c["When you Kill an Enemy, for each Curse on that Enemy, gain 4% of Non-Chaos Damage as extra Chaos Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamageGainAsChaos",value=4},[2]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="BASE",keywordFlags=0,name="ElementalDamageGainAsChaos",value=4}},nil}c["Can Summon up to 3 additional Golems at a time"]={{[1]={flags=0,type="BASE",value=3,name="ActiveGolemLimit",keywordFlags=0}},nil}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={flags=2,type="BASE",value=64,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=107,name="FireMax",keywordFlags=0}}," while no is Reserved"}c["8% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["100% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=100,name="FlaskRecovery",keywordFlags=0}},nil}c["Damage Penetrates 15% Fire Resistance while affected by Anger {variant:3}Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={type="SkillName",skillName="Anger"},flags=0,type="BASE",value=15,name="FirePenetration",keywordFlags=0}}," while affected by{variant:3}Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={flags=2,type="BASE",value=54,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=88,name="ColdMax",keywordFlags=0}}," while no is Reserved Adds 64 to 107 Fire Damage to s while no Life is Reserved"}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved"]={{[1]={flags=2,type="BASE",value=54,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=88,name="ColdMax",keywordFlags=0}}," while no is Reserved"}c["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportReducedMana",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["20% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=20,name="ManaCost",keywordFlags=0}},nil}c["Conduit"]={{[1]={value="Conduit",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Socketed Gems have 50% reduced Mana Cost"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["+2 seconds to Avian's Flight Duration"]={{[1]={flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Avian's Flight "}c["+2 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ManaOnHit",keywordFlags=0}},nil}c["Adds 20 to 40 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Curse Gems are Supported by Level 22 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlasphemy",level=22},name="ExtraSupport",keywordFlags=0}},nil}c["Grants level 1 Icestorm Skill"]={{[1]={flags=0,type="LIST",value={skillId="IcestormUniqueStaff12",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," of Shrine Effects on you"}c["75% increased Effect of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,type="INC",value=75,name="FlaskEffect",keywordFlags=0}}," of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"}c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,type="INC",value=75,name="FlaskEffect",keywordFlags=0}}," of Shrine Buffs on you"}c["10% reduced Damage taken from Traps and Mines"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=4096}}," from s and Mines"}c["You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 3 seconds after being Shocked"}c["Gain 24% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,type="BASE",value=24,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element"}c["250% increased Armour"]={{[1]={flags=0,type="INC",value=250,name="Armour",keywordFlags=0}},nil}c["+15 Energy Shield gained on Kill 75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill 75% increased Effect of Shrine Buffs on you"}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20% You have Onslaught while not on Low Mana"]={{[1]={flags=2,type="BASE",value=2,name="Mana",keywordFlags=0}}," to Dodge Attack and Hits per 500 , up to 20% You have Onslaught while not on Low Mana"}c["150% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=150,name="Evasion",keywordFlags=0}},nil}c["+15 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill"}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonLesserShrine",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["225% increased Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EnergyShield",keywordFlags=0}},nil}c["20% increased Cold Damage"]={{[1]={flags=0,type="INC",value=20,name="ColdDamage",keywordFlags=0}},nil}c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="INC",value=-5,name="ElementalDamageTaken",keywordFlags=0}},nil}c["5% additional Physical Damage Reduction while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,type="BASE",value=5,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["Minions have +16% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=16,name="ElementalResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"}c["Adds 14 to 23 Physical Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="PhysicalMax",keywordFlags=0}},nil}c["Unwavering Stance"]={{[1]={value="Unwavering Stance",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"}c["1% increased Energy Shield per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="INC",value=1,name="EnergyShield",keywordFlags=0}},nil}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike"}c["+140 to maximum Life"]={{[1]={flags=0,type="BASE",value=140,name="Life",keywordFlags=0}},nil}c["Adds 105 to 253 Physical Damage"]={{[1]={flags=0,type="BASE",value=105,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=253,name="PhysicalMax",keywordFlags=0}},nil}c["+10% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=10,name="FireResist",keywordFlags=0}},nil}c["50% increased Mine Arming Speed"]={{}," Arming Speed"}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity {variant:8}-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="SkillName",skillName="Clarity"},flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill while affected by{variant:8}-5 to Total Mana Cost of Skills while affected by Clarity"}c["+85 to maximum Life"]={{[1]={flags=0,type="BASE",value=85,name="Life",keywordFlags=0}},nil}c["20% increased Flask Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["15% reduced Mine Laying Speed"]={{[1]={flags=0,type="INC",value=-15,name="MineLayingSpeed",keywordFlags=0}},nil}c["15% reduced Intelligence"]={{[1]={flags=0,type="INC",value=-15,name="Int",keywordFlags=0}},nil}c["15% increased Damage with Ailments per Elder Item Equipped +6 to Maximum Life per Elder Item Equipped"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}}," with Ailments per Elder Item Equipped +6 to Maximum Life per Elder Item Equipped"}c["+23 to maximum Life"]={{[1]={flags=0,type="BASE",value=23,name="Life",keywordFlags=0}},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies Every 8 seconds, gain Avatar of Fire for 4 seconds"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}}," with Hits and Ailments Every 8 seconds, gain Avatar of Fire for 4 seconds"}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"}c["10% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",upper=true,threshold=0},flags=0,type="INC",value=10,name="Life",keywordFlags=0}},nil}c["+29% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=29,name="FireResist",keywordFlags=0}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," if you Summoned a in the past 8 seconds"}c["Enemies you Shock have 20% reduced Movement Speed Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",keywordFlags=0}},"Enemies you Shock have 20% reduced Damage "}c["Regenerate 100 Life per second if no Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",upper=true,threshold=0},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["+32% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=32,name="FireResist",keywordFlags=0}},nil}c["+300 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=300,name="Evasion",keywordFlags=0}},nil}c["+68 to maximum Life"]={{[1]={flags=0,type="BASE",value=68,name="Life",keywordFlags=0}},nil}c["+6% Chance to Block"]={{[1]={flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["+12 to maximum Life"]={{[1]={flags=0,type="BASE",value=12,name="Life",keywordFlags=0}},nil}c["3% increased Movement Speed"]={{[1]={flags=0,type="INC",value=3,name="MovementSpeed",keywordFlags=0}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=22,name="Defences",keywordFlags=0}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning"}c["Projectiles Pierce 6 additional Targets Implicit Modifier magnitudes are doubled"]={nil,"Projectiles Pierce 6 additional Targets Implicit Modifier magnitudes are doubled"}c["12% increased Movement Speed"]={{[1]={flags=0,type="INC",value=12,name="MovementSpeed",keywordFlags=0}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"}c["Crimson Dance {variant:8}Eldritch Battery"]={nil,"Crimson Dance {variant:8}Eldritch Battery"}c["Ignites your Skills cause spread to other Enemies within a Radius of 12"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12"}c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block"}c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies"}c["2% increased Minion Movement Speed per 50 Dexterity Minions' Hits can only Kill Ignited Enemies"]={{[1]={[1]={type="PerStat",stat="Dex",div=50},flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}}," Minion Minions' Hits can only Kill Ignited Enemies"}c["40% increased Effect of Shock Unaffected by Shock"]={{[1]={flags=0,type="INC",value=40,name="FlaskEffect",keywordFlags=0}}," of Shock Unaffected by Shock"}c["2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=50},flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}}," Minion "}c["2% increased Minion Attack Speed per 50 Dexterity 2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=50},[2]={type="PerStat",stat="Dex",div=50},flags=1,type="INC",keywordFlags=0,name="Speed",value=2}}," Minion 2% increased Minion Movement Speed "}c["10% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["2% increased Minion Attack Speed per 50 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=50},flags=1,type="INC",value=2,name="Speed",keywordFlags=0}}," Minion "}c["8% increased Physical Damage"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Cannot Leech Mana"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechMana",flags=0}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit Cannot Leech Mana"]={{[1]={flags=0,type="BASE",value=10,name="DamageTaken",keywordFlags=0}}," Gained as Mana over 4 seconds when Hit Cannot Leech Mana"}c["Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"}c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You"}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire {variant:35}Unaffected by Burning Ground while affected by Purity of Fire"]={{[1]={[1]={type="SkillName",skillName="Purity of Fire"},flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsFire",keywordFlags=0}}," while affected by{variant:35}Unaffected by Burning Ground while affected by Purity of Fire"}c["+25 Energy Shield gained on Kill Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",value=25,name="EnergyShield",keywordFlags=0}}," gained on Kill Grants Malachai's Endurance,and Power for 6 seconds each, in sequence"}c["100% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=100,name="ProjectileSpeed",keywordFlags=0}},nil}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges"}c["Gain Armour equal to your Reserved Mana"]={nil,"Gain Armour equal to your Reserved Mana"}c["6% increased Attack Damage for each Map Item Modifier affecting the Area"]={{[1]={flags=513,type="INC",value=6,name="Damage",keywordFlags=0}}," for each Map Item Modifier affecting the "}c["10% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=10,name="ManaReserved",keywordFlags=0}},nil}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,type="LIST",value={skillId="Flammability",level=1,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["+25% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["+200 to maximum Mana"]={{[1]={flags=0,type="BASE",value=200,name="Mana",keywordFlags=0}},nil}c["40% increased maximum Mana"]={{[1]={flags=0,type="INC",value=40,name="Mana",keywordFlags=0}},nil}c["12% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["+250 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=250,name="EnergyShield",keywordFlags=0}},nil}c["26% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"}c["Intelligence provides no bonus to Maximum Mana +1 to Maximum Life per 2 Intelligence"]={nil,"Intelligence provides no bonus to Maximum Mana +1 to Maximum Life per 2 Intelligence"}c["100% increased Charge Recovery"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargeRecovery",keywordFlags=0}},nil}c["Strength provides no bonus to Maximum Life Intelligence provides no bonus to Maximum Mana"]={nil,"Strength provides no bonus to Maximum Life Intelligence provides no bonus to Maximum Mana"}c["Strength provides no bonus to Maximum Life"]={nil,"Strength provides no bonus to Maximum Life"}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["+180 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=180,name="EnergyShield",keywordFlags=0}},nil}c["150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=150,name="LifeRegen",keywordFlags=0}}," if you have at least 1500 "}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield 150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{}," if you have at least 1500 "}c["Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15"}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}}," if you have at least 1000 "}c["+8% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ColdResist",keywordFlags=0}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield 100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{}," if you have at least 1000 "}c["50% increased Defences from equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=50,name="Defences",keywordFlags=0}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks"]={{[1]={flags=0,type="BASE",value=188,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=262,name="ColdMax",keywordFlags=0}}," to Bow Attacks"}c["+225 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=225,name="EnergyShield",keywordFlags=0}},nil}c["Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="NonCorruptedItem",upper=true,threshold=0},flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}c["20% chance to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"}c["Grants level 20 Death Aura Skill"]={{[1]={flags=0,type="LIST",value={skillId="ChaosDegenAuraUnique",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill"}c["Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"}c["Recover 5% of Life when a Spirit Charge expires or is consumed"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed"}c["10% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=10,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge +15% to all Elemental Resistances"]={nil,"Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge +15% to all Elemental Resistances"}c["Adds 18 to 26 Chaos Damage"]={{[1]={flags=0,type="BASE",value=18,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=26,name="ChaosMax",keywordFlags=0}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={nil,"Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"}c["30% chance to Cast Socketed Spells when you Spend at least 100 Mana to Use a Skill"]={{[1]={flags=2,type="BASE",value=30,name="Mana",keywordFlags=0}}," to Cast Socketed s when you Spend at least 100 to Use a Skill"}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when"}c["Nearby Allies have 2% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={type="PerStat",stat="Int",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=16,type="INC",value=2,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}}," you have"}c["Your Spells are disabled"]={nil,"Your Spells are disabled"}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Enemies Ignited by an Attack Burn 20% faster"]={{[1]={flags=1,type="INC",value=20,name="IgniteBurnFaster",keywordFlags=0}},nil}c["90% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=90,name="ElementalDamage",keywordFlags=0}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={nil,"Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["15% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=15,name="PoisonChance",keywordFlags=0}},nil}c["Damage Penetrates 25% Fire Resistance if you've"]={{[1]={flags=0,type="BASE",value=25,name="FirePenetration",keywordFlags=0}}," if you've"}c["5% additional Block Chance"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,type="INC",value=25,name="FlaskLifeRecoveryRate",keywordFlags=0}},nil}c["+5 to Level of Socketed Aura Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="aura",value=5},name="GemProperty",keywordFlags=0}},nil}c["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"]={nil,"56 to 88 added Cold Damage per Green Socket You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"}c["You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={nil,"64 to 96 added Fire Damage per Red Socket"}c["Nearby Enemies have -10% to all Resistances"]={nil,"Nearby Enemies have -10% to all Resistances"}c["25% chance to Sap Enemies"]={{}," to Sap Enemies"}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,type="BASE",value=1,name="ExtraPoints",keywordFlags=0}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers"]={{[1]={flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}}," while you have at least 5 Crab Barriers"}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently"}c["20% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-20,name="LightRadius",keywordFlags=0}},nil}c["+9% chance to Block Spell Damage {variant:2}+6% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=9,name="BlockChance",keywordFlags=0}}," Damage {variant:2}+6% chance to Block Spell Damage"}c["+9% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=9,name="BlockChance",keywordFlags=0}}," Damage"}c["40% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-40,name="Damage",keywordFlags=0}},nil}c["+52% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=52,name="ChaosResist",keywordFlags=0}},nil}c["80% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=80,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=-20,name="ManaRegen",keywordFlags=0}},nil}c["+10 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="ManaOnKill",keywordFlags=0}},nil}c["+20 to maximum Life"]={{[1]={flags=0,type="BASE",value=20,name="Life",keywordFlags=0}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["20% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["15% increased Totem Life"]={{[1]={flags=0,type="INC",value=15,name="TotemLife",keywordFlags=0}},nil}c["2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=16,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["1% of Damage against Frozen Enemies Leeched as Mana"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="BASE",value=1,name="DamageManaLeech",keywordFlags=0}},nil}c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers"}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"}c["8% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=8,name="AreaOfEffect",keywordFlags=0}},nil}c["270% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=270,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["You have Phasing while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack"}c["20% increased Area of Effect for Traps"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=4096}},nil}c["Creates a Smoke Cloud on Use"]={{},nil}c["60% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="INC",value=60,name="ManaRegen",keywordFlags=0}},nil}c["5% reduced Cold Damage taken"]={{[1]={flags=0,type="INC",value=-5,name="ColdDamageTaken",keywordFlags=0}},nil}c["4% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain an Endurance Charge on Kill 10% more "}c["+1500 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=1500,name="Armour",keywordFlags=0}},nil}c["4% reduced Elemental Damage taken while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-4,name="ElementalDamageTaken",keywordFlags=0}},nil}c["6% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=6,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=800,name="Armour",keywordFlags=0}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={type="StatThreshold",stat="PowerCharges",thresholdStat="PowerChargesMax"},flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy {variant:9}{crafted}13% increased Cast Speed"]={{[1]={[1]={type="SkillName",skillName="Blood Rage"},flags=16,type="BASE",value=10,name="Speed",keywordFlags=0}}," to Trigger Level 1when you Kill an Enemy {variant:9}{crafted}13% increased "}c["You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"]={nil,"You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"}c["-1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["25% increased Physical Damage"]={{[1]={flags=0,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["Minions have +325 to Armour"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=325,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions have +350 to Armour"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=350,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+2 seconds to Avian's Flight Duration 100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Avian's Flight 100 Life Regenerated per Second while you have Avian's Flight"}c["Minions have 10% Chance to Block"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+21% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=21,name="ChaosResist",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["6% increased Damage with Bows"]={{[1]={flags=8192,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second"]={nil,"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second"}c["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["Mercury Footprints"]={nil,"Mercury Footprints"}c["2 additional Projectiles during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={nil,"Enemies you inflict Bleeding on grant 100% increased Flask Charges"}c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["12% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=12,name="BlockChance",keywordFlags=0}},nil}c["+65 to Dexterity"]={{[1]={flags=0,type="BASE",value=65,name="Dex",keywordFlags=0}},nil}c["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred {variant:29}12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="BASE",value=40,name="PhysicalDamageConvertToCold",keywordFlags=0}}," while affected by{variant:29}12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"}c["10% increased Strength"]={{[1]={flags=0,type="INC",value=10,name="Str",keywordFlags=0}},nil}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["10% increased Armour"]={{[1]={flags=0,type="INC",value=10,name="Armour",keywordFlags=0}},nil}c["5% chance to Shock"]={{[1]={flags=0,type="BASE",value=5,name="EnemyShockChance",keywordFlags=0}},nil}c["+3% to all maximum Resistances while Poisoned"]={{[1]={flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}}," while Poisoned"}c["Cannot Leech when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0},[2]={[1]={type="Condition",var="LowLife"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechMana",flags=0}},nil}c["20% increased Melee Damage"]={{[1]={flags=256,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="LightningDamageConvertToCold",keywordFlags=0}},nil}c["Adds 10-20 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=20,name="Evasion",keywordFlags=0}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"}c["250% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Has no Attribute Requirements"]={nil,"Has no Attribute Requirements"}c["Can't use Chest armour {variant:1,2}15% Chance to Block"]={nil,"Can't use Chest armour {variant:1,2}15% Chance to Block"}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"}c["8% chance to Block while affected by Determination"]={{[1]={flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}}," while affected by Determination"}c["0.2% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=0.2,name="LifeRegenPercent",keywordFlags=0}},nil}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage Converted to Cold Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage Converted to Cold Damage"}c["Can't use Chest armour"]={nil,"Can't use Chest armour"}c["Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 50 Energy Shield when your Trap is triggered by an Enemy"}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour"}c["10% chance to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block"}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing"}c["300% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Adds 20 to 30 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="PhysicalMax",keywordFlags=0}},nil}c["12% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"}c["80% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=80,name="EnemyStunDuration",keywordFlags=0}},nil}c["+24% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=24,name="BlockChance",keywordFlags=0}}," Damage"}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill"}c["Socketed Gems are Supported by level 18 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 12 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=12},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["1% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=1,type="INC",value=1,name="Speed",keywordFlags=0}},nil}c["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="CritMultiplier",keywordFlags=0}},nil}c["6% Chance to Block"]={{[1]={flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["Anger Reserves no Mana"]={nil,"Anger Reserves no Mana"}c["6% increased Dexterity"]={{[1]={flags=0,type="INC",value=6,name="Dex",keywordFlags=0}},nil}c["+25 to all Attributes"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}c["10% increased Intelligence"]={{[1]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["15% increased Light Radius"]={{[1]={flags=0,type="INC",value=15,name="LightRadius",keywordFlags=0}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons"}c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={type="SkillName",skillName="Blight"},flags=0,type="INC",value=30,name="Duration",keywordFlags=0}}," Hinder "}c["25% chance to Sap Enemies Cannot inflict Shock"]={{}," to Sap Enemies Cannot inflict Shock"}c["+125 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=125,name="Accuracy",keywordFlags=0}},nil}c["15% increased Intelligence"]={{[1]={flags=0,type="INC",value=15,name="Int",keywordFlags=0}},nil}c["You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"]={nil,"You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"}c["30% increased Damage if you've killed a Bleeding Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",keywordFlags=0,name="Damage",value=30}},nil}c["+15 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=15,name="ManaOnHit",keywordFlags=0}},nil}c["130% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEvasion",keywordFlags=0}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire"}c["135% increased Charges used"]={{[1]={flags=0,type="INC",value=135,name="FlaskChargesUsed",keywordFlags=0}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit"}c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,type="BASE",value=2,name="ActiveTrapLimit",keywordFlags=0}},nil}c["10% chance to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit"}c["Adds 1 to 80 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="LightningMax",keywordFlags=0}},nil}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredShockedGround",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 58 to 98 Chaos Damage to Spells"]={{[1]={flags=2,type="BASE",value=58,name="ChaosMin",keywordFlags=0},[2]={flags=2,type="BASE",value=98,name="ChaosMax",keywordFlags=0}},nil}c["+1000 to Spectre maximum Life"]={{[1]={flags=0,type="BASE",value=1000,name="Life",keywordFlags=0}}," Spectre "}c["40% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["Cannot inflict Shock 10% increased Elemental Damage per Sextant affecting the area"]={nil,"Cannot inflict Shock 10% increased Elemental Damage per Sextant affecting the area"}c["125% increased Armour"]={{[1]={flags=0,type="INC",value=125,name="Armour",keywordFlags=0}},nil}c["5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}}," while you have at least 10 Crab Barriers"}c["Projectiles Pierce an additional Target 10% increased Projectile Damage"]={nil,"Projectiles Pierce an additional Target 10% increased Projectile Damage"}c["50% chance to avoid Bleeding 20% increased Movement Speed while you have Cat's Stealth"]={{[1]={flags=0,type="BASE",value=50,name="MovementSpeed",keywordFlags=0}}," to avoid Bleeding 20% increased while you have Cat's Stealth"}c["190% increased Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="EnergyShield",keywordFlags=0}},nil}c["16% increased Totem Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=16384}},nil}c["Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"]={nil,"Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}},nil}c["+2 to Melee Weapon and Unarmed range"]={{[1]={flags=0,type="BASE",value=2,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=2,name="UnarmedRange",keywordFlags=0}},nil}c["Curse Enemies with Socketed Curse Gem on Hit"]={nil,nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=40,name="Accuracy",keywordFlags=0}},nil}c["50% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=50,name="Damage",keywordFlags=0}},nil}c["Cannot inflict Freeze or Chill"]={nil,"Cannot inflict Freeze or Chill"}c["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 20 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportConcentratedEffect",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits refresh their Duration when they Kill an Ignited Enemy"}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterCast",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["90% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["75% reduced Maximum number of Summoned Raging Spirits"]={{}," Maximum number of Summoned Raging Spirits"}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=4,name="LifeOnHit",keywordFlags=0}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-20,name="ElementalResist",keywordFlags=0}},nil}c["+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block"}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently, up to 2000%"}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="ElementalDamageTakenAsChaos",keywordFlags=0}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life"}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["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=1000,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge"}c["45% increased Cold Damage"]={{[1]={flags=0,type="INC",value=45,name="ColdDamage",keywordFlags=0}},nil}c["8% chance to Block Spells while affected by Discipline {variant:14}30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={{[1]={[1]={type="SkillName",skillName="Discipline"},flags=0,type="BASE",value=8,name="SpellBlockChance",keywordFlags=0}}," while affected by{variant:14}30 Energy Shield gained for each Enemy Hit while affected by Discipline"}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["You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"]={nil,"You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"}c["You lose all Spirit Charges when taking a Savage Hit"]={nil,"You lose all Spirit Charges when taking a Savage Hit"}c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"}c["-30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="ColdResist",keywordFlags=0}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ColdResist",keywordFlags=0}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=128}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEvasion",keywordFlags=0}},nil}c["You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"}c["Has 2 Abyssal Sockets 8% increased maximum Life"]={nil,"Has 2 Abyssal Sockets 8% increased maximum Life"}c["25% chance to inflict Brittle"]={{}," to inflict Brittle"}c["35% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=35,name="ElementalDamage",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy"}c["260% increased Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EnergyShield",keywordFlags=0}},nil}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}c["25% chance to Scorch Enemies"]={{}," to Scorch Enemies"}c["Has 1 Abyssal Socket"]={nil,"Has 1 Abyssal Socket"}c["18% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=18,name="Damage",keywordFlags=1048576}},nil}c["+14% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=14,name="ElementalResist",keywordFlags=0}},nil}c["235% increased Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EnergyShield",keywordFlags=0}},nil}c["20% increased Defences"]={{[1]={flags=0,type="INC",value=20,name="Defences",keywordFlags=0}},nil}c["-1 Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["Adds 19 to 34 Chaos Damage to Spells"]={{[1]={flags=2,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=2,type="BASE",value=34,name="ChaosMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 30 Iron Will"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIronWill",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["80% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=80,name="ArmourAndEvasion",keywordFlags=0}},nil}c["10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["+350 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=350,name="Evasion",keywordFlags=0}},nil}c["Adds 21 to 36 Chaos Damage to Spells"]={{[1]={flags=2,type="BASE",value=21,name="ChaosMin",keywordFlags=0},[2]={flags=2,type="BASE",value=36,name="ChaosMax",keywordFlags=0}},nil}c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["+60% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=60,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=100,name="LightningMax",keywordFlags=0}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=60,name="MineLayingSpeed",keywordFlags=0}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-15,name="Damage",keywordFlags=0}},nil}c["+80 to maximum Mana"]={{[1]={flags=0,type="BASE",value=80,name="Mana",keywordFlags=0}},nil}c["Hatred Reserves no Mana"]={nil,"Hatred Reserves no Mana"}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge"}c["40% increased Curse Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=2}},nil}c["Adds 228 to 280 Physical Damage"]={{[1]={flags=0,type="BASE",value=228,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=280,name="PhysicalMax",keywordFlags=0}},nil}c["90% increased Energy Shield"]={{[1]={flags=0,type="INC",value=90,name="EnergyShield",keywordFlags=0}},nil}c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="LightningSpell",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage"]={{[1]={flags=2,type="INC",value=50,name="CritChance",keywordFlags=0}}," per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage"}c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=35,name="ManaRegen",keywordFlags=0}},nil}c["You and Allies deal 15% increased Damage while affected by Auras you Cast"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},name="AffectedByAuraMod",keywordFlags=0}},nil}c["+2 to Level of Socketed Curse Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="curse",value=2},name="GemProperty",keywordFlags=0}},nil}c["+1 to Level of Socketed Curse Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="curse",value=1},name="GemProperty",keywordFlags=0}},nil}c["8% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["Cannot be Knocked Back {variant:1}+150 to maximum Life"]={nil,"Cannot be Knocked Back {variant:1}+150 to maximum Life"}c["140% increased Duration of Ailments you inflict while Focussed"]={{[1]={flags=0,type="INC",value=140,name="Duration",keywordFlags=0}}," of Ailments you inflict while Focussed"}c["You and nearby allies gain 15% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["+15% to Lightning and Chaos Resistances {variant:7}{crafted}+17 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Lightning and s {variant:7}{crafted}+17 to Strength and Dexterity"}c["+15% to Cold and Chaos Resistances {variant:6}{crafted}+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Cold and s {variant:6}{crafted}+15% to Lightning and Chaos Resistances"}c["+35% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=35,name="ElementalResist",keywordFlags=0}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination"}c["+15% to Fire and Chaos Resistances {variant:5}{crafted}+15% to Cold and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Fire and s {variant:5}{crafted}+15% to Cold and Chaos Resistances"}c["+18 to Quality {variant:4}{crafted}+15% to Fire and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",keywordFlags=0}}," Quality {variant:4}{crafted}+15% to Fire and s"}c["+18 to Quality"]={{}," Quality"}c["10% chance for Energy Shield Recharge to start when you use a Skill Eldritch Battery"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",keywordFlags=0}}," for Recharge to start when you use a Skill Eldritch Battery"}c["1% increased Projectile Attack Damage per 200 Accuracy Rating"]={{[1]={[1]={type="PerStat",stat="Accuracy",div=200},flags=1025,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["210% increased Energy Shield"]={{[1]={flags=0,type="INC",value=210,name="EnergyShield",keywordFlags=0}},nil}c["+280 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=280,name="EnergyShield",keywordFlags=0}},nil}c["Minions have 8% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+300 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=300,name="EnergyShield",keywordFlags=0}},nil}c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement"}c["Manifested Dancing Dervish disables both weapon slots"]={{},nil}c["10% increased Cast Speed"]={{[1]={flags=16,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Reflects 5 Physical Damage to Melee Attackers"]={{},nil}c["25% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["Nearby allies Recover 2% of your maximum Life when you Die"]={nil,"Nearby allies Recover 2% of your maximum Life when you Die"}c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies"}c["70% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Mines cannot be Damaged for 5 seconds after being Placed"}c["13% chance to Ignite"]={{[1]={flags=0,type="BASE",value=13,name="EnemyIgniteChance",keywordFlags=0}},nil}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed"]={{[1]={flags=3,type="BASE",value=25,name="Speed",keywordFlags=0}}," to Trigger a Socketed when you Attack with a Bow 15% increased "}c["10% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Damage Penetrates 5% of Enemy Elemental Resistances"]={{[1]={flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["60% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},nil}c["150% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,type="INC",keywordFlags=0,name="Evasion",value=150}},nil}c["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["18% increased Armour"]={{[1]={flags=0,type="INC",value=18,name="Armour",keywordFlags=0}},nil}c["Adds 13 to 28 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=28,name="PhysicalMax",keywordFlags=0}},nil}c["+70 to Dexterity"]={{[1]={flags=0,type="BASE",value=70,name="Dex",keywordFlags=0}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 25 Blessing"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAuraDuration",level=25},name="ExtraSupport",keywordFlags=0}},nil}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight 80% increased Evasion Rating"]={{[1]={flags=0,type="BASE",value=25,name="Evasion",keywordFlags=0}}," to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight 80% increased "}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{}," to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"}c["23% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=23,name="LootRarity",keywordFlags=0}},nil}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited"}c["Skills used by Traps have 20% increased Area of Effect"]={nil,"Skills used by Traps have 20% increased Area of Effect"}c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant"}c["Socketed Gems are Supported by Level 30 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdToFire",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["Gain 15% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"]={{[1]={[1]={type="Condition",varList={[1]="KilledRecently",[2]="TotemsKilledRecently"}},flags=0,type="BASE",value=15,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["+50 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}c["35% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=35,name="ColdDamage",keywordFlags=0}},nil}c["You gain 8% increased Damage for each Trap You gain 8% increased Area of Effect for each Mine 10% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,type="BASE",value=8,name="Damage",keywordFlags=4096}},"% increased for each You gain 8% increased Area of Effect for each Mine 10% Chance for Traps to Trigger an additional time"}c["-10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-10,name="ColdResist",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill"}c["30% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["30% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=0}},nil}c["+1 to Level of Socketed Aura Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="aura",value=1},name="GemProperty",keywordFlags=0}},nil}c["Cannot be Shocked"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}c["Adds 6 to 12 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=6,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=12,name="ColdMax",keywordFlags=0}},nil}c["18% increased Intelligence"]={{[1]={flags=0,type="INC",value=18,name="Int",keywordFlags=0}},nil}c["30% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=30,name="EnergyShield",keywordFlags=0}},nil}c["Minions deal 30% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=25,name="AvoidChilled",keywordFlags=0}},nil}c["50% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=50,name="AvoidFrozen",keywordFlags=0}},nil}c["45% increased Damage"]={{[1]={flags=0,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["+0.5% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=0.5,name="CritChance",keywordFlags=0}},nil}c["+20% chance to be Pierced by Projectiles {variant:2,3}Projectiles Pierce you"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by {variant:2,3}Projectiles Pierce you"}c["-30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="FireResist",keywordFlags=0}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",keywordFlags=0}},nil}c["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="BASE",value=15,name="FireMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="BASE",value=25,name="FireMax",keywordFlags=0}},nil}c["Adds 90 to 180 Cold Damage"]={{[1]={flags=0,type="BASE",value=90,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=180,name="ColdMax",keywordFlags=0}},nil}c["+120 to Armour"]={{[1]={flags=0,type="BASE",value=120,name="Armour",keywordFlags=0}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit"}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice {variant:39}Unaffected by Chilled Ground while affected by Purity of Ice"]={{[1]={[1]={type="SkillName",skillName="Purity of Ice"},flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsCold",keywordFlags=0}}," while affected by{variant:39}Unaffected by Chilled Ground while affected by Purity of Ice"}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["+25 to Armour"]={{[1]={flags=0,type="BASE",value=25,name="Armour",keywordFlags=0}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShield",keywordFlags=0}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",keywordFlags=0}},nil}c["Adds 13 to 31 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=31,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="PhysicalMax",keywordFlags=0}},nil}c["-1 Maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=-1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["+40 Life gained when you Block {variant:2,3}+48 Life gained when you Block"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}}," gained when you Block {variant:2,3}+48 Life gained when you Block"}c["Adds 1 to 4 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=4,name="LightningMax",keywordFlags=0}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ChaosResist",keywordFlags=0}},nil}c["20% increased Damage if you've Killed a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="ActorCondition",actor="enemy",var="Cursed"},flags=0,type="INC",keywordFlags=0,name="Damage",value=20}},nil}c["Minions have 20% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["45% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," with Hits against Rare monsters"}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"}c["+188% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=188,name="CritMultiplier",keywordFlags=0}},nil}c["Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="IgnoreElementalResistances",flags=0}},nil}c["305% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=305,name="Defences",keywordFlags=0}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=125,name="CritMultiplier",keywordFlags=0}},nil}c["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=225,name="CritMultiplier",keywordFlags=0}},nil}c["10% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=5,name="LifeGainAsEnergyShield",keywordFlags=0}},nil}c["Adds 40 to 60 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=60,name="PhysicalMax",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"}c["100% increased Critical Strike Chance against Enemies that are affected"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," against Enemies that are affected"}c["25% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdPenetration",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["+12% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ChaosResist",keywordFlags=0}},nil}c["14% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",keywordFlags=0}},nil}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,type="INC",value=-25,name="ChaosDamageTakenOverTime",keywordFlags=0}},nil}c["Adds 8 to 17 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="PhysicalMax",keywordFlags=0}},nil}c["13% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=0}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"}c["You have Onslaught while not on Low Mana Lose 7% of maximum Mana per Second"]={nil,"You have Onslaught while not on Low Mana Lose 7% of maximum Mana per Second"}c["You gain 8% increased Damage for each Trap"]={{[1]={flags=0,type="BASE",value=8,name="Damage",keywordFlags=4096}},"% increased for each "}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges"}c["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding"}c["5% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy"}c["Your Physical Damage can Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PhysicalCanChill",flags=0}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire"}c["26% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,type="INC",value=26,name="Damage",keywordFlags=0}},nil}c["+6% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=6,name="ElementalResist",keywordFlags=0}},nil}c["4% chance to Block Attack Damage 10% additional Chance to receive a Critical Strike"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}}," Attack Damage 10% additional Chance to receive a Critical Strike"}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=50,name="ColdDamage",keywordFlags=0}}," to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 to s "}c["25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=4,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy"]={{}," to gain a Power Charge on Killing a Frozen Enemy"}c["Adds 1 to 40 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="LightningMax",keywordFlags=0}},nil}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}c["+1 Maximum Power Charge"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},nil}c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="LightningMax",keywordFlags=0}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["+5 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",keywordFlags=0}},nil}c["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=90,name="CritChance",keywordFlags=0}},nil}c["+10 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=10,name="LifeOnHit",keywordFlags=0}},nil}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently"]={nil,"400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently"}c["Adds 3 to 9 Lightning Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=9,name="LightningMax",keywordFlags=0}},nil}c["2% additional Chance to Block Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=2,name="SpellBlockChance",keywordFlags=0}},nil}c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["Triggers Level 20 Blinding Aura when Equipped"]={nil,nil}c["Grants Summon Harbinger of Focus Skill"]={nil,"Grants Summon Harbinger of Focus Skill"}c["+65 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=65,name="EnergyShield",keywordFlags=0}},nil}c["4% Chance to Block Attack Damage while wielding a Staff {variant:3}10% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="BlockChance",value=4}}," Attack Damage {variant:3}10% Chance to Block Attack Damage "}c["17% increased Spell Damage"]={{[1]={flags=2,type="INC",value=17,name="Damage",keywordFlags=0}},nil}c["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack"}c["40% increased Cold Damage with Attack Skills Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}}," with Attack Skills Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"}c["Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={nil,"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"}c["+23 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=23,name="EnergyShield",keywordFlags=0}},nil}c["Has 1 Socket"]={{[1]={flags=0,type="BASE",value=1,name="SocketCount",keywordFlags=0}},nil}c["50% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=200},flags=1025,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=1,type="BASE",value=3,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=1,type="BASE",value=5,name="PhysicalMax",keywordFlags=0}}," per 3 Player Levels"}c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=115,name="ElementalDamage",keywordFlags=0}},nil}c["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["29% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=29,name="CritChance",keywordFlags=0}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life"}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",keywordFlags=0}}," when Hitting Cursed Enemies Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"}c["Adds 27 to 86 Physical Damage"]={{[1]={flags=0,type="BASE",value=27,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=86,name="PhysicalMax",keywordFlags=0}},nil}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-30,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter"]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter"}c["+15 to all Attributes"]={{[1]={flags=0,type="BASE",value=15,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=15,name="Int",keywordFlags=0}},nil}c["You gain Onslaught for 3 seconds on Culling Strike"]={nil,"You gain Onslaught for 3 seconds on Culling Strike"}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["Gain 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["Golem Skills have 30% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=0}},nil}c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=92,name="PhysicalMax",keywordFlags=0}},nil}c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={flags=0,type="INC",value=-25,name="Damage",keywordFlags=0}}," Size Golems Deal 45% less "}c["120% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEvasion",keywordFlags=0}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["When Hit, 30% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=30,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["30% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=30,name="LifeRecoveryRate",keywordFlags=0},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=30,name="ManaRecoveryRate",keywordFlags=0},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=30,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["+1 maximum Energy Shield per 5 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=5},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}},nil}c["+500 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=500,name="Accuracy",keywordFlags=0}},nil}c["Adds 56 to 84 Chaos Damage to Spells"]={{[1]={flags=2,type="BASE",value=56,name="ChaosMin",keywordFlags=0},[2]={flags=2,type="BASE",value=84,name="ChaosMax",keywordFlags=0}},nil}c["Socketed Gems are supported by level 20 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["20% increased Damage with Bows"]={{[1]={flags=8192,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Minions gain Unholy Might for 5 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill"}c["Socketed Gems are supported by level 5 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["37% increased Spell Damage"]={{[1]={flags=2,type="INC",value=37,name="Damage",keywordFlags=0}},nil}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-5,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["26% increased Spell Damage"]={{[1]={flags=2,type="INC",value=26,name="Damage",keywordFlags=0}},nil}c["+18 to maximum Mana"]={{[1]={flags=0,type="BASE",value=18,name="Mana",keywordFlags=0}},nil}c["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=3,name="LifeOnHit",keywordFlags=0}},nil}c["24% increased Spell Damage"]={{[1]={flags=2,type="INC",value=24,name="Damage",keywordFlags=0}},nil}c["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy"}c["25% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["15% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-15,name="Speed",keywordFlags=0}},nil}c["+1 to Level of Socketed Spell Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="spell",value=1},name="GemProperty",keywordFlags=0}},nil}c["30% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="LightningDamage",keywordFlags=0}},nil}c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={flags=0,type="INC",value=30,name="LifeRecoveryRate",keywordFlags=0}}," while affected by Vitality"}c["Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",keywordFlags=0,name="FireMin",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",keywordFlags=0,name="FireMax",value=210}}," to Hits "}c["Increases and Reductions to Light Radius also apply to Accuracy Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",keywordFlags=0,name="FireMin",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",keywordFlags=0,name="FireMax",value=210}},"Increases and Reductions to also apply to Accuracy to Hits "}c["+220 to maximum Life"]={{[1]={flags=0,type="BASE",value=220,name="Life",keywordFlags=0}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"}c["250% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=250,name="Evasion",keywordFlags=0}},nil}c["20% increased Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}},nil}c["Adds 4 to 10 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,type="BASE",value=4,name="FireMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,type="BASE",value=10,name="FireMax",keywordFlags=0}},nil}c["18% increased Fire Damage"]={{[1]={flags=0,type="INC",value=18,name="FireDamage",keywordFlags=0}},nil}c["+2000 to Zombie maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2000,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}}," Enemies to Flee on hit"}c["Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"}c["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded"}c["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=33,name="CritMultiplier",keywordFlags=0}},nil}c["-40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-40,name="ColdResist",keywordFlags=0}},nil}c["Adds 22 to 44 Physical Damage"]={{[1]={flags=0,type="BASE",value=22,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=44,name="PhysicalMax",keywordFlags=0}},nil}c["19% chance to Ignite"]={{[1]={flags=0,type="BASE",value=19,name="EnemyIgniteChance",keywordFlags=0}},nil}c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill"}c["22% chance to Ignite"]={{[1]={flags=0,type="BASE",value=22,name="EnemyIgniteChance",keywordFlags=0}},nil}c["50% increased Burning Damage"]={{[1]={flags=8,type="INC",value=50,name="FireDamage",keywordFlags=0}},nil}c["Adds 6 to 9 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=6,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=9,name="FireMax",keywordFlags=0}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+3000 to Armour during Soul Gain Prevention"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}}," during Soul Gain Prevention"}c["+25% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0}},nil}c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=5,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=10,name="FireMax",keywordFlags=0}},nil}c["+6% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=6,name="ElementalResist",keywordFlags=0}},nil}c["+50 to Intelligence"]={{[1]={flags=0,type="BASE",value=50,name="Int",keywordFlags=0}},nil}c["Adds 251 to 277 Physical Damage"]={{[1]={flags=0,type="BASE",value=251,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=277,name="PhysicalMax",keywordFlags=0}},nil}c["1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius +5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Str",div=10},[2]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamageReduction",value=1}}," on Allocated Passives in Radius +5% to Critical Strike Multiplier on Unallocated Passives in Radius"}c["Converted to Cold Damage"]={nil,"Converted to Cold Damage"}c["20% more chance to Evade Attacks while not on full Energy Shield"]={{[1]={[1]={type="Condition",neg=true,var="FullEnergyShield"},flags=0,type="MORE",value=20,name="EvadeChance",keywordFlags=0}},nil}c["6% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["+33 to Maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",keywordFlags=0}},nil}c["+40 to Maximum Life"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}},nil}c["50% increased Effect of non-Keystone Passive Skills in Radius"]={{[1]={flags=0,type="INC",value=50,name="FlaskEffect",keywordFlags=0}}," of non-Keystone Passive Skills in Radius"}c["+75 to Intelligence"]={{[1]={flags=0,type="BASE",value=75,name="Int",keywordFlags=0}},nil}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage"}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"}c["Flasks apply to your Zombies and Spectres"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"}},value=true,type="FLAG",keywordFlags=0,name="FlasksApplyToMinion",flags=0}},nil}c["Spectres have 100% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=4096}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration"}c["80% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-80,name="TrapDuration",keywordFlags=0}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={flags=0,type="BASE",value=5,name="ElementalDamageGainAsChaos",keywordFlags=0}}," per Shaper Item Equipped"}c["3% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=3,name="LifeRegenPercent",keywordFlags=0}},nil}c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"}c["+1 to Minimum Endurance Charges"]={{}," Minimum Endurance Charges"}c["-40 Physical Damage taken from Attacks 40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"},neg=true},flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks 40% increased Armour "}c["Grace has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Grace"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["20% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=20,name="Duration",keywordFlags=1048576}},nil}c["Determination has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Determination"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["36% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=36,name="MovementSpeed",keywordFlags=0}},nil}c["14% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=14,name="FlaskEffect",keywordFlags=0}},nil}c["10% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Movement Speed"]={{[1]={flags=0,type="INC",value=50,name="MovementSpeed",keywordFlags=0}},nil}c["Nearby Enemies Take 16% increased Elemental Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="ElementalDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["120% increased Critical Strike Chance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}},nil}c["Adds 13 to 23 Cold Damage"]={{[1]={flags=0,type="BASE",value=13,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="ColdMax",keywordFlags=0}},nil}c["1% additional Block Chance while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}},nil}c["8% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["25% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-25,name="FlaskDuration",keywordFlags=0}},nil}c["8% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",keywordFlags=0}},nil}c["30% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-30,name="FlaskDuration",keywordFlags=0}},nil}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=30,name="FlaskManaRecovery",keywordFlags=0}},nil}c["10% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=10,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=10,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=10,name="AvoidIgnite",keywordFlags=0}},nil}c["Cannot be Ignited"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=0}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=150,name="CritMultiplier",keywordFlags=0}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"}c["+10% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,type="BASE",value=10,name="MaxLifeLeechRate",keywordFlags=0}},nil}c["30% increased Cold Damage"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=0}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life"}c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=-40,name="CritChance",keywordFlags=0}},nil}c["You lose all Endurance Charges at maximum Endurance Charges"]={nil,"You lose all Endurance Charges at maximum Endurance Charges"}c["Adds 53 to 76 Chaos Damage"]={{[1]={flags=0,type="BASE",value=53,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="ChaosMax",keywordFlags=0}},nil}c["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"}c["20% more Maximum Physical Attack Damage {variant:2}40% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum {variant:2}40% more Maximum Physical Attack Damage"}c["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum "}c["40% less Minimum Physical Attack Damage {variant:1}20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-40,name="PhysicalDamage",keywordFlags=0}}," Minimum {variant:1}20% more Maximum Physical Attack Damage"}c["20% less Minimum Physical Attack Damage {variant:2}40% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum {variant:2}40% less Minimum Physical Attack Damage"}c["30% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=260,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["60% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},nil}c["+7% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}c["10% of Damage taken from Mana before Life while affected by Clarity {variant:6}Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={type="SkillName",skillName="Clarity"},flags=0,type="BASE",value=10,name="DamageTakenGainAsEnergyShield",keywordFlags=0}}," from Mana before Life while affected by{variant:6}Gain 18% of Maximum Mana while affected by Clarity"}c["Adds 6 to 13 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=6,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=13,name="ColdMax",keywordFlags=0}},nil}c["5% increased Intelligence"]={{[1]={flags=0,type="INC",value=5,name="Int",keywordFlags=0}},nil}c["Adds 25 to 90 Lightning Damage to Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=2,type="BASE",value=25,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=2,type="BASE",value=90,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 34 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=34,name="LightningMax",keywordFlags=0}},nil}c["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=3,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=7,name="ColdMax",keywordFlags=0}},nil}c["30% of Wand Physical Damage Added as Lightning Damage"]={{[1]={flags=524288,type="BASE",value=30,name="PhysicalDamageGainAsLightning",keywordFlags=0}},nil}c["Adds 8 to 16 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=8,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=16,name="FireMax",keywordFlags=0}},nil}c["Minions have 15% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Critical Strike +1 to Maximum Power Charges"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=10,name="PowerChargesMax",keywordFlags=0}}," to gain a Power Charge +1 to "}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun"}c["1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"]={{[1]={[1]={type="PerStat",stat="LowestOfArmourAndEvasion",div=300},flags=1,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,type="BASE",value=320,name="ArmourAndEvasion",keywordFlags=0}},nil}c["7% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=7,name="LootQuantity",keywordFlags=0}},nil}c["+90 to maximum Mana"]={{[1]={flags=0,type="BASE",value=90,name="Mana",keywordFlags=0}},nil}c["12% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=12,name="LootQuantity",keywordFlags=0}},nil}c["50% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=90,name="ManaRegen",keywordFlags=0}},nil}c["Adds 35 to 45 Physical Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="PhysicalMax",keywordFlags=0}},nil}c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=200},flags=0,type="INC",value=55,name="CritChance",keywordFlags=0}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity {variant:9}8% chance to Block while affected by Determination"]={{[1]={[1]={type="SkillName",skillName="Clarity"},flags=0,type="BASE",value=-5,name="ManaCost",keywordFlags=0}}," Total while affected by{variant:9}8% chance to Block while affected by Determination"}c["Gain 8% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=8,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["+45 to Strength"]={{[1]={flags=0,type="BASE",value=45,name="Str",keywordFlags=0}},nil}c["33% increased Physical Damage"]={{[1]={flags=0,type="INC",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["116% increased Spell Damage"]={{[1]={flags=2,type="INC",value=116,name="Damage",keywordFlags=0}},nil}c["+40 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["+88 to maximum Life"]={{[1]={flags=0,type="BASE",value=88,name="Life",keywordFlags=0}},nil}c["Adds 19 to 35 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=19,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=35,name="ColdMax",keywordFlags=0}},nil}c["40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"},neg=true},flags=0,type="INC",value=40,name="Armour",keywordFlags=0}},nil}c["+48% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=48,name="ElementalResist",keywordFlags=0}},nil}c["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="INC",value=100,name="FireDamage",keywordFlags=0}}," with Hits and Ailments "}c["20% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["8% increased Attack Damage"]={{[1]={flags=1,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["1% of Damage Leeched as Mana"]={{[1]={flags=0,type="BASE",value=1,name="DamageManaLeech",keywordFlags=0}},nil}c["-10% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=-10,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=-10,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=-10,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=-10,name="ChaosResistMax",keywordFlags=0}},nil}c["+1 Melee Weapon and Unarmed Range"]={{[1]={flags=0,type="BASE",value=1,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="UnarmedRange",keywordFlags=0}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=75,name="LifeRegen",keywordFlags=0}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=16,name="LightningDamage",keywordFlags=0}},nil}c["+15% to Lightning and Chaos Resistances {variant:5}{crafted}+17 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Lightning and s {variant:5}{crafted}+17 to Strength and Dexterity"}c["+15% to Cold and Chaos Resistances {variant:4}{crafted}+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Cold and s {variant:4}{crafted}+15% to Lightning and Chaos Resistances"}c["Grants Level 22 Precision Skill"]={{[1]={flags=0,type="LIST",value={skillId="AccuracyAndCritsAura",level=22},name="ExtraSkill",keywordFlags=0}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="INC",value=70,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=20,name="AvoidStun",keywordFlags=0}},nil}c["Focus has 25% increased Cooldown Recovery Speed"]={nil,"Focus has 25% increased Cooldown Recovery Speed"}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["+48 to Dexterity"]={{[1]={flags=0,type="BASE",value=48,name="Dex",keywordFlags=0}},nil}c["20% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["12 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=12,name="LifeRegen",keywordFlags=0}},nil}c["Gain Igniting Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="IgnitingConflux"},value=100,type="BASE",keywordFlags=0,name="EnemyIgniteChance",flags=0},[2]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="PhysicalCanIgnite",flags=0},[3]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="LightningCanIgnite",flags=0},[4]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="ColdCanIgnite",flags=0},[5]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="ChaosCanIgnite",flags=0}},nil}c["+48 to Strength"]={{[1]={flags=0,type="BASE",value=48,name="Str",keywordFlags=0}},nil}c["When you Kill a Rare monster, you gain its mods for 20 seconds"]={nil,"When you Kill a Rare monster, you gain its mods for 20 seconds"}c["30% increased Damage against Rare monsters"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," against Rare monsters"}c["+55 to Dexterity"]={{[1]={flags=0,type="BASE",value=55,name="Dex",keywordFlags=0}},nil}c["+55 to Strength"]={{[1]={flags=0,type="BASE",value=55,name="Str",keywordFlags=0}},nil}c["10% chance to Cause Monsters to Flee Enemies you Shock have 30% reduced Cast Speed"]={{[1]={flags=16,type="BASE",value=10,name="Speed",keywordFlags=0}}," to Cause Monsters to Flee Enemies you Shock have 30% reduced "}c["82% increased Spell Damage"]={{[1]={flags=2,type="INC",value=82,name="Damage",keywordFlags=0}},nil}c["-1 Strength per 1 Strength on Allocated Passives in Radius 1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Str",div=1},[2]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",keywordFlags=0,name="Str",value=-1}}," on Allocated Passives in Radius 1% additional Physical Damage Reduction on Allocated Passives in Radius"}c["Chaos Damage can Ignite, Chill and Shock"]={nil,"Chaos Damage can Ignite, Chill and Shock"}c["Critical Strikes do not always Freeze"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CritsDontAlwaysFreeze",flags=0}},nil}c["+500 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=500,name="Evasion",keywordFlags=0}},nil}c["6% increased Spell Damage"]={{[1]={flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["Adds 10 to 20 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=10,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="ColdMax",keywordFlags=0}},nil}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=18,name="CooldownRecovery",keywordFlags=0}},nil}c["5% Chance to Shock"]={{[1]={flags=0,type="BASE",value=5,name="EnemyShockChance",keywordFlags=0}},nil}c["-80 Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles"]={{[1]={flags=0,type="BASE",value=-80,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks 200% increased Armour against Projectiles"}c["+231 to Armour"]={{[1]={flags=0,type="BASE",value=231,name="Armour",keywordFlags=0}},nil}c["15% chance to gain a Power Charge on Throwing a Trap {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap"}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=100,name="CritMultiplier",keywordFlags=0}},nil}c["Golems Deal 45% less Damage"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-45,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["Adds 6 to 9 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=6,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=9,name="ColdMax",keywordFlags=0}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill"}c["20% increased Attack Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["35% increased Physical Damage"]={{[1]={flags=0,type="INC",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=50,name="FlaskChargesGained",keywordFlags=0}},nil}c["30% reduced Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-30,name="FlaskChargesGained",keywordFlags=0}},nil}c["Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["Has 2 Abyssal Sockets Triggers level 20 Death Walk when Equipped"]={nil,"Has 2 Abyssal Sockets Triggers level 20 Death Walk when Equipped"}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow"}c["24% increased Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies Ignited by an Attack Burn 35% faster"]={{[1]={flags=1,type="INC",value=35,name="IgniteBurnFaster",keywordFlags=0}},nil}c["+20% to all Elemental Resistances while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=20,name="ElementalResist",keywordFlags=0}},nil}c["100% increased Spell Damage taken when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,type="INC",value=100,name="DamageTaken",keywordFlags=0}}," when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana"}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield"}c["Your Flasks grant 10% chance to Shock during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}c["Your Flasks grant 10% chance to Freeze during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=0}},nil}c["20% chance to create a Smoke Cloud when you place a Mine or throw a Trap 5% increased Damage for each Trap and Mine you have"]={{[1]={flags=0,type="BASE",value=20,name="Damage",keywordFlags=8192}}," to create a Smoke Cloud when you place a or throw a Trap 5% increased for each Trap and Mine you have"}c["Your Flasks grant 25% reduced Enemy Stun Threshold during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-25,name="EnemyStunThreshold",keywordFlags=0}},nil}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="LightningDamageLifeLeech",keywordFlags=0}},nil}c["1% of maximum Mana gained on Kill Removes 1% of maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill Removes 1% of maximum Life on Kill"}c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ColdDamageLifeLeech",keywordFlags=0}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill Conduit"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill Conduit"}c["10% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=10,name="Evasion",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised"}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["25% increased Light Radius during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["Has 2 Abyssal Sockets Socketed Gems are Supported by Level 20 Elemental Penetration"]={nil,"Has 2 Abyssal Sockets Socketed Gems are Supported by Level 20 Elemental Penetration"}c["+350 to Armour"]={{[1]={flags=0,type="BASE",value=350,name="Armour",keywordFlags=0}},nil}c["Has 1 Abyssal Socket 50% increased Effect of Socketed Jewels"]={nil,"Has 1 Abyssal Socket 50% increased Effect of Socketed Jewels"}c["Stygian Vise League: Abyss"]={nil,"Stygian Vise League: Abyss"}c["10% increased Attributes"]={{[1]={flags=0,type="INC",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=10,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["35% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=35,name="LightningDamage",keywordFlags=0}},nil}c["+50% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="ChaosResist",keywordFlags=0}},nil}c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=30,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["50% Chance to avoid being Stunned during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="AvoidStun",keywordFlags=0}},nil}c["200% increased Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EnergyShield",keywordFlags=0}},nil}c["Cannot be Ignited if Strength is higher than Dexterity Cannot be Shocked if Intelligence is higher than Strength"]={nil,"Cannot be Ignited if Strength is higher than Dexterity Cannot be Shocked if Intelligence is higher than Strength"}c["Cannot be Ignited if Strength is higher than Dexterity"]={nil,"Cannot be Ignited if Strength is higher than Dexterity"}c["320% increased Energy Shield"]={{[1]={flags=0,type="INC",value=320,name="EnergyShield",keywordFlags=0}},nil}c["Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"}c["15% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=15,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"}c["You are Cursed with Level 20 Vulnerability"]={nil,"You are Cursed with Level 20 Vulnerability"}c["You count as on Low Life while you are Cursed with Vulnerability"]={nil,"You count as on Low Life while you are Cursed with Vulnerability"}c["+18% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",keywordFlags=0}},nil}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"}c["Minions gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Rampage 1% increased Rarity of Items found per 15 Rampage Kills"]={nil,"Rampage 1% increased Rarity of Items found per 15 Rampage Kills"}c["5% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=5,name="LootQuantity",keywordFlags=0}},nil}c["Nearby Enemies are Intimidated"]={nil,"Nearby Enemies are Intimidated"}c["You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"]={nil,"You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes"}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"}c["25% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=0}},nil}c["10% of Wand Physical Damage Added as Fire Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing"}c["0.2% of Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,type="BASE",value=0.2,name="DamageManaLeech",keywordFlags=0}},nil}c["25% increased Elemental Damage with Attack Skills per Power Charge +55 to maximum Mana"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=0}}," with Attack Skills +55 to maximum Mana"}c["Socketed Gems are Supported by level 10 Knockback"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportKnockback",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["25% increased maximum Mana"]={{[1]={flags=0,type="INC",value=25,name="Mana",keywordFlags=0}},nil}c["25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=0}}," with Attack Skills "}c["0.2% of Physical Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["+13% to Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",keywordFlags=0}},nil}c["Adds 22 to 33 Cold Damage"]={{[1]={flags=0,type="BASE",value=22,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="ColdMax",keywordFlags=0}},nil}c["+78 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=78,name="EnergyShield",keywordFlags=0}},nil}c["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium"}c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-15,name="EnemyStunThreshold",keywordFlags=0}},nil}c["15% increased Attack and Movement Speed while you have a Bestial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Bestial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"}c["+45 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=45,name="EnergyShield",keywordFlags=0}},nil}c["Adds 60 to 110 Chaos Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=60,name="ChaosMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=110,name="ChaosMax",keywordFlags=0}},nil}c["Grants Perfect Agony during Flask effect"]={nil,"Grants Perfect Agony during Flask effect"}c["Cannot be Blinded 25% chance to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 25% chance to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"}c["1% increased Damage per 8 Strength when in Main Hand"]={{[1]={[1]={type="PerStat",stat="Str",div=8},[2]={type="SlotNumber",num=1},flags=0,type="INC",keywordFlags=0,name="Damage",value=1}},nil}c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=18,name="AreaOfEffect",keywordFlags=0}},nil}c["Adds 60 to 110 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=60,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=110,name="FireMax",keywordFlags=0}},nil}c["Counts as Dual Wielding"]={{[1]={value={key="countsAsDualWielding",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["Projectiles Pierce an additional Target"]={nil,"Projectiles Pierce an additional Target"}c["Socketed Gems are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIncreasedAreaOfEffect",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["625% increased Armour"]={{[1]={flags=0,type="INC",value=625,name="Armour",keywordFlags=0}},nil}c["28% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-28,name="Speed",keywordFlags=0}},nil}c["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Vulnerability"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredBoneNova",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-25,name="Speed",keywordFlags=0}},nil}c["200% increased Armour"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}},nil}c["Adds 375 to 550 Fire Damage"]={{[1]={flags=0,type="BASE",value=375,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=550,name="FireMax",keywordFlags=0}},nil}c["Elemental Status Ailments are removed when you reach Low Life"]={nil,"Elemental Status Ailments are removed when you reach Low Life"}c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={flags=0,type="BASE",value=100,name="FireResist",keywordFlags=0}}," when Socketed with a Red Gem"}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",keywordFlags=0}}," when Hitting Cursed Enemies"}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-40,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["Attacks Cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=0}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="Mana",keywordFlags=0}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," gained for each Ignited Enemy hit by your Attacks"}c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit"}c["Cannot Evade Enemy Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotEvade",flags=0}},nil}c["40% faster start of Energy Shield Recharge while affected by Discipline {variant:17}+8% chance to Evade Attacks while affected by Grace"]={{[1]={[1]={type="SkillName",skillName="Discipline"},flags=0,type="INC",value=40,name="EnergyShieldRechargeFaster",keywordFlags=0}}," while affected by{variant:17}+8% chance to Evade Attacks while affected by Grace"}c["320% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=320,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Rampage 2% increased Area of Effect per 25 Rampage Kills"]={nil,"Rampage 2% increased Area of Effect per 25 Rampage Kills"}c["35% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=35,name="LootRarity",keywordFlags=0}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger {variant:5}10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={[1]={type="SkillName",skillName="Anger"},flags=0,type="BASE",value=40,name="PhysicalDamageConvertToFire",keywordFlags=0}}," while affected by{variant:5}10% of Damage taken from Mana before Life while affected by Clarity"}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded"}c["10% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["100% increased Damage with Ignites inflicted on Chilled Enemies 25% Chance to Ignite when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=100,name="Damage",keywordFlags=0}}," with Ignites inflicted on Chilled Enemies 25% Chance to Ignite "}c["6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}},nil}c["10% Chance to Block Attack Damage while wielding a Staff 80% increased Critical Strike Chance for Spells"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," Attack Damage 80% increased Critical Strike Chance "}c["4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,type="INC",value=4,name="Damage",keywordFlags=0}},nil}c["+10 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}},nil}c["14% increased Totem Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=16384}},nil}c["20% chance to attack with Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredMoltenStrike",level=16},name="ExtraSkill",keywordFlags=0}},nil}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy"}c["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=0}},nil}c["Adds 40 to 85 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=85,name="PhysicalMax",keywordFlags=0}},nil}c["100% increased Effect of Buffs granted by your Elemental Golems"]={{[1]={[1]={type="SkillType",skillType=62},[2]={type="SkillType",skillType=33},flags=0,type="INC",keywordFlags=0,name="BuffEffect",value=100},[2]={[1]={type="SkillType",skillType=62},[2]={type="SkillType",skillType=34},flags=0,type="INC",keywordFlags=0,name="BuffEffect",value=100},[3]={[1]={type="SkillType",skillType=62},[2]={type="SkillType",skillType=35},flags=0,type="INC",keywordFlags=0,name="BuffEffect",value=100}},nil}c["+18% to Quality {variant:8}{crafted}16% increased Attack Speed"]={{[1]={flags=1,type="BASE",value=18,name="Speed",keywordFlags=0}}," Quality {variant:8}{crafted}16% increased "}c["60% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=60,name="PoisonChance",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."}c["+35% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=35,name="ColdResist",keywordFlags=0}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect"}c["Adds 45 to 90 Physical Damage"]={{[1]={flags=0,type="BASE",value=45,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="PhysicalMax",keywordFlags=0}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill"]={nil,nil}c["15% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=15,name="AuraEffect",keywordFlags=0}},nil}c["+23% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=23,name="LightningResist",keywordFlags=0}},nil}c["+95 to maximum Life"]={{[1]={flags=0,type="BASE",value=95,name="Life",keywordFlags=0}},nil}c["+23 to Strength"]={{[1]={flags=0,type="BASE",value=23,name="Str",keywordFlags=0}},nil}c["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["+5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=5,name="ElementalResist",keywordFlags=0}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Minions have 4% Chance to Block"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% increased Damage taken from Skeletons"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Skeletons"}c["+15% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ElementalResist",keywordFlags=0}},nil}c["0.4% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.4,name="DamageLifeLeech",keywordFlags=0}},nil}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill"}c["Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"]={nil,"Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies Take 200 Physical Damage when you use a Movement Skill"]={nil,"Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies Take 200 Physical Damage when you use a Movement Skill"}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike"}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"}c["Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"]={nil,"Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"}c["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity"}c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"}c["Has 2 Abyssal Sockets"]={nil,"Has 2 Abyssal Sockets"}c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["Causes Bleeding on Melee Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}c["15% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["Adds 10 to 21 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="PhysicalMax",keywordFlags=0}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageGainAsFire",keywordFlags=0}}," while affected by Anger"}c["Attacks have Blood Magic"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=1}},nil}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine"}c["1.2% of Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=1.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["Adds 330 to 480 Cold Damage"]={{[1]={flags=0,type="BASE",value=330,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=480,name="ColdMax",keywordFlags=0}},nil}c["Adds 14 to 28 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=14,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=28,name="FireMax",keywordFlags=0}},nil}c["150% increased Elemental Damage if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="INC",value=150,name="ElementalDamage",keywordFlags=0}},nil}c["15% increased Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["+25% additional Block Chance against Projectiles"]={{[1]={flags=0,type="BASE",value=25,name="BlockChance",keywordFlags=0}}," against Projectiles"}c["80% increased Energy Shield"]={{[1]={flags=0,type="INC",value=80,name="EnergyShield",keywordFlags=0}},nil}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=50,name="ManaCost",keywordFlags=0}},nil}c["Converted to Cold Damage With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"Converted to Cold Damage With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"}c["Gain a Spirit Charge every second"]={nil,"Gain a Spirit Charge every second"}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges"}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["With at least 40 Intelligence in Radius, Spark fires 2 additional Projectiles"]={nil,"With at least 40 Intelligence in Radius, Spark fires 2 additional Projectiles"}c["Adds 60 to 150 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="PhysicalMax",keywordFlags=0}},nil}c["40% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["8% reduced Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-8,name="ElementalDamageTaken",keywordFlags=0}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown"}c["Adds 70 to 165 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=165,name="PhysicalMax",keywordFlags=0}},nil}c["You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"]={nil,"You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"}c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={flags=0,type="INC",value=2,name="Speed",keywordFlags=0}}," Minion per Skeleton you own"}c["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike"}c["20% less chance to Evade Melee Attacks"]={{[1]={flags=0,type="MORE",value=-20,name="MeleeEvadeChance",keywordFlags=0}},nil}c["Cannot Leech {variant:3,4}Cannot Leech Life"]={nil,"Cannot Leech {variant:3,4}Cannot Leech Life"}c["Adds 5 to 10 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 7 to 15 Physical Damage"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,type="LIST",value={skillId="LightningWarp",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 9 to 17 Physical Damage"]={{[1]={flags=0,type="BASE",value=9,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="PhysicalMax",keywordFlags=0}},nil}c["60% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=60,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["Adds 13 to 21 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="PhysicalMax",keywordFlags=0}},nil}c["+1% to Critical Strike Chance while affected by Aspect of the Cat Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={{[1]={flags=0,type="BASE",value=1,name="CritChance",keywordFlags=0}}," while affected by Aspect of the Cat Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"}c["15% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["+6 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=6,name="LifeOnKill",keywordFlags=0}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-30,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken"}c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,type="INC",keywordFlags=0,name="Evasion",value=50}},nil}c["Hits deal 20% increased Damage against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=4,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Adds 15 to 30 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 12 to 22 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["360% increased Physical Damage"]={{[1]={flags=0,type="INC",value=360,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 270 to 315 Cold Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=270,name="ColdMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=315,name="ColdMax",keywordFlags=0}},nil}c["20% of Physical Damage gained as Extra Chaos Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["Adds 19 to 35 Fire Damage"]={{[1]={flags=0,type="BASE",value=19,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=0}},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["8% increased Cast Speed"]={{[1]={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}c["15% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["100% increased Damage with Ignites inflicted on Chilled Enemies"]={{[1]={flags=0,type="INC",value=100,name="Damage",keywordFlags=0}}," with Ignites inflicted on Chilled Enemies"}c["Enemies Chilled by you take 40% increased Burning Damage"]={{[1]={[1]={type="ActorCondition",var="Chilled",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="FireDamageTakenOverTime",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["40% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",keywordFlags=0}},nil}c["Adds 285 to 330 Cold Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=285,name="ColdMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=330,name="ColdMax",keywordFlags=0}},nil}c["Adds 190 to 220 Cold Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=190,name="ColdMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=220,name="ColdMax",keywordFlags=0}},nil}c["20% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="EnergyShield",keywordFlags=0}},nil}c["Adds 285 to 330 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=285,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=330,name="FireMax",keywordFlags=0}},nil}c["Adds 237 to 272 Fire Damage"]={{[1]={flags=0,type="BASE",value=237,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=272,name="FireMax",keywordFlags=0}},nil}c["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={nil,"Hits ignore Enemy Monster Fire Resistance while you are Ignited"}c["Spectres have a Base Duration of 20 seconds"]={nil,"a Base Duration of 20 seconds"}c["50% less Damage to surrounding targets 20% increased Area of Effect of Area Skills"]={{[1]={flags=512,type="MORE",value=-50,name="Damage",keywordFlags=0}}," to surrounding targets 20% increased of Effect of Area Skills"}c["Golems have 45% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=45,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 10 to 23 Fire Damage"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="FireMax",keywordFlags=0}},nil}c["Minions have 60% chance to Poison Enemies on Hit Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},flags=4,type="BASE",value=60,name="DamageLifeLeech",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," to Pois on Hit Minions Leech 5% of "}c["10% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Adds 15 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["5% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},nil}c["15% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=15,name="ProjectileSpeed",keywordFlags=0}},nil}c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Gain a Frenzy Charge if an Attack Ignites an Enemy"}c["With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy {variant:2,3}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 deals 2% increased Damage with Hits and Poison for each Poison on the Enemy {variant:2,3}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 a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"]={nil,"With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"}c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled"}c["+1 to Minimum Power Charges {variant:11}{crafted}+1 to Minimum Endurance Charges"]={{}," Minimum Power Charges {variant:11}{crafted}+1 to Minimum Endurance Charges"}c["Projectile Critical Strike Chance increased by Arrow Pierce Chance"]={{[1]={[1]={type="PerStat",stat="PierceChance",div=1},value=1,type="INC",keywordFlags=0,name="CritChance",flags=1024}},nil}c["+30 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="LifeOnKill",keywordFlags=0}},nil}c["Adds 40 to 60 Cold Damage against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="BASE",value=40,name="ColdMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="BASE",value=60,name="ColdMax",keywordFlags=0}},nil}c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,type="BASE",value=50,name="EnemyShockChance",keywordFlags=0}}," Chilled Enemies"}c["Temporal Chains has 100% reduced Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMeleePhysicalDamage",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["17% increased Strength"]={{[1]={flags=0,type="INC",value=17,name="Str",keywordFlags=0}},nil}c["30% increased Effect of non-Damaging Ailments on Enemies {variant:8}{crafted}Shock nearby Enemies for 4 Seconds when you Focus"]={{[1]={flags=0,type="INC",value=30,name="FlaskEffect",keywordFlags=0}}," of non-Damaging Ailments {variant:8}{crafted}Shock nearby Enemies for 4 Seconds when you Focus"}c["30% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=30,name="FlaskEffect",keywordFlags=0}}," of non-Damaging Ailments "}c["200% increased Armour and Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=200,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life"}c["Grants Summon Harbinger of Directions Skill"]={nil,"Grants Summon Harbinger of Directions Skill"}c["+17 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=17,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="Int",keywordFlags=0}},nil}c["100% increased Attack Speed"]={{[1]={flags=1,type="INC",value=100,name="Speed",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"}c["+17 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=17,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="Dex",keywordFlags=0}},nil}c["+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Lightning and s"}c["1% of Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="ManaRegenPercent",keywordFlags=0}},nil}c["+15% to Cold and Chaos Resistances {variant:3}{crafted}+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Cold and s {variant:3}{crafted}+15% to Lightning and Chaos Resistances"}c["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=900,name="CritChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["+0.3% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=0.3,name="CritChance",keywordFlags=0}},nil}c["30% increased Burning Damage"]={{[1]={flags=8,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",keywordFlags=0,name="LightningMin",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=1,type="BASE",keywordFlags=0,name="LightningMax",value=10}},nil}c["15 Life Regenerated per second for each Uncorrupted Item Equipped"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}}," for each Uncorrupted Item Equipped"}c["Adds 80 to 375 Physical Damage"]={{[1]={flags=0,type="BASE",value=80,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=375,name="PhysicalMax",keywordFlags=0}},nil}c["+300 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=300,name="IntRequirement",keywordFlags=0}},nil}c["+600 Strength and Intelligence Requirement +10 to maximum Divine Charges"]={{[1]={flags=0,type="BASE",value=600,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="Int",keywordFlags=0}}," Requirement +10 to maximum Divine Charges"}c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges"}c["+13% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=13,name="FireResist",keywordFlags=0}},nil}c["100% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonSpider",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["16% increased Intelligence"]={{[1]={flags=0,type="INC",value=16,name="Int",keywordFlags=0}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds"}c["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life"}c["40% increased Damage against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask 20% chance to Freeze, Shock and Ignite while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask 20% chance to Freeze, Shock and Ignite while using a Flask"}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack"}c["30% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=30,name="BlockChanceConv",keywordFlags=0}},nil}c["Unaffected by Temporal Chains"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Chain +1 times"}c["Your Curses can apply to Hexproof Enemies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CursesIgnoreHexproof",flags=0}},nil}c["Temporal Chains has 30% reduced Effect on You"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="INC",value=-30,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=50,name="LifeOnHit",keywordFlags=0}},nil}c["Adds 10 to 20 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=20,name="ColdMax",keywordFlags=0}},nil}c["50% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=50,name="FlaskChargesGained",keywordFlags=0}},nil}c["Chaos Damage does not bypass Energy Shield"]={nil,"Chaos Damage does not bypass Energy Shield"}c["+13% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=13,name="ChaosResist",keywordFlags=0}},nil}c["+3 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=3,name="ManaOnHit",keywordFlags=0}},nil}c["Enemies you Curse have -15% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=-15,name="ChaosResist",keywordFlags=0}},name="AffectedByCurseMod",keywordFlags=0}},nil}c["20% increased Attack Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," while affected by Discipline"}c["Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther Projectile Critical Strike Chance increased by Arrow Pierce Chance"]={nil,"Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther Projectile Critical Strike Chance increased by Arrow Pierce Chance"}c["1% of Damage is taken from Mana before Life per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=1,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["15% increased Strength"]={{[1]={flags=0,type="INC",value=15,name="Str",keywordFlags=0}},nil}c["6% increased Fire Damage"]={{[1]={flags=0,type="INC",value=6,name="FireDamage",keywordFlags=0}},nil}c["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=60,name="LifeOnHit",keywordFlags=0}},nil}c["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="LifeOnHit",keywordFlags=0}},nil}c["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["50% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-50,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances"]={nil,"Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances"}c["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,type="INC",value=18,name="Duration",keywordFlags=256}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={flags=0,type="BASE",value=70,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=104,name="ColdMax",keywordFlags=0}}," while affected by Hatred"}c["200% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"}c["Projectiles Pierce 6 additional Targets"]={nil,"Projectiles Pierce 6 additional Targets"}c["3% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Can't use other Rings"]={nil,"Can't use other Rings"}c["+12 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["You and Allies affected by your Auras have +20% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="ElementalResist",keywordFlags=0}},name="AffectedByAuraMod",keywordFlags=0}},nil}c["0.5% of Energy Shield Regenerated per second for each Enemy you've Killed Recently Cannot Be Stunned while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="BASE",value=0.5,name="EnergyShieldRegenPercent",keywordFlags=0}}," for each Enemy you've Killed Recently Cannot Be Stunned "}c["+250 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=250,name="Evasion",keywordFlags=0}},nil}c["Adds 9 to 18 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=9,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="ColdMax",keywordFlags=0}},nil}c["20% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=50,name="AvoidChilled",keywordFlags=0}},nil}c["Grants Summon Harbinger of Time Skill"]={nil,"Grants Summon Harbinger of Time Skill"}c["+15% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["+47 to maximum Mana"]={{[1]={flags=0,type="BASE",value=47,name="Mana",keywordFlags=0}},nil}c["70% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=70,name="LootRarity",keywordFlags=0}},nil}c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="Accuracy",keywordFlags=0}},nil}c["Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use"}c["30% increased Elemental Damage with Attack Skills {variant:1}+15% to all Elemental Resistances"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:1}+15% to all Elemental Resistances"}c["10% reduced Charges used"]={{[1]={flags=0,type="INC",value=-10,name="FlaskChargesUsed",keywordFlags=0}},nil}c["+4% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=4,name="FireResistMax",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=4,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=4,name="LightningResistMax",keywordFlags=0}},nil}c["+25% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},nil}c["Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 10 seconds on Kill"}c["2 additional Arrows"]={{[1]={flags=1,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"]={nil,"Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use"}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,type="LIST",value={skillId="MerveilWarp",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies 20% chance to Maim on Hit"]={{[1]={flags=1,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," against Maimed Enemies 20% chance to Maim on Hit"}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=43,name="ManaRegen",keywordFlags=0}},nil}c["Your Lightning Damage can Ignite"]={nil,"Your Lightning Damage can Ignite"}c["6% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=8,type="INC",value=6,name="FireDamage",keywordFlags=0}}," for each Enemy you have Shocked Recently"}c["Right ring slot: Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce"}c["Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrapAndMineDamage",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells cannot Fork"}c["Temporal Chains has 50% reduced Effect on You"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="INC",value=-50,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["Skills Chain +1 times"]={{[1]={flags=0,type="BASE",value=1,name="ChainCountMax",keywordFlags=0}},nil}c["4% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}},nil}c["2% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=2,name="AttackDodgeChance",keywordFlags=0}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={flags=1,type="INC",value=22,name="Speed",keywordFlags=0}}," while a Rare or Unique Enemy is Nearby"}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["Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells Fork"}c["Left ring slot: Projectiles from Spells cannot Chain {variant:2}Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells cannot Chain {variant:2}Left ring slot: Projectiles from Spells Fork"}c["Left ring slot: Projectiles from Spells cannot Chain"]={nil,"Projectiles from Spells cannot Chain"}c["Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life 20% chance to double Stun Duration"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life 20% chance to double Stun Duration"}c["Gain 24% of Physical Damage as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,type="BASE",value=24,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets"}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}c["20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="MORE",value=20,name="Damage",keywordFlags=0}},nil}c["+75 to all Attributes"]={{[1]={flags=0,type="BASE",value=75,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=75,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=75,name="Int",keywordFlags=0}},nil}c["+2 to Level of Socketed Cold Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="cold",value=2},name="GemProperty",keywordFlags=0}},nil}c["+40% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=40,name="CritMultiplier",keywordFlags=0}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-40,name="ElementalDamageTaken",keywordFlags=0}}," Reflected {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken"}c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-40,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["10% chance to Dodge Spell Damage while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=50,name="CooldownRecovery",keywordFlags=4}},nil}c["Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=15,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=28,name="FireMax",keywordFlags=0}},nil}c["275% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=275,name="Damage",keywordFlags=0}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-40,name="ChaosDamageTaken",keywordFlags=0}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level"}c["Left ring slot: 40 Mana Regenerated per second"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="BASE",value=40,name="ManaRegen",keywordFlags=0}},nil}c["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=35,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="PhysicalMax",keywordFlags=0}}," per Siphoning Charge"}c["Right ring slot: +100 to maximum Mana"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["Right ring slot: 3% of Energy Shield Regenerated per second"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=3,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Adds 25 to 36 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="FireMax",keywordFlags=0}},nil}c["Right ring slot: 4% of Energy Shield Regenerated per second"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=4,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Right ring slot: You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second"]={nil,"You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second"}c["Attacks Chain an additional time when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},value=1,type="BASE",keywordFlags=0,name="ChainCountMax",flags=1}},nil}c["+2 to Level of Socketed Golem Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="golem",value=2},name="GemProperty",keywordFlags=0}},nil}c["210% increased Armour"]={{[1]={flags=0,type="INC",value=210,name="Armour",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 12 Lesser Multiple Projectiles"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLesserMultipleProjectiles",level=12},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 12 to 30 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=12,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="FireMax",keywordFlags=0}},nil}c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill"}c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["Purity of Ice Reserves no Mana {variant:9}Clarity Reserves no Mana"]={nil,"Purity of Ice Reserves no Mana {variant:9}Clarity Reserves no Mana"}c["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"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}}," of non-Damaging Ailments per Elder Item Equipped Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-20,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["350% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=350,name="Evasion",keywordFlags=0}},nil}c["18% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-6,name="ManaCost",keywordFlags=0}},nil}c["8% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,type="BASE",value=8,name="DamageTaken",keywordFlags=0}}," gained as Mana over 4 seconds when Hit"}c["6 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="ManaRegen",keywordFlags=0}},nil}c["Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=40,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=100,name="ColdMax",keywordFlags=0}},nil}c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=55,name="ManaRegen",keywordFlags=0}},nil}c["70% increased Physical Damage"]={{[1]={flags=0,type="INC",value=70,name="PhysicalDamage",keywordFlags=0}},nil}c["2% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,type="INC",value=2,name="Int",keywordFlags=0}},nil}c["+100 to Maximum Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"]={nil,"30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"}c["+50% to all Elemental Resistances during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="ElementalResist",keywordFlags=0}},nil}c["160% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEvasion",keywordFlags=0}},nil}c["24% increased Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ColdDamage",keywordFlags=0}},nil}c["Regenerate 8 Life over 1 second for each Spell you Cast"]={nil,"Regenerate 8 Life over 1 second for each Spell you Cast"}c["+13% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 16 Increased Minion Speed"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMinionSpeed",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["+30 to Intelligence"]={{[1]={flags=0,type="BASE",value=30,name="Int",keywordFlags=0}},nil}c["2% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Socketed Golem Skills have 20% increased Attack and Cast Speed"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["12% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=12,name="MineLayingSpeed",keywordFlags=0}},nil}c["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect"}c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-10,name="EnergyShield",keywordFlags=0}},nil}c["10% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["15% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-15,name="Life",keywordFlags=0}},nil}c["+18% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,type="LIST",value={skillId="SummonVoidSphere",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"]={{[1]={[1]={type="StatThreshold",upper=true,stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",upper=true,stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="INC",keywordFlags=0,name="LightningDamageTaken",value=-10},[2]={[1]={type="StatThreshold",upper=true,stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",upper=true,stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="INC",keywordFlags=0,name="ColdDamageTaken",value=-10},[3]={[1]={type="StatThreshold",upper=true,stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",upper=true,stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="INC",keywordFlags=0,name="FireDamageTaken",value=-10}},nil}c["Every 10 seconds, gain 100% increased Elemental Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestruction"},flags=0,type="INC",value=100,name="ElementalDamage",keywordFlags=0}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item"}c["80% increased Spell Damage if your other Ring is an Elder Item Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={{[1]={flags=2,type="INC",value=80,name="Damage",keywordFlags=0}}," if your other Ring is an Elder Item Cannot be Stunned by Spells if your other Ring is a Shaper Item"}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["80% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={flags=2,type="INC",value=80,name="Damage",keywordFlags=0}}," if your other Ring is an Elder Item"}c["+100 to Maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["6% increased Maximum Life for each Equipped Corrupted Item Corrupted"]={{[1]={flags=0,type="INC",value=6,name="Life",keywordFlags=0}}," for each Equipped Corrupted Item Corrupted"}c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=12,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=12,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Minions have 8% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=8,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["28% increased Attack Speed"]={{[1]={flags=1,type="INC",value=28,name="Speed",keywordFlags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry"}c["2 Additional Arrows"]={{[1]={flags=1,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["25% chance to create Consecrated Ground when Hit, lasting 8 seconds"]={{}," to create Consecrated Ground when Hit, lasting 8 seconds"}c["Adds 29 to 45 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=29,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=45,name="ColdMax",keywordFlags=0}},nil}c["25% increased Defences"]={{[1]={flags=0,type="INC",value=25,name="Defences",keywordFlags=0}},nil}c["Adds 4 to 12 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="LifeGainAsEnergyShield",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item"}c["40% increased Movement Speed"]={{[1]={flags=0,type="INC",value=40,name="MovementSpeed",keywordFlags=0}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={{[1]={flags=1,type="INC",value=80,name="Damage",keywordFlags=0}}," if your other Ring is a Shaper Item Cannot be Stunned by Attacks if your other Ring is an Elder Item"}c["Mana Reservation of Herald Skills is always 45%"]={nil,"Mana Reservation of Herald Skills is always 45%"}c["Adds 32 to 48 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=32,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=48,name="ColdMax",keywordFlags=0}},nil}c["Adds 4 to 14 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-25,name="FlaskEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," Elemental Equilibrium "}c["Can Allocate Passives from the Witch's starting point"]={{},nil}c["100% reduced Conductivity Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Conductivity"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{}," Maximum Siphoning Charges per Elder or Shaper Item Equipped"}c["Socketed Gems have Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect"]={nil,"Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect"}c["6% chance to Dodge Attacks while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["+50 to Total Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=50,name="ManaCost",keywordFlags=0}}," Total "}c["All Sockets are White"]={nil,"All Sockets are White"}c["14% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"}c["+100% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White"]={{[1]={flags=0,type="BASE",value=100,name="LightningResist",keywordFlags=0}}," when Socketed with a Blue Gem All Sockets are White"}c["Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit"}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["+100% to Fire Resistance when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,type="BASE",value=100,name="FireResist",keywordFlags=0}}," when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"}c["+1% Chance to Block Attack Damage per 50 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=50},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}}," Attack Damage "}c["+23% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=23,name="ChaosResist",keywordFlags=0}},nil}c["7% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=7,name="MovementSpeed",keywordFlags=0}},nil}c["-25% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-25,name="ElementalResist",keywordFlags=0}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies"}c["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you"}c["8% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}c["40% increased Energy Shield from equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=40,name="EnergyShield",keywordFlags=0}},nil}c["Adds 70 to 350 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=350,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Adds 36 to 360 Physical Damage"]={{[1]={flags=0,type="BASE",value=36,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=360,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Attack and Cast Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["Adds 84 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=84,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 75 to 130 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=130,name="PhysicalMax",keywordFlags=0}},nil}c["270% increased Physical Damage"]={{[1]={flags=0,type="INC",value=270,name="PhysicalDamage",keywordFlags=0}},nil}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-20,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["1 Life Regenerated per second per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="LifeRegen",keywordFlags=0}},nil}c["4% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 50 Cold Damage to Melee Attackers"}c["0.4% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=0.4,name="LifeRegenPercent",keywordFlags=0}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["100% increased Mine Arming Speed"]={{}," Arming Speed"}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems"}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["13 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=13,name="LifeRegen",keywordFlags=0}},nil}c["18% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="PowerChargesDuration",keywordFlags=0}},nil}c["5% increased Damage for each Trap and Mine you have Damage Penetrates 6% Elemental Resistances if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="INC",value=5,name="Damage",keywordFlags=4096}}," for each and Mine you have Damage Penetrates 6% Elemental Resistances "}c["6% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["30% increased Fire Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 20 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportSpellTotem",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=22,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=0}},nil}c["Poison Cursed Enemies on hit"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},nil}c["Adds 75 to 225 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=2,type="BASE",value=75,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="Unarmed"},flags=2,type="BASE",value=225,name="LightningMax",keywordFlags=0}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=25,name="LifeOnHit",keywordFlags=0}},nil}c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=33,name="CritChance",keywordFlags=0}},nil}c["40% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ColdDamage",keywordFlags=0}},nil}c["Golems have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["5% additional Block Chance while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"}c["Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"}c["Adds an additional Arrow"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=1}},nil}c["40% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=40,name="ManaReserved",keywordFlags=0}},nil}c["8% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=8,name="FlaskDuration",keywordFlags=0}},nil}c["400% increased Energy Shield Recharge Rate during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=400,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["Socketed Gems Reserve No Mana"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value=-100,type="MORE",keywordFlags=0,name="ManaReserved",flags=0}},nil}c["20% increased Fire Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=0}},nil}c["80% less Burning Damage"]={{[1]={flags=8,type="MORE",value=-80,name="FireDamage",keywordFlags=0}},nil}c["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FirePenetration",keywordFlags=0}},nil}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IgniteCanStack",flags=0}},nil}c["Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",value=15,name="FirePenetration",keywordFlags=0}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"}c["Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"}c["Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently {variant:2}200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"]={nil,"400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently {variant:2}200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"}c["Socketed Gems are Supported by level 30 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMulticast",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["+50 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=50,name="Evasion",keywordFlags=0}},nil}c["Socketed Gems fire an additional Projectile"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value={mod={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=0}},type="LIST",keywordFlags=0,name="ExtraSkillMod",flags=0}},nil}c["+280 to Armour"]={{[1]={flags=0,type="BASE",value=280,name="Armour",keywordFlags=0}},nil}c["15% increased Burning Damage"]={{[1]={flags=8,type="INC",value=15,name="FireDamage",keywordFlags=0}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=325,name="Accuracy",keywordFlags=0}},nil}c["Adds 35 to 130 Lightning Damage to Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,type="BASE",value=35,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=1,type="BASE",value=130,name="LightningMax",keywordFlags=0}},nil}c["You have Phasing while affected by Haste"]={nil,"You have Phasing while affected by Haste"}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill"}c["20% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["+135 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=135,name="EnergyShield",keywordFlags=0}},nil}c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=40,name="LightningDamageConvertToCold",keywordFlags=0}},nil}c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="vaal",value=2},name="GemProperty",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,type="LIST",value={skillId="TentacleSmash",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Cannot be Stunned if you've Killed Recently"]={nil,"Cannot be Stunned if you've Killed Recently"}c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers"}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportConcentratedEffect",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,type="BASE",value=200,name="Accuracy",keywordFlags=0}},nil}c["Socketed Golem Skills have 5% Life Regenerated per second"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Adds 14 to 28 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=14,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=28,name="ColdMax",keywordFlags=0}},nil}c["20% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["8% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=8,name="LifeLeechRate",keywordFlags=0}},nil}c["Warcries Knock Enemies Back in an Area"]={nil,"Warcries Knock Enemies Back in an Area"}c["You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect"}c["75% reduced Effect of Chill on You {variant:1}100% increased Ignite Duration on You"]={{[1]={flags=0,type="INC",value=-75,name="FlaskEffect",keywordFlags=0}}," of Chill on You {variant:1}100% increased Ignite Duration on You"}c["Adds 10 to 20 Fire Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=1,type="BASE",value=20,name="FireMax",keywordFlags=0}},nil}c["25% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}},nil}c["+20 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0}},nil}c["Chaos Damage does not bypass Energy Shield during effect"]={nil,"Chaos Damage does not bypass Energy Shield during effect"}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=30,name="PoisonChance",keywordFlags=0}},nil}c["Adds 30 to 95 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=95,name="PhysicalMax",keywordFlags=0}},nil}c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,type="BASE",value=40,name="PhysicalDamage",keywordFlags=0}}," taken reflected to Attacker"}c["45% increased Physical Damage"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamage",keywordFlags=0}},nil}c["Non-critical strikes deal 25% Damage"]={{[1]={[1]={type="Condition",neg=true,var="CriticalStrike"},flags=4,type="MORE",value=-75,name="Damage",keywordFlags=0}},nil}c["Melee Attacks cause Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}c["24% increased Elemental Damage with Attack Skills {variant:2,3,4}Adds 12 to 20 Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:2,3,4}Adds 12 to 20 Physical Damage"}c["Adds 15 to 30 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=15,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="ColdMax",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ManaOnHit",keywordFlags=0}},nil}c["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality"}c["Adds 1 to 4 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=4,name="PhysicalMax",keywordFlags=0}},nil}c["50% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="SupportUniqueMjolnerLightningSpellsCastOnHit",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["28% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=28,name="LightningDamage",keywordFlags=0}},nil}c["Adds 23 to 40 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=23,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="FireMax",keywordFlags=0}},nil}c["+5 to Intelligence"]={{[1]={flags=0,type="BASE",value=5,name="Int",keywordFlags=0}},nil}c["Recover 1% of Maximum Life on Kill"]={nil,"Recover 1% of Maximum Life on Kill"}c["+14% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=14,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="LightningResist",keywordFlags=0}},nil}c["20% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["150% increased Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EnergyShield",keywordFlags=0}},nil}c["Gain a Void Charge every 0.5 seconds Elder Item"]={nil,"Gain a Void Charge every 0.5 seconds Elder Item"}c["Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["50% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["Adds 25 to 50 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="FireMax",keywordFlags=0}},nil}c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=16,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="LightningResist",keywordFlags=0}},nil}c["+35 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=35,name="EnergyShield",keywordFlags=0}},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=35,name="StunRecovery",keywordFlags=0}},nil}c["Adds 1 to 90 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="LightningMax",keywordFlags=0}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}c["Adds 1 to 60 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="LightningMax",keywordFlags=0}},nil}c["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["28% increased Cold Damage"]={{[1]={flags=0,type="INC",value=28,name="ColdDamage",keywordFlags=0}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootRarity",keywordFlags=0}},nil}c["1% of Damage against Shocked Enemies Leeched as Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["When hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["0.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["300% increased Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EnergyShield",keywordFlags=0}},nil}c["Adds 1 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=0}},nil}c["24% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=24,name="Evasion",keywordFlags=0}},nil}c["+25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you"}c["Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther"]={{[1]={[1]={type="DistanceRamp",ramp={[1]={[1]=10,[2]=1},[2]={[1]=120,[2]=0}}},flags=0,type="BASE",value=100,name="PierceChance",keywordFlags=0}},nil}c["13% increased Fire Damage"]={{[1]={flags=0,type="INC",value=13,name="FireDamage",keywordFlags=0}},nil}c["100% increased Rarity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=100,name="LootRarity",keywordFlags=0}},nil}c["11% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=11,name="LootRarity",keywordFlags=0}},nil}c["165% increased Energy Shield"]={{[1]={flags=0,type="INC",value=165,name="EnergyShield",keywordFlags=0}},nil}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={flags=0,type="INC",value=60,name="Damage",keywordFlags=0}}," with Hits and Ailments against Enemies affected by 3 Spider's Webs"}c["Flasks gain a Charge every 3 seconds"]={nil,"Flasks gain a Charge every 3 seconds"}c["+85 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=85,name="EnergyShield",keywordFlags=0}},nil}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,type="BASE",value=56,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=400,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Traps"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=4096}},nil}c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers"}c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=2,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["+53 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=53,name="EnergyShield",keywordFlags=0}},nil}c["+70 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=70,name="EnergyShield",keywordFlags=0}},nil}c["+1 to Level of Socketed Support Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="support",value=1},name="GemProperty",keywordFlags=0}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time"}c["10% chance to Fortify on Melee hit 20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify 20% chance to Taunt on Hit You and nearby Allies have 15% increased "}c["45% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=200},flags=1025,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["Minions have 40% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+470 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=470,name="Accuracy",keywordFlags=0}},nil}c["50% reduced Duration"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}},nil}c["8% chance to Freeze"]={{[1]={flags=0,type="BASE",value=8,name="EnemyFreezeChance",keywordFlags=0}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,type="BASE",value=40,name="EnemyShockChance",keywordFlags=0}}," Attackers for 4 seconds on Block"}c["Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"]={nil,"Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"}c["14% increased Mine Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=8192}},nil}c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=100,name="ManaRegen",keywordFlags=0}},nil}c["20% increased Area Damage"]={{[1]={flags=512,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["50% chance to avoid Freeze, Shock, Ignite and Bleed while using a Flask"]={{}," to avoid Freeze, Shock, Ignite and Bleed "}c["and your Totems to each gain an Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge"}c["Your Elemental Golems are Immune to Elemental Damage"]={nil,"Your Elemental Golems are Immune to Elemental Damage"}c["Adds 6 to 80 Lightning Damage"]={{[1]={flags=0,type="BASE",value=6,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="LightningMax",keywordFlags=0}},nil}c["50% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit"]={{}," to Fortify "}c["5% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=5,name="EnergyShield",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect"}c["Adds 10 to 90 Lightning Damage"]={{[1]={flags=0,type="BASE",value=10,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="LightningMax",keywordFlags=0}},nil}c["Adds 35 to 60 Cold Damage"]={{[1]={flags=0,type="BASE",value=35,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="ColdMax",keywordFlags=0}},nil}c["Minions deal 48 to 72 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=48,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=72,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["120% increased Spell Damage"]={{[1]={flags=2,type="INC",value=120,name="Damage",keywordFlags=0}},nil}c["-4% to all Resistances for each Equipped Corrupted Item 8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={flags=0,type="BASE",value=-4,name="ElementalResist",keywordFlags=0},[2]={flags=0,type="BASE",value=-4,name="ChaosResist",keywordFlags=0}}," for each Equipped Corrupted Item 8% increased Maximum Energy Shield for each Equipped Corrupted Item"}c["Minions deal 51 to 78 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=51,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=78,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 185 to 205 Physical Damage"]={{[1]={flags=0,type="BASE",value=185,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=205,name="PhysicalMax",keywordFlags=0}},nil}c["30% increased Cast Speed"]={{[1]={flags=16,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=1048576,type="BASE",value=7,name="CritChance",keywordFlags=0}},nil}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse 140% increased Spell Damage"]={nil,"Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse 140% increased Spell Damage"}c["Grants level 15 Vengeance Skill"]={{[1]={flags=0,type="LIST",value={skillId="Vengeance",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["+100 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="ManaOnKill",keywordFlags=0}},nil}c["Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Elemental Weakness on Blocking a Spell"}c["100% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["+20 to All Attributes"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["+18% to Quality"]={{}," Quality"}c["+35% to Cold Damage over Time Multiplier 10% increased Attack Speed"]={{[1]={flags=0,type="BASE",value=35,name="ColdDamage",keywordFlags=0}}," over Time Multiplier 10% increased Attack Speed"}c["70% increased Burning Damage"]={{[1]={flags=8,type="INC",value=70,name="FireDamage",keywordFlags=0}},nil}c["+2 to Level of Socketed Elemental Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="elemental",value=2},name="GemProperty",keywordFlags=0}},nil}c["36% increased Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=16,type="INC",value=36,name="Speed",keywordFlags=0}},nil}c["20% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["140% increased Armour"]={{[1]={flags=0,type="INC",value=140,name="Armour",keywordFlags=0}},nil}c["Adds 1 to 75 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=75,name="LightningMax",keywordFlags=0}},nil}c["You have Phasing while you have Cat's Stealth"]={nil,"You have Phasing while you have Cat's Stealth"}c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time"}c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=35,name="ColdDamage",keywordFlags=0}}," over Time Multiplier"}c["You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit"}c["Socketed Gems are Supported by level 5 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdToFire",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["Minions have 7% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=7,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["22% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=22,name="ChaosDamage",keywordFlags=0}},nil}c["4% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=4,name="ElementalDamage",keywordFlags=0}},nil}c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=40,name="AreaOfEffect",keywordFlags=0}},nil}c["Adds 450 to 575 Fire Damage"]={{[1]={flags=0,type="BASE",value=450,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=575,name="FireMax",keywordFlags=0}},nil}c["25% increased Mine Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8192}},nil}c["+25 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Dex",keywordFlags=0}},nil}c["100% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=300},flags=0,type="INC",value=100,name="Damage",keywordFlags=1048576}},nil}c["Adds 1 to 4 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=4,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=50,name="LootRarity",keywordFlags=0}},nil}c["160% increased Spell Damage"]={{[1]={flags=2,type="INC",value=160,name="Damage",keywordFlags=0}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block"}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Stun Threshold is based on 500% of your Mana instead of Life"]={nil,"Stun Threshold is based on 500% of your Mana instead of Life"}c["+25% chance to be Poisoned +3% to all maximum Resistances while Poisoned"]={{[1]={flags=0,type="BASE",value=25,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=25,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=25,name="ChaosResistMax",keywordFlags=0}}," to be Poisoned +3% to while Poisoned"}c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HavePhysicalGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveLightningGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[3]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveColdGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[4]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveFireGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[5]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveChaosGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["4% increased Cast Speed with Chaos Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=128}},nil}c["Socketed Gems are Supported by Level 10 Lesser Poison"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLesserPoison",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="Ignited"},[2]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=15}},"Immune and Chill Damage "}c["10% reduced Character Size"]={{}," Character Size"}c["100% increased Fire Damage"]={{[1]={flags=0,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={nil,"Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"}c["Adds 250 to 350 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=250,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=350,name="FireMax",keywordFlags=0}},nil}c["20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify 4% reduced Damage taken from Taunted Enemies"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="BASE",value=20,name="Damage",keywordFlags=0}}," to Taunt on Hit You and nearby Allies have 15% increased 4% reduced Damage taken from Taunted Enemies"}c["Adds 150 to 250 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=150,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=250,name="FireMax",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"}c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to gain a Power Charge if you Knock an Enemy Back with "}c["Adds 190 to 220 Physical Damage"]={{[1]={flags=0,type="BASE",value=190,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=220,name="PhysicalMax",keywordFlags=0}},nil}c["+3% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}},nil}c["+16% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=16,name="ElementalResist",keywordFlags=0}},nil}c["Adds 27 to 37 Physical Damage"]={{[1]={flags=0,type="BASE",value=27,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=37,name="PhysicalMax",keywordFlags=0}},nil}c["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={nil,"You cannot Recharge or Regenerate Energy Shield"}c["30% increased Attack Speed"]={{[1]={flags=1,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="Unknown",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["12 Mana Regenerated per Second while you have Avian's Flight"]={{[1]={flags=0,type="BASE",value=12,name="ManaRegen",keywordFlags=0}}," while you have Avian's Flight"}c["Socketed Gems are Supported by Level 16 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrap",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["50% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-50,name="Speed",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 8 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrap",level=8},name="ExtraSupport",keywordFlags=0}},nil}c["10% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-10,name="ManaReserved",keywordFlags=0}},nil}c["+73 to maximum Life"]={{[1]={flags=0,type="BASE",value=73,name="Life",keywordFlags=0}},nil}c["12% increased Minion Damage per Spectre you own"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=0}}," Minion per Spectre you own"}c["40% increased Elemental Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour"}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="LightningPenetration",value=20},[2]={[1]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="ColdPenetration",value=20},[3]={[1]={type="StatThreshold",stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=20}},nil}c["25% increased Poison Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=1048576}},nil}c["2% increased Minion Duration per Zombie you own 12% increased Minion Damage per Spectre you own"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=2,name="Duration",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Minion per you own 12% increased Minion Damage per Spectre you own"}c["Minions Regenerate 2.5% Life per Second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2.5,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit"}c["Adds 185 to 225 Physical Damage"]={{[1]={flags=0,type="BASE",value=185,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=225,name="PhysicalMax",keywordFlags=0}},nil}c["70% increased Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="EnergyShield",keywordFlags=0}},nil}c["50% increased Damage if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Nearby Enemies have 18% increased Effect of Curses on them"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=18,name="CurseEffectOnSelf",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["+6% chance to Block Spell Damage 180% increased Armour and Energy Shield"]={{[1]={flags=2,type="BASE",value=6,name="BlockChance",keywordFlags=0}}," Damage 180% increased Armour and Energy Shield"}c["15% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["120% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,type="INC",value=120,name="Damage",keywordFlags=0}},nil}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportControlledDestruction",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}}," Attack Damage "}c["20% Chance to Block Attack Damage while wielding a Staff {variant:1,2}4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="BlockChance",value=20}}," Attack Damage {variant:1,2}4% Chance to Block Attack Damage "}c["Has an additional Implicit Mod"]={nil,"Has an additional Implicit Mod"}c["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"]={{[1]={flags=0,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}}," per Siphoning Charge Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"}c["0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}}," per Siphoning Charge"}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge 0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=1,name="PhysicalDamageReductionLifeLeech",keywordFlags=0}}," from Hits per Siphoning Charge 0.2% of Damage per Siphoning Charge"}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=1,name="PhysicalDamageReduction",keywordFlags=0}}," from Hits per Siphoning Charge"}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=4,name="ChaosDamageGainAsChaos",keywordFlags=0}}," Non- per Siphoning Charge"}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="PhysicalMax",keywordFlags=0}}," per Siphoning Charge Gain 4% of Non- as extra Chaos Damage per Siphoning Charge"}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={flags=2,type="BASE",value=25,name="PhysicalDamage",keywordFlags=0}}," to gain a Siphoning Charge when you use a Skill Adds 14 to 16 to Attacks and s per Siphoning Charge"}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill"}c["20% increased Light Radius"]={{[1]={flags=0,type="INC",value=20,name="LightRadius",keywordFlags=0}},nil}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 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"}c["Socketed Gems are Supported by level 10 Remote Mine"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportRemoteMine",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Trigger level 20 Storm Cascade when you Attack"]={nil,"Trigger level 20 Storm Cascade when you Attack"}c["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage"}c["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of"}c["Enemies you kill are Shocked"]={nil,"Enemies you kill are Shocked"}c["-1 Dexterity per 1 Dexterity on Allocated Passives in Radius +15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Dex",div=1},[2]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",keywordFlags=0,name="Dex",value=-1}}," on Allocated Passives in Radius +15 to Maximum Mana on Unallocated Passives in Radius"}c["260% increased Physical Damage"]={{[1]={flags=0,type="INC",value=260,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Accuracy Rating with Bows"]={{[1]={flags=8192,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Increased Minion Life"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMinionLife",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["+450 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",value=450,name="Accuracy",keywordFlags=0}},nil}c["5% increased Damage taken"]={{[1]={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies"]={{[1]={flags=1,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," against Maimed Enemies"}c["+1 to Level of Socketed Lightning Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="lightning",value=1},name="GemProperty",keywordFlags=0}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected Damage Penetrates 5% Elemental Resistance"}c["18% Chance to Block"]={{[1]={flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}},nil}c["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["50% increased Maximum Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="EnergyShield",keywordFlags=0}},nil}c["50% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=50,name="StunRecovery",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Projectiles Pierce while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},value=100,type="BASE",keywordFlags=0,name="PierceChance",flags=0}},nil}c["You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,type="INC",value=-10,name="DamageTakenOverTime",keywordFlags=0}},nil}c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee"}c["100 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["Nearby Allies have 4% increased Defences per 100 Strength you have Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={type="PerStat",stat="Str",div=100},[2]={type="PerStat",stat="Dex",div=100},flags=0,type="LIST",keywordFlags=0,name="ExtraAura",value={onlyAllies=true,mod={flags=0,type="INC",keywordFlags=0,name="Defences",value=4}}}}," you have Nearby Allies have +7% to Critical Strike Multiplier you have"}c["125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=125,name="LifeRegen",keywordFlags=0}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningResist",keywordFlags=0}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-40,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["300% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% increased Mine Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=8192}},nil}c["40% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Adds 90 to 240 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=2,type="BASE",value=90,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="Unarmed"},flags=2,type="BASE",value=240,name="LightningMax",keywordFlags=0}},nil}c["Damage Penetrates 25% Lightning Resistance if you've"]={{[1]={flags=0,type="BASE",value=25,name="LightningPenetration",keywordFlags=0}}," if you've"}c["+40 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=40,name="Evasion",keywordFlags=0}},nil}c["20% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=20,name="BlockChanceConv",keywordFlags=0}},nil}c["+2 to maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=2,name="ActiveZombieLimit",keywordFlags=0}},nil}c["20% increased Movement Speed when on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=15,name="DamageTaken",keywordFlags=0}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=30,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Cannot be Chilled"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidChill",flags=0}},nil}c["14% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web 50% increased Aspect of the Spider Debuff Duration"]={nil,"Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web 50% increased Aspect of the Spider Debuff Duration"}c["Golems have 90% increased Movement Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=90,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={nil,"Aspect of the Spider can inflict Spider's Web on Enemies an additional time"}c["+28% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=28,name="LightningResist",keywordFlags=0}},nil}c["Lose 7% of maximum Mana per Second"]={nil,"Lose 7% of maximum Mana per Second"}c["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant"}c["+1 to Melee Weapon and Unarmed range"]={{[1]={flags=0,type="BASE",value=1,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="UnarmedRange",keywordFlags=0}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,type="BASE",value=55,name="Mana",keywordFlags=0}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire"}c["Lose 40 Mana per Second"]={nil,"Lose 40 Mana per Second"}c["4% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=4,name="PhysicalDamage",keywordFlags=0}},nil}c["+1 to Level of Socketed Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="all",value=1},name="GemProperty",keywordFlags=0}},nil}c["+8% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=8,name="ElementalResist",keywordFlags=0}},nil}c["+25% chance to be Ignited 125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=25,name="Life",keywordFlags=0}}," to be Ignited 125 Regenerated per second "}c["+500 to Accuracy against Bleeding Enemies Attacks always inflict Bleeding while you have Cat's Stealth"]={{}," Accuracy Attacks always inflict Bleeding while you have Cat's Stealth"}c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies"}c["+325 to Armour"]={{[1]={flags=0,type="BASE",value=325,name="Armour",keywordFlags=0}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["23% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=23,name="CritChance",keywordFlags=0}},nil}c["+140 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=140,name="EnergyShield",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage"]={nil,"Totems are Immune to Fire Damage"}c["13% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=13,name="LightningDamage",keywordFlags=0}},nil}c["Projectiles Fork"]={nil,"Projectiles Fork"}c["every 10 Intelligence on Allocated Passives in Radius"]={nil,"every 10 Intelligence on Allocated Passives in Radius"}c["Adds 25 to 50 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=25,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=55,name="FireResist",keywordFlags=0}},nil}c["25% increased effect of Fortify on You"]={{[1]={flags=0,type="INC",value=25,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["You can't deal Damage with Skills yourself"]={nil,"You can't deal Damage with Skills yourself"}c["100% reduced Arctic Armour Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Arctic Armour"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 13 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=13},name="ExtraSupport",keywordFlags=0}},nil}c["60% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=60,name="ArmourAndEvasion",keywordFlags=0}},nil}c["50% increased Elemental Ailment Duration on You You are Immune to Bleeding"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You You are Immune to Bleeding"}c["3% of Life Regenerated per second during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=3,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You"}c["3% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["20% increased Attack Damage"]={{[1]={flags=1,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus"}c["+2 Life Gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="LifeOnHit",keywordFlags=0}},nil}c["You have Fortify"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Fortify",flags=0}},nil}c["Adds 1 to 80 Chaos Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=80,name="ChaosMax",keywordFlags=0}},nil}c["100 Life Regenerated per Second while you have Avian's Flight 12 Mana Regenerated per Second while you have Avian's Flight"]={{}," while you have Avian's Flight"}c["30% reduced Damage"]={{[1]={flags=0,type="INC",value=-30,name="Damage",keywordFlags=0}},nil}c["8% increased Accuracy Rating with Staves"]={{[1]={flags=131072,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["Adds 28 to 45 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=28,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=45,name="ColdMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportDebilitate",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath {variant:52}40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="SkillName",skillName="Wrath"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsLightning",keywordFlags=0}}," while affected by{variant:52}40% of Physical Damage Converted to Lightning Damage while affected by Wrath"}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground"}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["12% increased Attack Damage"]={{[1]={flags=1,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["Unaffected by Curses"]={{[1]={value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["+50% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="ChaosResist",keywordFlags=0}},nil}c["40% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=40,name="CooldownRecovery",keywordFlags=4096}},nil}c["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedChaosDamage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 18 to 28 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=18,name="ChaosMin",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=28,name="ChaosMax",keywordFlags=0}},nil}c["1% increased Damage per 5 of your lowest Attribute"]={{[1]={flags=0,type="INC",value=1,name="Damage",keywordFlags=0}}," per 5 of your lowest Attribute"}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength +20 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}}," to Avoid interruption from Stuns while Casting +20 to +20 to Dexterity"}c["50% increased Mine Arming Speed Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={{}," Arming Speed Skills which Place Mines place up to 1 additional Mine "}c["150% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,type="INC",value=150,name="Damage",keywordFlags=0}},nil}c["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 35 to 70 Cold Damage"]={{[1]={flags=0,type="BASE",value=35,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="ColdMax",keywordFlags=0}},nil}c["13% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=13,name="LootQuantity",keywordFlags=0}},nil}c["16% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=16,name="LootQuantity",keywordFlags=0}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=13,name="EnergyShield",keywordFlags=0}},nil}c["4% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=4,name="Damage",keywordFlags=0}},nil}c["220% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=220,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+1 second to Summon Skeleton Cooldown"]={{}," second to Summon Skeleton Cooldown"}c["Enemy you've Killed Recently"]={nil,"Enemy you've Killed Recently"}c["12 to 14 Cold Damage per Frenzy Charge"]={nil,"12 to 14 Cold Damage per Frenzy Charge"}c["+45% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=45}},nil}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified"}c["+8 to Dexterity"]={{[1]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0}},nil}c["60% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=60,name="LootRarity",keywordFlags=0}},nil}c["+35% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=35,name="CritMultiplier",keywordFlags=0}},nil}c["Cannot be Frozen"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=0}},nil}c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["2% of Life Regenerated Per Second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["20% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}},nil}c["275% increased Energy Shield"]={{[1]={flags=0,type="INC",value=275,name="EnergyShield",keywordFlags=0}},nil}c["25% chance to gain a Power Charge on Critical Strike 6% reduced Mana Reserved"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=25,name="ManaReserved",keywordFlags=0}}," to gain a Power Charge 6% reduced "}c["Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"}c["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge"}c["+120 to maximum Mana"]={{[1]={flags=0,type="BASE",value=120,name="Mana",keywordFlags=0}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=13,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["2% of Energy Shield regenerated per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=2,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",keywordFlags=0}}," while you do not have Avatar of Fire"}c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas"}c["15% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=15,name="StunRecovery",keywordFlags=0}},nil}c["140 Life Regenerated per Second while affected by Vitality"]={{[1]={flags=0,type="BASE",value=140,name="LifeRegen",keywordFlags=0}}," while affected by Vitality"}c["You gain an Endurance Charge on use {variant:1}100% increased Charges used"]={nil,"You gain an Endurance Charge on use {variant:1}100% increased Charges used"}c["35% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=35,name="MovementSpeed",keywordFlags=0}},nil}c["23% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=23,name="BlockChanceConv",keywordFlags=0}},nil}c["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["+6% chance to Block Spell Damage {variant:1,2}+100 to maximum Mana"]={{[1]={flags=2,type="BASE",value=6,name="BlockChance",keywordFlags=0}}," Damage {variant:1,2}+100 to maximum Mana"}c["8% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=8,name="AvoidStun",keywordFlags=0}},nil}c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted"}c["25% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=25,name="BlockChanceConv",keywordFlags=0}},nil}c["7% increased Intelligence"]={{[1]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["+30 to all Attributes"]={{[1]={flags=0,type="BASE",value=30,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=30,name="Int",keywordFlags=0}},nil}c["+180 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=180,name="Evasion",keywordFlags=0}},nil}c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"}c["+100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=100,name="Accuracy",keywordFlags=0}},nil}c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to"}c["+13 to all Attributes"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=13,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=13,name="Int",keywordFlags=0}},nil}c["+25 to Intelligence"]={{[1]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,type="INC",value=16,name="AreaOfEffect",keywordFlags=0}},nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageGainAsLightning",keywordFlags=0}}," while affected by Wrath"}c["You and nearby allies have 10% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["+45% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}}," against Enemies that are affected"}c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=2,name="Life",keywordFlags=0}},nil}c["8% chance to Ignite"]={{[1]={flags=0,type="BASE",value=8,name="EnemyIgniteChance",keywordFlags=0}},nil}c["20% chance to gain an Endurance Charge when you are Hit +1 to Maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=20,name="EnduranceChargesMax",keywordFlags=0}}," to gain an Endurance Charge when you are Hit +1 to "}c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,type="LIST",value={skillId="FireResistAura",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["140 Life Regenerated per Second while affected by Vitality {variant:47}30 Life gained for each Enemy Hit while affected by Vitality"]={{[1]={[1]={type="SkillName",skillName="Vitality"},flags=0,type="BASE",value=140,name="LifeRegen",keywordFlags=0}}," while affected by{variant:47}30 gained for each Enemy Hit while affected by Vitality"}c["Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"}c["20% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=15,name="DamageTakenLifeLeech",keywordFlags=0}}," from Hits is "}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"}c["Trigger Level 20 Glimpse of Eternity when Hit"]={nil,nil}c["10% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=4096}}," for 9 seconds on Throwing a {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap"}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill while affected by Clarity"}c["6% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=4,type="INC",keywordFlags=0,name="Damage",value=6}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge"]={nil,"Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge"}c["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["0.5% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=-3,name="Speed",keywordFlags=0}},nil}c["150% increased Armour"]={{[1]={flags=0,type="INC",value=150,name="Armour",keywordFlags=0}},nil}c["8% increased Attack Speed"]={{[1]={flags=1,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellDodgeChance",keywordFlags=0}},nil}c["+200 to maximum Life"]={{[1]={flags=0,type="BASE",value=200,name="Life",keywordFlags=0}},nil}c["20% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped"}c["65% increased Armour"]={{[1]={flags=0,type="INC",value=65,name="Armour",keywordFlags=0}},nil}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,type="INC",value=3,name="Int",keywordFlags=0}}," Character Size 6% increased "}c["+26% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=26,name="LightningResist",keywordFlags=0}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["Damage Penetrates 15% Cold Resistance while affected by Hatred {variant:28}40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="BASE",value=15,name="ColdPenetration",keywordFlags=0}}," while affected by{variant:28}40% of Physical Damage Converted to Cold Damage while affected by Hatred"}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=9,name="PhysicalMax",keywordFlags=0}},nil}c["+175 to maximum Life"]={{[1]={flags=0,type="BASE",value=175,name="Life",keywordFlags=0}},nil}c["Cannot Be Slowed to Below Base Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=0}},nil}c["Fire Skills have 20% chance to Poison on Hit"]={nil,"Fire Skills have 20% chance to Poison on Hit"}c["1% increased Movement Speed per 600 Evasion Rating, up to 75% -40 Physical Damage taken when hit by Animals"]={{[1]={[1]={type="PerStat",stat="Evasion",div=600},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}}," , up to 75% -40 Physical Damage taken when hit by Animals"}c["15% increased Movement Speed"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["3% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["15% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["1% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["10% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=10,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=20,name="Accuracy",keywordFlags=0}},nil}c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,type="LIST",value={skillId="ColdResistAura",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"}c["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["+2 seconds to Cat's Stealth Duration Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Cat's Stealth Gain up to your maximum number ofand Power Charges when you gain Cat's Stealth"}c["20% increased Movement Speed"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-65,name="FlaskRecovery",keywordFlags=0}},nil}c["Adds 2 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=0}},nil}c["-30% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="LightningResist",keywordFlags=0}},nil}c["15% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=15,name="EnemyStunDuration",keywordFlags=0}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy"}c["-4% to all Resistances for each Equipped Corrupted Item"]={{[1]={flags=0,type="BASE",value=-4,name="ElementalResist",keywordFlags=0},[2]={flags=0,type="BASE",value=-4,name="ChaosResist",keywordFlags=0}}," for each Equipped Corrupted Item"}c["40% increased Damage when not on Low Life"]={{[1]={[1]={type="Condition",neg=true,var="LowLife"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"}c["8% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=8,name="SpellBlockChance",keywordFlags=0}},nil}c["Skills from your Helmet Penetrate 20% Elemental Resistances"]={{[1]={[1]={type="SocketedIn",slotName="Helmet"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="ElementalPenetration",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["170% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=170,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["6% increased Attributes"]={{[1]={flags=0,type="INC",value=6,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=6,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=6,name="Int",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=8192}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,type="INC",value=18,name="Speed",keywordFlags=0}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["20% increased Poison Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=1048576}},nil}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill"}c["+40 to Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["20% chance to create a Smoke Cloud when you place a Mine or throw a Trap 5% increased Damage for each Trap and Mine you have Damage Penetrates 6% Elemental Resistances if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="BASE",value=20,name="Damage",keywordFlags=8192}}," to create a Smoke Cloud when you place a or throw a Trap 5% increased for each Trap and Mine you have Damage Penetrates 6% Elemental Resistances "}c["Adds 90 to 345 Physical Damage"]={{[1]={flags=0,type="BASE",value=90,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=345,name="PhysicalMax",keywordFlags=0}},nil}c["Cannot Knock Enemies Back"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotKnockback",flags=0}},nil}c["10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect"]={nil,"Your Critical Strikes do not deal extra Damage during Flask effect"}c["3% additional chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=3,name="AttackDodgeChance",keywordFlags=0}},nil}c["5% increased Physical Damage"]={{[1]={flags=0,type="INC",value=5,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Enemies Ignited by you during Flask Effect take 10% increased Damage"}c["Traps and Mines deal 5 to 15 additional Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=12288},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=12288}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=4096}},nil}c["+40 to maximum Life"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}},nil}c["12% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={nil,"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"}c["10% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=10,name="ProjectileSpeed",keywordFlags=0}},nil}c["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Your Cold Damage can Poison {variant:3}Your Lightning Damage can Poison"]={nil,"Your Cold Damage can Poison {variant:3}Your Lightning Damage can Poison"}c["20% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain a Power Charge after spending a total of 200 Mana"]={nil,"Gain a Power Charge after spending a total of 200 Mana"}c["10% increased Area Damage"]={{[1]={flags=512,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+50 to Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}c["100% increased Ignite Duration on You"]={{[1]={flags=0,type="INC",value=100,name="EnemyIgniteDuration",keywordFlags=0}}," on You"}c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=20}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={nil,"150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level"}c["+24% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=24,name="ElementalResist",keywordFlags=0}},nil}c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsLightning",keywordFlags=0}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["80% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-80,name="Damage",keywordFlags=0}},nil}c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Discipline"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Gain a Void Charge every 0.5 seconds"]={nil,"Gain a Void Charge every 0.5 seconds"}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=40,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=100,name="ColdMax",keywordFlags=0}},"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["250% increased Physical Damage"]={{[1]={flags=0,type="INC",value=250,name="PhysicalDamage",keywordFlags=0}},nil}c["Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={nil,"Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges"}c["Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage Enemies you Curse take 10% increased Damage"]={nil,"Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage Enemies you Curse take 10% increased Damage"}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your"}c["Adds 15 to 33 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="PhysicalMax",keywordFlags=0}},nil}c["500% increased Attribute Requirements"]={{[1]={flags=0,type="INC",value=500,name="StrRequirement",keywordFlags=0},[2]={flags=0,type="INC",value=500,name="DexRequirement",keywordFlags=0},[3]={flags=0,type="INC",value=500,name="IntRequirement",keywordFlags=0}},nil}c["170% increased Physical Damage"]={{[1]={flags=0,type="INC",value=170,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 100 Life when an Endurance Charge expires or is consumed"]={nil,"Gain 100 Life when an Endurance Charge expires or is consumed"}c["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit"}c["3% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={{[1]={flags=0,type="BASE",value=5,name="ElementalDamageGainAsChaos",keywordFlags=0}}," per Shaper Item Equipped Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"}c["40% increased Cold Damage"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}},nil}c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"}c["50% reduced Reflected Physical Damage taken 20% more Damage if you've Killed Recently 15% increased Area of Effect of Area Skills if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Condition",var="KilledRecently"},flags=512,type="INC",keywordFlags=0,name="PhysicalDamageTaken",value=-50}}," Reflected 20% more Damage 15% increased of Effect of Area Skills "}c["50% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},nil}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["Curses on Slain Enemies are transferred to a nearby Enemy"]={nil,"Curses on Slain Enemies are transferred to a nearby Enemy"}c["Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"}c["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen"}c["Minions have 25% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["16% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["120% increased Critical Strike Chance against Enemies affected by Elemental Status Ailments"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"},actor="enemy"},flags=4,type="INC",value=120,name="CritChance",keywordFlags=0}},nil}c["15% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=15,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=15,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=15,name="AvoidIgnite",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Added Lightning Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedLightningDamage",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["Spell Skills deal no Damage"]={nil,"Spell Skills deal no Damage"}c["Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Green Sockets have +10% to Quality"}c["10% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={flags=0,type="INC",value=6,name="Life",keywordFlags=0}}," for each Equipped Corrupted Item"}c["Vaal Skills deal 100% increased Damage during effect"]={nil,"Vaal Skills deal 100% increased Damage during effect"}c["Never deal Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NeverCrit",flags=0}},nil}c["Elemental Status Effects caused by your Skills spread to other nearby Enemies Radius: 12"]={nil,"Elemental Status Effects caused by your Skills spread to other nearby Enemies Radius: 12"}c["6% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=6,name="AuraEffect",keywordFlags=0}},nil}c["+50% Global Critical Strike Multiplier while you have no Frenzy Charges"]={{[1]={[1]={type="Global"},[2]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=50}},nil}c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["+500 to Accuracy against Bleeding Enemies"]={{}," Accuracy "}c["15% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit"}c["10% increased Spell Damage"]={{[1]={flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+20 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=20,name="LifeOnKill",keywordFlags=0}},nil}c["20% more chance to Evade while on full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="MORE",value=20,name="EvadeChance",keywordFlags=0}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Reflects 4 Physical Damage to Melee Attackers"]={{},nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial"}c["Take 8% reduced Elemental Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=-8,name="ElementalDamageTaken",keywordFlags=0}},nil}c["Socketed Gems have Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=0}},nil}c["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=30,name="EnergyShield",keywordFlags=0}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain: Marauder: Melee Skills have 15% increased Area of Effect"]={nil,"While your Passive Skill Tree connects to a class' Starting location, you gain: Marauder: Melee Skills have 15% increased Area of Effect"}c["75% increased Charges used"]={{[1]={flags=0,type="INC",value=75,name="FlaskChargesUsed",keywordFlags=0}},nil}c["50% increased Herald of Ice Damage"]={{[1]={[1]={type="SkillName",skillName="Herald of Ice"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["15% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=15,name="SpellBlockChance",keywordFlags=0}},nil}c["100% increased maximum Mana"]={{[1]={flags=0,type="INC",value=100,name="Mana",keywordFlags=0}},nil}c["22% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=22,name="CritChance",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike"}c["Adds 2 to 50 Lightning Damage"]={{[1]={flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="LightningMax",keywordFlags=0}},nil}c["Grace Reserves no Mana"]={nil,"Grace Reserves no Mana"}c["30% chance to Avoid being Shocked"]={{[1]={flags=0,type="BASE",value=30,name="AvoidShock",keywordFlags=0}},nil}c["30% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["8% chance to Dodge Spells while affected by Haste {variant:22}You gain Onslaught for 4 seconds on Kill while affected by Haste"]={{[1]={[1]={type="SkillName",skillName="Haste"},flags=0,type="BASE",value=8,name="SpellDodgeChance",keywordFlags=0}}," while affected by{variant:22}You gain Onslaught for 4 seconds on Kill while affected by Haste"}c["+10% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ChaosResist",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit 20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify 4% reduced Damage taken from Taunted Enemies"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify 20% chance to Taunt on Hit You and nearby Allies have 15% increased 4% reduced Damage taken from Taunted Enemies"}c["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=8192,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["Minions have 8% chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=8,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy"}c["Adds 7 to 25 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["20% chance to Avoid Projectiles while Phasing You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="Phasing"},[2]={type="Condition",var="KilledRecently"},flags=0,type="BASE",keywordFlags=0,name="ProjectileCount",value=20}}," to Avoid You have Phasing "}c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Hindered"},flags=4,type="INC",value=80,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["You have Onslaught while not on Low Mana"]={nil,"You have Onslaught while not on Low Mana"}c["You have Resolute Technique while you do not have Elemental Overload"]={nil,"You have Resolute Technique while you do not have Elemental Overload"}c["Adds 5 to 12 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["50% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-50,name="LootRarity",keywordFlags=0}},nil}c["5% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=5,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level"]={nil,"7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level"}c["Adds 13 to 18 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}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["Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"}c["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 12 to 15 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=12,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=15,name="ColdMax",keywordFlags=0}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyStunDuration",keywordFlags=0}},nil}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["13% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-13,name="Mana",keywordFlags=0}},nil}c["14% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=14,name="LootQuantity",keywordFlags=0}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy"}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline {variant:16}40% faster start of Energy Shield Recharge while affected by Discipline"]={{}," while affected by{variant:16}40% faster while affected by Discipline"}c["+20 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",keywordFlags=0}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life"}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use"}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"}c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention"}c["Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 100% of Energy Shield"}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["Adds 56 to 78 Physical Damage"]={{[1]={flags=0,type="BASE",value=56,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=78,name="PhysicalMax",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}c["Adds 10 to 18 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["16% increased Physical Weapon Damage per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=8388608,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun"}c["70% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=70,name="Evasion",keywordFlags=0}},nil}c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["Leech applies instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0},[2]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="InstantManaLeech",flags=0}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit"}c["18% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["14% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=14,name="Evasion",keywordFlags=0}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit"}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect {variant:3}{crafted}30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,type="BASE",keywordFlags=0,name="DamageTakenLifeLeech",value=15}}," from Hits is {variant:3}{crafted}30% increased Rarity of Items found "}c["4% increased maximum Mana"]={{[1]={flags=0,type="INC",value=4,name="Mana",keywordFlags=0}},nil}c["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=5,name="LifeOnHit",keywordFlags=0}},nil}c["No Life Recovery Applies during Flask effect"]={nil,"No Life Recovery Applies during Flask effect"}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"}c["8% reduced Damage Taken for 4 seconds after spending 200 Mana"]={{[1]={flags=0,type="INC",value=-8,name="DamageTaken",keywordFlags=0}}," for 4 seconds after spending 200 Mana"}c["50% less Damage to surrounding targets"]={{[1]={flags=0,type="MORE",value=-50,name="Damage",keywordFlags=0}}," to surrounding targets"}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["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect"}c["20% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="LifeRecoveryRate",keywordFlags=0}},nil}c["Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of"}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+25 to maximum Mana"]={{[1]={flags=0,type="BASE",value=25,name="Mana",keywordFlags=0}},nil}c["You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken"}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["45% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=45,name="Duration",keywordFlags=0}},nil}c["13% reduced Mine Laying Speed"]={{[1]={flags=0,type="INC",value=-13,name="MineLayingSpeed",keywordFlags=0}},nil}c["+2 to Level of Socketed Aura Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="aura",value=2},name="GemProperty",keywordFlags=0}},nil}c["+50 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=50,name="EnergyShield",keywordFlags=0}},nil}c["5% increased Dexterity"]={{[1]={flags=0,type="INC",value=5,name="Dex",keywordFlags=0}},nil}c["+175 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=175,name="Accuracy",keywordFlags=0}},nil}c["Iron Reflexes"]={{[1]={value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred {variant:26}+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="BASE",value=70,name="ColdMin",keywordFlags=0},[2]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="BASE",value=104,name="ColdMax",keywordFlags=0}}," while affected by{variant:26}+1.8% to while affected by Hatred"}c["Projectiles Pierce 5 additional Targets while you have Phasing Celestial Footprints"]={nil,"Projectiles Pierce 5 additional Targets while you have Phasing Celestial Footprints"}c["Attacks always inflict Bleeding while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Bleeding Enemies"]={nil,"Attacks always inflict Bleeding while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Bleeding Enemies"}c["You have Onslaught while on full Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,type="INC",value=25,name="DamageTaken",keywordFlags=0}}," when on Low Mana"}c["+10 Life Gained on Killing Ignited Enemies 25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}}," ing Ignited Enemies 25% reduced Ignite Duration "}c["5% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=5,name="PierceChance",keywordFlags=0}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=460,name="Accuracy",keywordFlags=0}},nil}c["140% increased Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EnergyShield",keywordFlags=0}},nil}c["Adds 23 to 83 Physical Damage"]={{[1]={flags=0,type="BASE",value=23,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=83,name="PhysicalMax",keywordFlags=0}},nil}c["+20 to all Attributes"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["8% increased Armour"]={{[1]={flags=0,type="INC",value=8,name="Armour",keywordFlags=0}},nil}c["15% chance to Ignite"]={{[1]={flags=0,type="BASE",value=15,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Gain Chilling Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="PhysicalCanChill",flags=0},[2]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="LightningCanChill",flags=0},[3]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="FireCanChill",flags=0},[4]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="ChaosCanChill",flags=0}},nil}c["24% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["Debuffs on you expire 20% faster"]={nil,"Debuffs on you expire 20% faster"}c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage"}c["90% increased Charges used"]={{[1]={flags=0,type="INC",value=90,name="FlaskChargesUsed",keywordFlags=0}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["12% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["30% increased Damage against Rare and Unique Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="RareOrUnique"},flags=4,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=4,name="ManaRegenPercent",keywordFlags=0},[2]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=4,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"]={nil,"Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EnergyShield",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["25% chance to Poison on Hit against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=25,name="PoisonChance",keywordFlags=0}},nil}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use"}c["30% increased Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 24 to 36 Cold Damage"]={{[1]={flags=0,type="BASE",value=24,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="ColdMax",keywordFlags=0}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies"}c["Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy"}c["12% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=12,name="MovementSpeed",keywordFlags=0}},nil}c["12% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=12,name="FlaskDuration",keywordFlags=0}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=0}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=1,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=29,name="ChaosMax",keywordFlags=0}}," while you have a Bestial Minion"}c["Adds 10 to 23 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="PhysicalMax",keywordFlags=0}},nil}c["30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="LootRarity",keywordFlags=0}},nil}c["5% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["10% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["80% increased Critical Strike Chance during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"}c["Cannot be Frozen if Dexterity is higher than Intelligence Cannot be Ignited if Strength is higher than Dexterity"]={nil,"Cannot be Frozen if Dexterity is higher than Intelligence Cannot be Ignited if Strength is higher than Dexterity"}c["Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you have a matching Golem"]={nil,"Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you have a matching Golem"}c["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["Arrows Pierce all Targets"]={nil,"Arrows Pierce all Targets"}c["1% increased Fire Damage per 20 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=20},flags=0,type="INC",value=1,name="FireDamage",keywordFlags=0}},nil}c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=-10,name="StunRecovery",keywordFlags=0}},nil}c["You are Shocked during Flask effect"]={nil,"You are Shocked during Flask effect"}c["10% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back"}c["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedChaosDamage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["+23% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ChaosResist",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"}c["20% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",keywordFlags=0}},nil}c["Adds 22 to 35 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=22,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ColdMax",keywordFlags=0}},nil}c["+30 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=30,name="Accuracy",keywordFlags=0}},nil}c["10% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time"}c["Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Enemies cannot deal Critical Strikes"}c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["Minions have +5% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"}c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["15% reduced Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=15,name="ElementalDamage",keywordFlags=0}},nil}c["2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"]={nil,"2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"}c["92% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["-5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-5,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Spell Damage"]={{[1]={flags=2,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["30% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=30,name="AvoidFrozen",keywordFlags=0}},nil}c["+24 to Intelligence"]={{[1]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["+100 to Strength"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0}},nil}c["+45% to Critical Strike Multiplier against Enemies that are affected by Elemental Status Ailments"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"},actor="enemy"},flags=4,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="BASE",value=3,name="DamageLifeLeech",keywordFlags=0}},nil}c["1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={flags=0,type="INC",value=1,name="Mana",keywordFlags=0}}," per Abyss Jewel affecting you"}c["50% increased Charges used"]={{[1]={flags=0,type="INC",value=50,name="FlaskChargesUsed",keywordFlags=0}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=9,name="ElementalResist",keywordFlags=0}},nil}c["+6% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdResistMax",keywordFlags=0}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,type="INC",value=20,name="TotemDuration",keywordFlags=0}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=40,name="LootRarity",keywordFlags=0}},nil}c["Minions have 28% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=28,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage."}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked"}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={nil,"400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}c["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use"}c["No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered"]={nil,"No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered"}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies"}c["30% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-30,name="StrRequirement",keywordFlags=0}},nil}c["+1 Energy Shield gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}}," gained on Kill "}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit {variant:1}Attacks Cause Bleeding when Hitting Cursed Enemies"]={{}," to Curse Enemies with level 10on Hit {variant:1}Attacks Cause Bleeding when Hitting Cursed Enemies"}c["60% increased Energy Shield"]={{[1]={flags=0,type="INC",value=60,name="EnergyShield",keywordFlags=0}},nil}c["40% increased Strength Requirement"]={{[1]={flags=0,type="INC",value=40,name="StrRequirement",keywordFlags=0}},nil}c["15% increased Trap Damage"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=4096}},nil}c["Counts as all One Handed Melee Weapon Types"]={{[1]={value={key="countsAsAll1H",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["+2 to Level of Socketed Minion Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="minion",value=2},name="GemProperty",keywordFlags=0}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"}c["Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire"}c["Damage Penetrates 2% Cold Resistance"]={{[1]={flags=0,type="BASE",value=2,name="ColdPenetration",keywordFlags=0}},nil}c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=40,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["10% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike"}c["Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"}c["Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={flags=0,type="BASE",value=15,name="FirePenetration",keywordFlags=0}}," while affected by Anger"}c["650% increased Armour"]={{[1]={flags=0,type="INC",value=650,name="Armour",keywordFlags=0}},nil}c["4% reduced Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-4,name="ElementalDamageTaken",keywordFlags=0}},nil}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=340,name="Defences",keywordFlags=0}},nil}c["8 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=8,name="LifeRegen",keywordFlags=0}},nil}c["Adds 7 to 15 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=7,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="ColdMax",keywordFlags=0}},nil}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=16384}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,type="INC",value=16,name="Speed",keywordFlags=0}},nil}c["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"}c["+10 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,type="BASE",value=65,name="Mana",keywordFlags=0}},nil}c["24% increased Elemental Damage with Attack Skills {variant:1,2,3,4}Adds 40 to 60 Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:1,2,3,4}Adds 40 to 60 Cold Damage"}c["35% increased Fire Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",keywordFlags=0}},nil}c["Grants all bonuses of Unallocated Small Passive Skills in Radius"]={nil,"Grants all bonuses of Unallocated Small Passive Skills in Radius"}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies"}c["4% increased Damage per Enemy Killed by you or your Totems Recently"]={{[1]={flags=0,type="INC",value=4,name="Damage",keywordFlags=16384}}," per Enemy Killed by you or your s Recently"}c["60% reduced Mana Cost of Totem Skills that cast an Aura Corrupted"]={{[1]={flags=0,type="INC",value=-60,name="ManaCost",keywordFlags=16384}}," of Skills that cast an Aura Corrupted"}c["160% increased Physical Damage"]={{[1]={flags=0,type="INC",value=160,name="PhysicalDamage",keywordFlags=0}},nil}c["240% increased Physical Damage"]={{[1]={flags=0,type="INC",value=240,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies affected by at least 5 Poisons"]={nil,"Enemies affected by at least 5 Poisons"}c["Flasks gain a Charge every 3 seconds 20% chance for your Flasks to not consume Charges"]={nil,"Flasks gain a Charge every 3 seconds 20% chance for your Flasks to not consume Charges"}c["25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit"}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["Auras you Cast grant 0.2% of Maximum Life Regenerated per second to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.2,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["Skills from your Boots Leech 2% of Damage as Life"]={{[1]={[1]={type="SocketedIn",slotName="Boots"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="DamageLifeLeech",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["10% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=10,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=10,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=10,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Cannot inflict Ignite"]={nil,"Cannot inflict Ignite"}c["12% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge when you Stun an Enemy"]={{}," to gain aCharge when you Stun an Enemy"}c["4% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=4096}},nil}c["Grants Summon Harbinger of Brutality Skill 5% Chance to Block"]={nil,"Grants Summon Harbinger of Brutality Skill 5% Chance to Block"}c["50% increased Physical Damage"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamage",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 20 Greater Volley"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="UniqueSupportGreaterVolley",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["20% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=20,name="StunRecovery",keywordFlags=0}},nil}c["+15% to Elemental Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ElementalResist",keywordFlags=0}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=0}},nil}c["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ElementalDamage",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={nil,"deal 100 to 200 added Fire Damage to Bleeding Enemies"}c["Golems have 20% increased Maximum Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["20% increased Onslaught duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Onslaught "}c["2% chance to Freeze"]={{[1]={flags=0,type="BASE",value=2,name="EnemyFreezeChance",keywordFlags=0}},nil}c["+500 to Zombie maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=500,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased Attack Speed"]={{[1]={flags=1,type="BASE",value=10,name="Speed",keywordFlags=0}}," to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased "}c["+12% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["30% increased Zombie Resistances 25% increased Zombie Size"]={{}," Resistances 25% increased Zombie Size"}c["Adds 80 to 180 Chaos Damage"]={{[1]={flags=0,type="BASE",value=80,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=180,name="ChaosMax",keywordFlags=0}},nil}c["3% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=3,name="LifeRegenPercent",keywordFlags=0}},nil}c["Gain 25% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=25,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-30,name="ElementalDamageTaken",keywordFlags=0}}," Reflected {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken"}c["You can't deal Damage with Skills yourself Can have up to 1 additional Totem summoned at a time"]={nil,"You can't deal Damage with Skills yourself Can have up to 1 additional Totem summoned at a time"}c["0.5% of Attack Damage Leeched as Mana against Poisoned Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},flags=5,type="BASE",value=0.5,name="DamageManaLeech",keywordFlags=0}},nil}c["200 Cold Damage taken per second per Frenzy Charge while moving Elder Item"]={nil,"200 Cold Damage taken per second per Frenzy Charge while moving Elder Item"}c["Purity of Elements Reserves no Mana {variant:12}Purity of Lightning Reserves no Mana"]={nil,"Purity of Elements Reserves no Mana {variant:12}Purity of Lightning Reserves no Mana"}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["30% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="LightningDamageLifeLeech",keywordFlags=0}},nil}c["24% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["17 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=17,name="LifeRegen",keywordFlags=0}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill"}c["Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"]={nil,"Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"}c["Adds 40 to 60 Cold Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="ColdMax",keywordFlags=0}},nil}c["Creates Consecrated Ground on Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike"}c["+45% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["40% increased Damage if you've taken no Damage from Hits Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use"}c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="Evasion",keywordFlags=0}}," and Energy Shield"}c["15% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-15,name="LootRarity",keywordFlags=0}},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["Blood Magic"]={{[1]={value="Blood Magic",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life"}c["Arrow Dancing"]={{[1]={value="Arrow Dancing",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["25% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Adds 53 to 76 Physical Damage"]={{[1]={flags=0,type="BASE",value=53,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Physical Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,type="BASE",value=100,name="LightningResist",keywordFlags=0}}," when Socketed with a Blue Gem"}c["25% increased Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["50% reduced Duration of Curses on you {variant:3}10% additional Block chance while not Cursed"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}}," of Curses on you {variant:3}10% additional Block chance while not Cursed"}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," from Hits is Converted to a random Element"}c["+400 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=400,name="Evasion",keywordFlags=0}},nil}c["+170 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=170,name="EnergyShield",keywordFlags=0}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootQuantity",keywordFlags=0}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}c["Raging Spirits' Hits always Ignite"]={nil,"Raging Spirits' Hits always Ignite"}c["100% increased Duration of Curses on you"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=0}}," of Curses on you"}c["8% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["Enemy you've Killed Recently Cannot Be Stunned while on Full Energy Shield"]={nil,"Enemy you've Killed Recently Cannot Be Stunned while on Full Energy Shield"}c["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently 2% increased Attack and Cast Speed for each corpse consumed recently"]={nil,"Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently 2% increased Attack and Cast Speed for each corpse consumed recently"}c["6% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["12% increased Physical Damage"]={{[1]={flags=0,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["70% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["50% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=50,name="LootRarity",keywordFlags=0}},nil}c["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=65536,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,type="INC",value=8,name="FireDamage",keywordFlags=0}},nil}c["80% increased Physical Damage"]={{[1]={flags=0,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 98 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=98,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["8% chance to Block while affected by Determination {variant:10}8% additional Physical Damage Reduction while affected by Determination"]={{[1]={[1]={type="SkillName",skillName="Determination"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}}," while affected by{variant:10}8% additional Physical Damage Reduction while affected by Determination"}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike"}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=5,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="EnemyIgniteChance",keywordFlags=0}},nil}c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Energy Shield on Kill"}c["15% reduced Flask Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}c["1.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}},nil}c["Purity of Lightning Reserves no Mana {variant:13}Wrath Reserves no Mana"]={nil,"Purity of Lightning Reserves no Mana {variant:13}Wrath Reserves no Mana"}c["Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets Skills fire an additional Projectile"]={nil,"Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets Skills fire an additional Projectile"}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={flags=0,type="INC",value=60,name="Damage",keywordFlags=0}}," with Hits and Ailments against Enemies affected by 3 Spider's Webs Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"}c["Nearby Allies' Damage with Hits is Lucky"]={nil,"Nearby Allies' Damage with Hits is Lucky"}c["15% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},nil}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["Minions have 13% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"}c["50% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["20% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["20% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies"}c["+36% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=36,name="CritMultiplier",keywordFlags=0}},nil}c["+600 Strength and Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=600,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="Int",keywordFlags=0}}," Requirement"}c["5% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Str",div=10},flags=1,type="BASE",keywordFlags=0,name="FireMin",value=4},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Str",div=10},flags=1,type="BASE",keywordFlags=0,name="FireMax",value=7}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-50,name="FireResist",keywordFlags=0}},nil}c["Immunity to Ignite during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=0}},nil}c["8% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=8,name="CritChance",keywordFlags=0}},nil}c["30% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["8% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=20,name="EnemyStunDuration",keywordFlags=0}}," to double "}c["35% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 173 to 213 Physical Damage"]={{[1]={flags=0,type="BASE",value=173,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=213,name="PhysicalMax",keywordFlags=0}},nil}c["+60 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=60,name="EnergyShield",keywordFlags=0}},nil}c["24% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["You Cannot Be Shocked While Frozen"]={nil,"You Cannot Be Shocked While Frozen"}c["18% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=18,name="LootRarity",keywordFlags=0}},nil}c["4% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["+10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsCold",keywordFlags=0}}," while affected by Purity of Elements"}c["You and your Minions have 4% Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["100% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=100,name="BlockChanceConv",keywordFlags=0}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill"}c["100% increased Stun Duration against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=4,type="INC",value=100,name="EnemyStunDuration",keywordFlags=0}},nil}c["+17 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=17,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="Int",keywordFlags=0}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Left ring slot: Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times"}c["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ClawAttackSpeedAppliesToUnarmed",flags=0}},nil}c["235% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"}c["You can apply an additional Curse"]={nil,"You can apply an additional Curse"}c["Adds 36 to 50 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=36,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["30% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill "}c["20% increased Arrow Speed"]={{[1]={flags=8192,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["Cannot be Blinded 25% chance to create a Smoke Cloud when Hit"]={nil,"Cannot be Blinded 25% chance to create a Smoke Cloud when Hit"}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["+190 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=190,name="Evasion",keywordFlags=0}},nil}c["Recover 60 Life when you Ignite an Enemy"]={nil,"Recover 60 Life when you Ignite an Enemy"}c["+10 to all Attributes"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",keywordFlags=0}},nil}c["Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit"]={nil,"Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit"}c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,type="BASE",value=20,name="DamageLifeLeech",keywordFlags=0}}," Overkill is "}c["25% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}c["8% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=8,name="Evasion",keywordFlags=0}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks {variant:1}120% increased Evasion Rating"]={{[1]={flags=0,type="BASE",value=188,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=262,name="ColdMax",keywordFlags=0}}," to Bow Attacks {variant:1}120% increased "}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire"}c["Auras you Cast grant +1% Physical Damage Reduction to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1,name="PhysicalDamageReduction",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["+1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},nil}c["Cannot be Poisoned"]={nil,"Cannot be Poisoned"}c["130% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=130,name="CritChance",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=4096}},nil}c["10% increased Scorching Ray beam length"]={{},"beam length"}c["30% increased Totem Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=16384}},nil}c["20% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="LightningDamageManaLeech",keywordFlags=0}},nil}c["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"}c["Projectiles from Attacks have 20% 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"]={nil,"Projectiles from Attacks have 20% 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"}c["Cannot be Stunned while Leeching"]={nil,"Cannot be Stunned while Leeching"}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["30% increased Area of Effect"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["Golems have 100% increased Movement Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["113% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=113,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."}c["30% chance to Avoid being Frozen during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="AvoidFrozen",keywordFlags=0}},nil}c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death"}c["+120 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=120,name="Accuracy",keywordFlags=0}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield +5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={type="PerStat",stat="Evasion",div=5},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}}," per 5 Armour on Equipped Shield +5 to Armour on Equipped Shield"}c["9% increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["Hits with this Weapon always inflict Elemental Ailments"]={nil,"Hits with this Weapon always inflict Elemental Ailments"}c["Your Lightning Damage can Freeze but not Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanFreeze",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="LightningCannotShock",flags=0}},nil}c["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=120,name="CritChance",keywordFlags=0}},nil}c["Culling Strike 30% increased Damage against Rare and Unique Enemies"]={nil,"Culling Strike 30% increased Damage against Rare and Unique Enemies"}c["Trigger a Socketed Spell when you Use a Skill"]={nil,"Trigger a Socketed Spell when you Use a Skill"}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["Enemies on Consecrated Ground you create during Effect take 10% increased Damage"]={nil,"Enemies on Consecrated Ground you create during Effect take 10% increased Damage"}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={nil,"Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"}c["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["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["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"]={nil,"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"}c["+18% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["Totems gain +10% to all Elemental Resistances"]={nil,"Totems gain +10% to all Elemental Resistances"}c["50% chance to be inflicted with Bleeding when Hit by an Attack Gore Footprints"]={{}," to be inflicted with Bleeding when Hit by an Attack Gore Footprints"}c["Adds 1 to 53 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=53,name="LightningMax",keywordFlags=0}},nil}c["25% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=25,name="LightningDamage",keywordFlags=0}},nil}c["Your Hits can't be Evaded by Blinded Enemies Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="BASE",value=10,name="FirePenetration",keywordFlags=0}},"Your Hits can't be Evaded by Blinded Enemies "}c["+15 to Intelligence"]={{[1]={flags=0,type="BASE",value=15,name="Int",keywordFlags=0}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you"}c["Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=1,type="BASE",value=16,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}}," while you have a Bestial Minion"}c["+16% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=16,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="LightningResist",keywordFlags=0}},nil}c["8% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["15% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["25% chance on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground"}c["30% increased Damage when you have no Energy Shield {variant:2}100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," when you have no Energy Shield {variant:2}100% increased Armour when you have no Energy Shield"}c["3% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["25% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["Grants level 20 Summon Bestial Ursa Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonBeastialUrsa",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Minions deal 1% increased Damage per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="LIST",value={mod={flags=0,type="INC",value=1,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Purity of Fire Reserves no Mana"]={nil,"Purity of Fire Reserves no Mana"}c["15% increased Cold Damage"]={{[1]={flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["3% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=3,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="AvoidIgnite",keywordFlags=0}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike 30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="MovementSpeed",keywordFlags=0}}," to gain a Flask Charge when you deal a Critical Strike 30% increased "}c["Life Regeneration is applied to Energy Shield instead"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ZealotsOath",flags=0}},nil}c["20% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="INC",value=20,name="Armour",keywordFlags=0}},nil}c["Minions have 100% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=15,name="Evasion",keywordFlags=0}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["Perfect Agony"]={nil,"Perfect Agony"}c["7% increased Attributes"]={{[1]={flags=0,type="INC",value=7,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=7,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect"}c["+80 to Armour"]={{[1]={flags=0,type="BASE",value=80,name="Armour",keywordFlags=0}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby {variant:3}{crafted}6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,type="INC",value=22,name="Speed",keywordFlags=0}}," while a Rare or Unique Enemy is Nearby {variant:3}{crafted}6% increased Damage "}c["30% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,type="BASE",value=8,name="AreaOfEffect",keywordFlags=8192}},"% increased for each "}c["100% increased Accuracy Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=100,name="Accuracy",keywordFlags=0}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,nil}c["12% increased maximum Mana"]={{[1]={flags=0,type="INC",value=12,name="Mana",keywordFlags=0}},nil}c["3% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="INC",value=3,name="Damage",keywordFlags=0}},nil}c["20% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=20,name="ManaLeechRate",keywordFlags=0}},nil}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=700,name="PhysicalDamage",keywordFlags=0}},nil}c["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["You cannot be Hindered"]={nil,"You cannot be Hindered"}c["Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={flags=0,type="BASE",value=10,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="ChaosMax",keywordFlags=0}}," for each Spider's Web on the Enemy"}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire"}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect"}c["25% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,type="BASE",value=25,name="DamageTaken",keywordFlags=0}}," to Taunt on Hit 6% reduced "}c["15% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage"}c["Minion Instability"]={{[1]={value="Minion Instability",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["20% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="PowerChargesDuration",keywordFlags=0}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+40% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=4,type="BASE",value=40,name="CritMultiplier",keywordFlags=0}},nil}c["75% chance to cause Enemies to Flee on use {variant:1}100% increased Charges used"]={{[1]={flags=0,type="BASE",value=75,name="FlaskChargesUsed",keywordFlags=0}}," to cause Enemies to Flee on use {variant:1}100% increased "}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"}c["Adds 260 to 285 Physical Damage"]={{[1]={flags=0,type="BASE",value=260,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=285,name="PhysicalMax",keywordFlags=0}},nil}c["+15 to maximum Mana"]={{[1]={flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}},nil}c["Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice"]={nil,"Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice"}c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=40}},nil}c["1% increased Maximum Life per Abyss Jewel affecting you"]={{[1]={flags=0,type="INC",value=1,name="Life",keywordFlags=0}}," per Abyss Jewel affecting you"}c["259% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=259,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamage",keywordFlags=0}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed"}c["Minions have 2% Chance to Block"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions deal 10% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=8192}},nil}c["Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire"}c["+5% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,type="BASE",value=5,name="MaxLifeLeechRate",keywordFlags=0}},nil}c["150% increased Physical Damage"]={{[1]={flags=0,type="INC",value=150,name="PhysicalDamage",keywordFlags=0}},nil}c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit"}c["Adds 10 to 14 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain an Endurance Charge on Kill 10% more 10% reduced Physical Damage taken while at maximum Endurance Charges"}c["Adds 12 to 24 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="PhysicalMax",keywordFlags=0}},nil}c["When used in the Synthesiser, the new item will have an additional Herald Modifier"]={nil,"When used in the Synthesiser, the new item will have an additional Herald Modifier"}c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Wrath Reserves no Mana {variant:14}Envy Reserves no Mana"]={nil,"Wrath Reserves no Mana {variant:14}Envy Reserves no Mana"}c["50% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",keywordFlags=0}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently"]={nil,"Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently"}c["+20 to Dexterity"]={{[1]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["22% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=22,name="ElementalDamage",keywordFlags=0}},nil}c["14% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["+30 to Maximum Mana"]={{[1]={flags=0,type="BASE",value=30,name="Mana",keywordFlags=0}},nil}c["Items and Gems have 50% increased Attribute Requirements Chaos Damage can Ignite, Chill and Shock"]={nil,"Items and Gems have 50% increased Attribute Requirements Chaos Damage can Ignite, Chill and Shock"}c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,type="LIST",value={skillId="BloodOffering",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["26% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",keywordFlags=0}},nil}c["8% increased Physical Damage for each Hit you've Blocked Recently"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each Hit you've Blocked Recently"}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom"}c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,type="INC",value=40,name="FlaskEffect",keywordFlags=0}}," of Chilled Ground"}c["Adds 16 to 24 Physical Damage"]={{[1]={flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="PhysicalMax",keywordFlags=0}},nil}c["25% chance to Poison on Hit during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=25,name="PoisonChance",keywordFlags=0}},nil}c["Gain 14% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=14,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["+15% to Cold and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Cold and s"}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,type="MORE",value=40,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["10% increased Movement Speed"]={{[1]={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["12% increased Armour"]={{[1]={flags=0,type="INC",value=12,name="Armour",keywordFlags=0}},nil}c["4% increased Attack Speed"]={{[1]={flags=1,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["5% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=5,name="AuraEffect",keywordFlags=0}},nil}c["Adds 15 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyStunDuration",keywordFlags=0}},nil}c["+90 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=90,name="Evasion",keywordFlags=0}},nil}c["28% increased Spell Damage"]={{[1]={flags=2,type="INC",value=28,name="Damage",keywordFlags=0}},nil}c["+4% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=4,name="BlockChance",keywordFlags=0}}," Damage"}c["200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire"}c["Adds 30 to 40 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="PhysicalMax",keywordFlags=0}},nil}c["60% increased Spell Damage"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["+25 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=25,name="LifeOnKill",keywordFlags=0}},nil}c["20% reduced Mana Cost of Skills during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-20,name="ManaCost",keywordFlags=0}},nil}c["+10% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalResist",keywordFlags=0}},nil}c["35% increased Burning Damage"]={{[1]={flags=8,type="INC",value=35,name="FireDamage",keywordFlags=0}},nil}c["Your Golems are aggressive"]={nil,"Your Golems are aggressive"}c["90% increased Armour"]={{[1]={flags=0,type="INC",value=90,name="Armour",keywordFlags=0}},nil}c["Your Lightning Damage can Poison"]={nil,"Your Lightning Damage can Poison"}c["70 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=70,name="LifeRegen",keywordFlags=0}},nil}c["Attack Projectiles Return to You after hitting targets"]={nil,"Attack Projectiles Return to You after hitting targets"}c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HavePhysicalGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveLightningGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[3]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveColdGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[4]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveFireGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[5]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveChaosGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Damage Penetrates 3% Cold Resistance"]={{[1]={flags=0,type="BASE",value=3,name="ColdPenetration",keywordFlags=0}},nil}c["60% increased Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=60,name="AreaOfEffect",keywordFlags=2}},nil}c["32% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=32,name="CritChance",keywordFlags=0}},nil}c["Adds 20 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=20,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="ColdMax",keywordFlags=0}},nil}c["13% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="INC",value=13,name="AreaOfEffect",keywordFlags=0}},nil}c["Adds 21 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=21,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="FireMax",keywordFlags=0}},nil}c["30% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="ActorCondition",actor="enemy",var="Maimed"},flags=0,type="INC",keywordFlags=0,name="Duration",value=30}},nil}c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="ElementalDamage",keywordFlags=0}},nil}c["220% increased Armour"]={{[1]={flags=0,type="INC",value=220,name="Armour",keywordFlags=0}},nil}c["80% increased Curse Duration"]={{[1]={flags=0,type="INC",value=80,name="Duration",keywordFlags=2}},nil}c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="LightningDamageConvertToFire",keywordFlags=0},[3]={flags=0,type="BASE",value=50,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootRarity",keywordFlags=0}},nil}c["+6% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=6,name="FireResistMax",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=6,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=6,name="LightningResistMax",keywordFlags=0}},nil}c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=18,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=56,name="LightningMax",keywordFlags=0}},nil}c["20% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["+8 Mana gained when you Block 4% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=8,name="Mana",keywordFlags=0}}," gained when you Block 4% additional Chance to Block "}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=30,name="Mana",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["Adds 85 to 160 Physical Damage"]={{[1]={flags=0,type="BASE",value=85,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=160,name="PhysicalMax",keywordFlags=0}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,type="BASE",value=14,name="Mana",keywordFlags=0}},nil}c["8% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=8,name="AttackDodgeChance",keywordFlags=0}},nil}c["40% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=40,name="Armour",keywordFlags=0}},nil}c["Adds 1 to 13 Lightning Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=1,type="BASE",value=13,name="LightningMax",keywordFlags=0}},nil}c["13% increased Physical Damage"]={{[1]={flags=0,type="INC",value=13,name="PhysicalDamage",keywordFlags=0}},nil}c["7% Global chance to Blind Enemies on hit"]={nil,"7% Global chance to Blind Enemies on hit"}c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=-25,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems"]={nil,"Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems"}c["Adds 55 to 75 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=55,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=75,name="ColdMax",keywordFlags=0}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["Reflects 44 Physical Damage to Attackers on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block"}c["10% increased Skeleton Cast speed"]={{[1]={flags=16,type="INC",value=10,name="Speed",keywordFlags=0}}," Skeleton "}c["All Attacks with this Weapon are Critical Strikes"]={{[1]={value={key="CritChance",value=100},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"}c["50% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=1048576}},nil}c["10% chance to gain a Power Charge on Hit against Enemies that are on Full Life"]={{}," to gain a Power Charge on Hit "}c["No Block Chance"]={{[1]={value={key="BlockChance",value=0},type="LIST",keywordFlags=0,name="ArmourData",flags=0}},nil}c["8% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=8,name="ChaosDamage",keywordFlags=0}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You"}c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IronReflexes",flags=0}},nil}c["Socketed Gems have 10% increased Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems"}c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-30,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["+1 to Level of Socketed Strength Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="strength",value=1},name="GemProperty",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["50% chance on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground"}c["Damage Penetrates 2% Fire Resistance"]={{[1]={flags=0,type="BASE",value=2,name="FirePenetration",keywordFlags=0}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use"}c["60% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=60,name="Evasion",keywordFlags=0}},nil}c["12% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=12,name="Evasion",keywordFlags=0}},nil}c["-15% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-15,name="FireResist",keywordFlags=0}},nil}c["50% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=50,name="FlaskRecovery",keywordFlags=0}},nil}c["Adds 10 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=35,name="LightningResist",keywordFlags=0}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill"}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends"}c["Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"}c["Minions have 10% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["18% increased Strength"]={{[1]={flags=0,type="INC",value=18,name="Str",keywordFlags=0}},nil}c["Adds 30 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy"}c["-25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=-25,name="CritMultiplier",keywordFlags=0}},nil}c["30% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=30,name="Duration",keywordFlags=0}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark"}c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=150,name="CritChance",keywordFlags=0}},nil}c["30% increased Elemental Damage with Attack Skills 12% increased Dexterity"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}}," with Attack Skills 12% increased Dexterity"}c["Socketed Gems are Supported by level 10 Cast When Stunned"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportCastOnStunned",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"]={nil,"Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"}c["5% increased maximum Mana"]={{[1]={flags=0,type="INC",value=5,name="Mana",keywordFlags=0}},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["10% of Wand Physical Damage Added as Cold Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["125% increased Energy Shield"]={{[1]={flags=0,type="INC",value=125,name="EnergyShield",keywordFlags=0}},nil}c["180% increased Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="EnergyShield",keywordFlags=0}},nil}c["+12% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0}},nil}c["Melee Critical Strikes cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}c["+125 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=125,name="Evasion",keywordFlags=0}},nil}c["10% increased Damage taken"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"}c["+450 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=450,name="Accuracy",keywordFlags=0}},nil}c["5% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=5,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=5,name="AvoidIgnite",keywordFlags=0}},nil}c["25% increased Spell Damage"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={nil,"Projectile Attack Skills have 60% increased Critical Strike Chance"}c["+20 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}},nil}c["+21 to all Attributes"]={{[1]={flags=0,type="BASE",value=21,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=21,name="Int",keywordFlags=0}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}}," while there is a Rare or Unique Enemy Nearby"}c["50% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=0}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["+6 to Maximum Life per Elder Item Equipped"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}}," per Elder Item Equipped"}c["-10 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-10,name="ChaosDamageTaken",keywordFlags=0}},nil}c["9% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["10% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["25% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-25,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground"}c["20% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["Minions deal 20% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% increased Mine Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=8192}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,type="INC",value=6,name="Mana",keywordFlags=0}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-40,name="LootRarity",keywordFlags=0}},nil}c["Adds 36 to 102 Physical Damage"]={{[1]={flags=0,type="BASE",value=36,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=102,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 103 to 245 Physical Damage"]={{[1]={flags=0,type="BASE",value=103,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=245,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["100% increased Spell Damage"]={{[1]={flags=2,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["1% increased Attack Speed per 200 Accuracy Rating"]={{[1]={[1]={type="PerStat",stat="Accuracy",div=200},flags=1,type="INC",value=1,name="Speed",keywordFlags=0}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="LifeOnKill",keywordFlags=0}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,type="INC",value=25,name="ColdDamage",keywordFlags=0}},nil}c["50% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,type="INC",value=-50,name="Life",keywordFlags=0}}," Maximum Recovery per Leech"}c["20% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",keywordFlags=0}},nil}c["15% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=15,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=45,name="Evasion",keywordFlags=0}},nil}c["100% increased Armour"]={{[1]={flags=0,type="INC",value=100,name="Armour",keywordFlags=0}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life"}c["5% increased Damage for each Trap and Mine you have"]={{[1]={flags=0,type="INC",value=5,name="Damage",keywordFlags=4096}}," for each and Mine you have"}c["18% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=18,name="CurseEffect",keywordFlags=0}},nil}c["+5 to Strength"]={{[1]={flags=0,type="BASE",value=5,name="Str",keywordFlags=0}},nil}c["Hatred Reserves no Mana {variant:8}Purity of Ice Reserves no Mana"]={nil,"Hatred Reserves no Mana {variant:8}Purity of Ice Reserves no Mana"}c["+7% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=7,name="BlockChance",keywordFlags=0}}," Damage"}c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=200,name="Armour",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["+24 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=24,name="Mana",keywordFlags=0}}," gained when you Block"}c["With at least 40 Intelligence in Radius, Magma Orb"]={nil,"With at least 40 Intelligence in Radius, Magma Orb"}c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["+450 to Armour"]={{[1]={flags=0,type="BASE",value=450,name="Armour",keywordFlags=0}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=32,name="EnergyShield",keywordFlags=0}},nil}c["Minions' Attacks deal 8 to 16 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=8,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=16,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["6% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=6,name="ElementalDamage",keywordFlags=0}},nil}c["2% of Damage Leeched as Life and Mana if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="BASE",value=2,name="DamageLeech",keywordFlags=0}},nil}c["6% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=5},flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["13% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=13,name="AuraEffect",keywordFlags=0}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["Life Leech from Hits with this Weapon applies instantly"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0}},nil}c["+15% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=15,name="ColdResist",keywordFlags=0}},nil}c["380% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=380,name="Evasion",keywordFlags=0}},nil}c["-1 Intelligence per 1 Intelligence on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Int",div=1},flags=0,type="BASE",value=-1,name="Int",keywordFlags=0}}," on Allocated Passives in Radius"}c["+36% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=36,name="ColdResist",keywordFlags=0}},nil}c["1% reduced Elemental Damage taken when Hit per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=-1,name="ElementalDamageTakenWhenHit",keywordFlags=0}},nil}c["-60% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=-60,name="LightningResist",keywordFlags=0}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds"}c["90% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=90,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-25,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"}c["20% increased Damage while not on full Energy Shield"]={{[1]={[1]={type="Condition",neg=true,var="FullEnergyShield"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 15% chance to Gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain an Endurance Charge when you gain a Power Charge 15% chance to Gain a Power Charge if you or your s kill an Enemy"}c["Trigger a Socketed Lightning Spell on Hit Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={nil,"Trigger a Socketed Lightning Spell on Hit Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"}c["40% increased Lightning Damage with Attack Skills +200 Strength Requirement"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}}," with Attack Skills +200 Strength Requirement"}c["12% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}c["+100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=100,name="Accuracy",keywordFlags=0}}," on Unallocated Passives in Radius"}c["25% increased Attack and Cast Speed while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}}," with Attack Skills"}c["20% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=20,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=20,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Attacks have 30% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}c["Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently"}c["25% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=25,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=25,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=25,name="AvoidIgnite",keywordFlags=0}},nil}c["3% increased Attack Speed with Bows"]={{[1]={flags=8193,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Adds 65 to 155 Chaos Damage"]={{[1]={flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=155,name="ChaosMax",keywordFlags=0}},nil}c["While at Maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=1}},nil}c["40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=5,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"}c["Nearby Enemies have -20% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=-20,name="ChaosResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["+10 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0}},nil}c["Auras you Cast grant 5% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="Speed",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["Elemental Resistances are Zero"]={{[1]={value=0,type="OVERRIDE",keywordFlags=0,name="FireResist",flags=0},[2]={value=0,type="OVERRIDE",keywordFlags=0,name="ColdResist",flags=0},[3]={value=0,type="OVERRIDE",keywordFlags=0,name="LightningResist",flags=0}},nil}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Minions have 30% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% increased Character Size Spell Skills deal no Damage"]={{[1]={flags=2,type="INC",value=15,name="Damage",keywordFlags=0}}," Character Size Skills deal no "}c["50% increased Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="EnergyShield",keywordFlags=0}},nil}c["Adds 300 to 380 Physical Damage"]={{[1]={flags=0,type="BASE",value=300,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=380,name="PhysicalMax",keywordFlags=0}},nil}c["-7 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-7,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["50% increased Damage if you have Shocked an Enemy Recently 40% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=0}}," if you have Shocked an Enemy Recently 40% increased Effect of Shock"}c["40% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=40,name="FlaskEffect",keywordFlags=0}}," of Shock"}c["50% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=4,type="INC",value=50,name="Damage",keywordFlags=0}}," with Hits and Ailments "}c["Herald of Agony has 79% increased Buff Effect Herald of Agony has 38% reduced Mana Reservation"]={nil,"Herald of Agony has 79% increased Buff Effect Herald of Agony has 38% reduced Mana Reservation"}c["50% less Mana Reserved"]={{[1]={flags=0,type="MORE",value=-50,name="ManaReserved",keywordFlags=0}},nil}c["Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"]={nil,"Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={nil,"Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges per Abyss Jewel affecting you"}c["25% increased Movement Speed"]={{[1]={flags=0,type="INC",value=25,name="MovementSpeed",keywordFlags=0}},nil}c["Socketed Gems have 20% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-20,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["160% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,type="INC",value=17,name="Speed",keywordFlags=0}},nil}c["began Recently"]={nil,"began Recently"}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use"}c["10% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+80 to Intelligence"]={{[1]={flags=0,type="BASE",value=80,name="Int",keywordFlags=0}},nil}c["Minions have 6% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+50 to maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["Primordial"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:PrimordialItem",flags=0}},nil}c["16% increased Totem Life"]={{[1]={flags=0,type="INC",value=16,name="TotemLife",keywordFlags=0}},nil}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["30% increased Damage of each Damage Type for which you have a matching Golem"]={{[1]={[1]={type="Condition",var="HavePhysicalGolem"},flags=0,type="INC",value=30,name="PhysicalDamage",keywordFlags=0},[2]={[1]={type="Condition",var="HaveLightningGolem"},flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=0},[3]={[1]={type="Condition",var="HaveColdGolem"},flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=0},[4]={[1]={type="Condition",var="HaveFireGolem"},flags=0,type="INC",value=30,name="FireDamage",keywordFlags=0},[5]={[1]={type="Condition",var="HaveChaosGolem"},flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["140% increased Physical Damage"]={{[1]={flags=0,type="INC",value=140,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"}c["1% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["10% increased Movement Speed while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}c["Vaal Skills deal 100% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills deal 100% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"}c["30% increased Life Recovery Rate while affected by Vitality {variant:49}1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={[1]={type="SkillName",skillName="Vitality"},flags=0,type="INC",value=30,name="LifeRecoveryRate",keywordFlags=0}}," while affected by{variant:49}1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"}c["180% increased Armour"]={{[1]={flags=0,type="INC",value=180,name="Armour",keywordFlags=0}},nil}c["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,type="LIST",value={skillId="VoidGaze",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["1% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=256,type="INC",value=1,name="PhysicalDamage",keywordFlags=0}},nil}c["+23% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=23,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="LightningResist",keywordFlags=0}},nil}c["1.5% of Maximum Life Regenerated per second while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="BASE",value=1.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["Gain Life and Mana from Leech instantly on Critical Strike"]={nil,"Gain Life and Mana from Leech instantly on Critical Strike"}c["Minions have 6% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}c["187% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=187,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["33% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=33,name="ElementalDamage",keywordFlags=0}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,type="INC",value=15,name="Mana",keywordFlags=0}},nil}c["5% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you"}c["10% chance to gain a Power Charge on Hit against Enemies that are on Full Life Your Critical Strikes with Attacks Maim Enemies"]={{}," to gain a Power Charge on Hit Your Critical Strikes Maim Enemies"}c["100% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=100,name="OnslaughtEffect",keywordFlags=0}},nil}c["+1 Mana gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="ManaOnKill",keywordFlags=0}},nil}c["5% increased Experience gain {variant:2,3}3% increased Experience gain"]={{}," Experience gain {variant:2,3}3% increased Experience gain"}c["20% increased Elemental Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"}c["No Critical Strike Multiplier"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoCritMultiplier",flags=0}},nil}c["2% additional Block Chance while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Gain 5% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["8% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}c["Socketed Gems have 30% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-30,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["2% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="INC",value=2,name="Evasion",keywordFlags=0}},nil}c["+1 to Minimum Frenzy Charges"]={{}," MinimumCharges"}c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=0}},nil}c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={nil,"Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"}c["30% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage"}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,type="LIST",value={skillId="SummonRockGolem",level=12},name="ExtraSkill",keywordFlags=0}},nil}c["+3 to Level of Socketed Golem Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="golem",value=3},name="GemProperty",keywordFlags=0}},nil}c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=4,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Adds 32 to 42 Physical Damage"]={{[1]={flags=0,type="BASE",value=32,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=42,name="PhysicalMax",keywordFlags=0}},nil}c["Skills used during Flask effect grant 800% of Mana Cost as Life"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life"}c["20% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["12% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies {variant:2}100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},[3]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",keywordFlags=0,name="FireDamage",value=25}}," to inflict Bleeding {variant:2}100% increased with Hits and Ailments "}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Adds 75 to 220 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=220,name="PhysicalMax",keywordFlags=0}},nil}c["13% increased Area Damage"]={{[1]={flags=512,type="INC",value=13,name="Damage",keywordFlags=0}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,type="INC",value=120,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}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["+5 to Dexterity"]={{[1]={flags=0,type="BASE",value=5,name="Dex",keywordFlags=0}},nil}c["10% increased Cold Damage"]={{[1]={flags=0,type="INC",value=10,name="ColdDamage",keywordFlags=0}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"}c["+33 to maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",keywordFlags=0}},nil}c["+15% to Fire and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}}," Fire and s"}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee on Hit"}c["+1 to maximum number of Zombies per 300 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=300},flags=0,type="BASE",value=1,name="ActiveZombieLimit",keywordFlags=0}},nil}c["You cannot be Stunned while at maximum Endurance Charges"]={nil,"You cannot be Stunned while at maximum Endurance Charges"}c["12% chance to Knock Enemies Back on hit"]={{[1]={flags=0,type="BASE",value=12,name="EnemyKnockbackChance",keywordFlags=0}},nil}c["Cannot be Frozen if Dexterity is higher than Intelligence"]={nil,"Cannot be Frozen if Dexterity is higher than Intelligence"}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike"}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used"}c["+160 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=160,name="EnergyShield",keywordFlags=0}},nil}c["to 30% increased Damage to targets"]={nil,"to 30% increased Damage to targets"}c["220% increased Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EnergyShield",keywordFlags=0}},nil}c["28% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}c["+25 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},nil}c["Allocated Small Passive Skills in Radius grant nothing"]={nil,"Allocated Small Passive Skills in Radius grant nothing"}c["30% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"}c["+290 to Armour and Evasion Rating"]={{[1]={flags=0,type="BASE",value=290,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Golems have +900 to Armour"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=900,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["22% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=22,name="ElementalDamage",keywordFlags=0}},nil}c["Passives in Radius can be Allocated without being connected to your tree"]={{[1]={value={key="intuitiveLeap",value=true},type="LIST",keywordFlags=0,name="JewelData",flags=0}},nil}c["120% of Block Chance applied to Spells when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=120,name="BlockChanceConv",keywordFlags=0}},nil}c["20% chance to Block Spells if you've Blocked an Attack Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,type="BASE",value=20,name="SpellBlockChance",keywordFlags=0}},nil}c["90% increased Physical Damage"]={{[1]={flags=0,type="INC",value=90,name="PhysicalDamage",keywordFlags=0}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"]={{}," Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"}c["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death"}c["Adds 33 to 47 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=33,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=47,name="ColdMax",keywordFlags=0}},nil}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,name="Speed",keywordFlags=16384}},nil}c["Melee Attacks have 8% chance to cause Bleeding"]={{[1]={flags=256,type="BASE",value=8,name="BleedChance",keywordFlags=0}},nil}c["50% increased Stun Duration on you 4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you 4% increased Damage "}c["+10 to maximum Life"]={{[1]={flags=0,type="BASE",value=10,name="Life",keywordFlags=0}},nil}c["Take 30 Chaos Damage per Second during Flask effect"]={nil,"30 Chaos Damage per Second during Flask effect"}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 15% of your Reserved Mana to"}c["3% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={flags=0,type="BASE",value=-2,name="ManaCost",keywordFlags=0}}," Total for each Corrupted Item Equipped"}c["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by "}c["16% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=16,name="CritChance",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Kill {variant:22}20% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill {variant:22}20% chance to gain a Power Charge on Kill"}c["Minions deal 40% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-4,name="ManaCost",keywordFlags=0}},nil}c["+50% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=50,name="ChaosResist",keywordFlags=0}},nil}c["+8 to Intelligence"]={{[1]={flags=0,type="BASE",value=8,name="Int",keywordFlags=0}},nil}c["Minions deal 35% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+2 to Level of Socketed Movement Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="movement",value=2},name="GemProperty",keywordFlags=0}},nil}c["30% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="LightningDamageManaLeech",keywordFlags=0}},nil}c["20% chance to gain a Power Charge when you place a Totem"]={{}," to gain a Power Charge when you place a "}c["15% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken"}c["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedFireDamage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdToFire",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["30% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=10,name="LifeOnHit",keywordFlags=0}},nil}c["You can apply an additional Curse 16% increased Cast Speed with Curse Skills"]={nil,"You can apply an additional Curse 16% increased Cast Speed with Curse Skills"}c["4% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=4,name="Speed",keywordFlags=0}},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["8% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-8,name="ManaCost",keywordFlags=0}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed"}c["9% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy"]={nil,"With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy"}c["12% increased Fire Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",keywordFlags=0}},nil}c["You have Onslaught while not on Low Mana Lose 40 Mana per Second"]={nil,"You have Onslaught while not on Low Mana Lose 40 Mana per Second"}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy"}c["5% increased Experience gain"]={{}," Experience gain"}c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed"}c["Attacks have 60% chance to Poison while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=1,type="BASE",value=60,name="PoisonChance",keywordFlags=0}},nil}c["+1 to Level of Socketed Minion Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="minion",value=1},name="GemProperty",keywordFlags=0}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," if you Summoned a in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"}c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=30}},nil}c["Adds 21 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=21,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=140,name="CritChance",keywordFlags=0}},nil}c["1% reduced Mana Reserved per 250 total attributes"]={{[1]={flags=0,type="INC",value=-1,name="ManaReserved",keywordFlags=0}}," per 250 total attributes"}c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Gain Unholy Might for 3 seconds on Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage"}c["Cannot be inflicted with Bleeding +5 to Maximum number of Crab Barriers"]={nil,"Cannot be inflicted with Bleeding +5 to Maximum number of Crab Barriers"}c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Socketed Curse Gems have 12% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="curse"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-12,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["+6 to Maximum Life per Elder Item Equipped 8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}}," per Elder Item Equipped 8% increased Effect of non-Damaging Ailments per Elder Item Equipped"}c["Damage Penetrates 10% Fire Resistance"]={{[1]={flags=0,type="BASE",value=10,name="FirePenetration",keywordFlags=0}},nil}c["Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 30 Chaos Damage to Melee Attackers"}c["Reflects 20 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers"}c["Adds 250 to 300 Cold Damage to Counterattacks"]={{[1]={flags=0,type="BASE",value=250,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="ColdMax",keywordFlags=0}}," to Counterattacks"}c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"}c["20% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["Adds 5 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["23% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,type="INC",value=23,name="Damage",keywordFlags=0}},nil}c["+7 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=7,name="LifeOnKill",keywordFlags=0}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage"}c["+11 to all Attributes"]={{[1]={flags=0,type="BASE",value=11,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=11,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=11,name="Int",keywordFlags=0}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,type="INC",value=60,name="FireDamage",keywordFlags=0}},nil}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have an additional 2% chance to receive a Critical Strike"}c["10% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageLifeLeech",keywordFlags=0}}," Overkill is "}c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block"}c["13% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=13,name="ChaosDamage",keywordFlags=0}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-40,name="FlaskEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," Elemental Equilibrium {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect"}c["35% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=35,name="Accuracy",keywordFlags=0}},nil}c["50% reduced Experience gain 0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="INC",value=-50,name="PhysicalDamage",keywordFlags=0}}," Experience gain 0.4% of Leeched as Mana"}c["10% additional Block chance while not Cursed {variant:3}20% additional Spell Block chance while Cursed"]={{[1]={flags=2,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," while not Cursed {variant:3}20% additional Block chance while Cursed"}c["20% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=-20,name="Duration",keywordFlags=0}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"}c["15% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",keywordFlags=0}},nil}c["5% increased Strength"]={{[1]={flags=0,type="INC",value=5,name="Str",keywordFlags=0}},nil}c["50% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={type="StatThreshold",stat="ManaReserved",upper=true,threshold=0},flags=2,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Traps and Mines deal 4 to 13 additional Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=12288},[2]={flags=0,type="BASE",value=13,name="PhysicalMax",keywordFlags=12288}},nil}c["16% increased Mine Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=8192}},nil}c["Adds 19 to 30 Chaos Damage"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="ChaosMax",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges"}c["Arrows that Pierce cause Bleeding"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ArrowsThatPierceCauseBleeding",flags=0}},nil}c["110% increased Armour"]={{[1]={flags=0,type="INC",value=110,name="Armour",keywordFlags=0}},nil}c["+100 Strength Requirement"]={{[1]={flags=0,type="BASE",value=100,name="StrRequirement",keywordFlags=0}},nil}c["2% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members"}c["20% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-20,name="MovementSpeed",keywordFlags=0}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"}c["With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"}c["Anger Reserves no Mana {variant:2}Determination Reserves no Mana"]={nil,"Anger Reserves no Mana {variant:2}Determination Reserves no Mana"}c["Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy"}c["170% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=170,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies"}c["+6% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=6,name="BlockChance",keywordFlags=0}}," Damage"}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting"}c["Gain 75 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=75,name="Armour",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["+45% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=45,name="FireResist",keywordFlags=0}},nil}c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="INC",value=5,name="ElementalDamage",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["Discipline Reserves no Mana {variant:11}Purity of Elements Reserves no Mana"]={nil,"Discipline Reserves no Mana {variant:11}Purity of Elements Reserves no Mana"}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["+160 to Armour"]={{[1]={flags=0,type="BASE",value=160,name="Armour",keywordFlags=0}},nil}c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={flags=0,type="INC",value=1,name="LootRarity",keywordFlags=0}}," per 15 Rampage Kills"}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning"}c["14% increased Melee Damage"]={{[1]={flags=256,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds"}c["22% increased Fire Damage"]={{[1]={flags=0,type="INC",value=22,name="FireDamage",keywordFlags=0}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,type="INC",value=22,name="ColdDamage",keywordFlags=0}},nil}c["36% increased Duration"]={{[1]={flags=0,type="INC",value=36,name="Duration",keywordFlags=0}},nil}c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"]={nil,"You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"}c["Recover 100% of your maximum Life on use"]={nil,"Recover 100% of your maximum Life on use"}c["70% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["35% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=35,name="EnemyStunDuration",keywordFlags=0}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage"}c["Golem Skills have 25% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=25,name="CooldownRecovery",keywordFlags=0}},nil}c["+30% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}c["Damage Penetrates 3% Fire Resistance"]={{[1]={flags=0,type="BASE",value=3,name="FirePenetration",keywordFlags=0}},nil}c["Unaffected by Temporal Chains while affected by Haste {variant:25}Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="BASE",value=70,name="ColdMin",keywordFlags=0},[2]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="BASE",value=104,name="ColdMax",keywordFlags=0}},"Unaffected bywhile affected by Haste {variant:25} while affected by Hatred"}c["40% increased Damage if you have consumed a corpse recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"}c["16% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=16,name="Accuracy",keywordFlags=0}},nil}c["40% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=10,name="ColdMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=20,name="ColdMax",keywordFlags=0}},nil}c["0.4% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.4,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["You and nearby allies have 15% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you"}c["4% chance to Block Attack Damage"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}}," Attack Damage"}c["Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=15,name="ColdMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=25,name="ColdMax",keywordFlags=0}},nil}c["+18% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ElementalResist",keywordFlags=0}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Bow"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=8192}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["8% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=8,name="SpellDodgeChance",keywordFlags=0}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger {variant:4}40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={[1]={type="SkillName",skillName="Anger"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsFire",keywordFlags=0}}," while affected by{variant:4}40% of Physical Damage Converted to Fire Damage while affected by Anger"}c["35% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned"}c["8% increased Movement Speed"]={{[1]={flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskManaRecovery",keywordFlags=0}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="LIST",value={skillId="Despair",level=21},name="ExtraCurse",keywordFlags=0}},nil}c["5% increased Skeleton Movement Speed 10% increased Skeleton Attack Speed"]={{[1]={flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}}," Skeleton 10% increased Skeleton Attack Speed"}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"}c["+35 to Strength"]={{[1]={flags=0,type="BASE",value=35,name="Str",keywordFlags=0}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity {variant:7}15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={[1]={type="SkillName",skillName="Clarity"},flags=0,type="BASE",value=18,name="ManaGainAsEnergyShield",keywordFlags=0}}," while affected by{variant:7}15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"}c["Socketed Gems are Supported by level 11 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrap",level=11},name="ExtraSupport",keywordFlags=0}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty"]={{[1]={flags=0,type="BASE",value=20,name="AttackDodgeChance",keywordFlags=0}}," while your Off Hand is empty"}c["8% additional Physical Damage Reduction while affected by Determination"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalDamageReduction",keywordFlags=0}}," while affected by Determination"}c["6% chance to Knock Enemies Back on hit"]={{[1]={flags=0,type="BASE",value=6,name="EnemyKnockbackChance",keywordFlags=0}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="BleedChance",keywordFlags=0}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline {variant:15}2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," while affected by Discipline"}c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,type="INC",value=3,name="Dex",keywordFlags=0}}," Character Size 6% increased "}c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={flags=0,type="INC",value=40,name="EnergyShieldRechargeFaster",keywordFlags=0}}," while affected by Discipline"}c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={type="PerStat",stat="Life",div=1},flags=0,type="BASE",value=0.15,name="ChaosDegen",keywordFlags=0}},nil}c["15% increased Movement Speed while affected by Grace"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," while affected by Grace"}c["25% increased Knockback Distance"]={{[1]={flags=0,type="INC",value=25,name="EnemyKnockbackDistance",keywordFlags=0}},nil}c["Adds 5 to 11 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=11,name="PhysicalMax",keywordFlags=0}},nil}c["8% chance to Dodge Spells while affected by Haste"]={{[1]={flags=0,type="BASE",value=8,name="SpellDodgeChance",keywordFlags=0}}," while affected by Haste"}c["200% increased Critical Strike Chance while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"}c["+1.8% to Critical Strike Chance while affected by Hatred {variant:27}Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="BASE",value=1.8,name="CritChance",keywordFlags=0}}," while affected by{variant:27}Damage Penetrates 15% Cold Resistance while affected by Hatred"}c["25% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=25,name="FlaskEffect",keywordFlags=0}}," of Shock"}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageConvertToCold",keywordFlags=0}}," while affected by Hatred"}c["10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=-25,name="GlobalAttributeRequirements",keywordFlags=0}},nil}c["24% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["15% more maximum Energy Shield"]={{[1]={flags=0,type="MORE",value=15,name="EnergyShield",keywordFlags=0}},nil}c["30% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["14% increased Trap Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=4096}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice"}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedChaosDamage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 19 to 29 Cold Damage"]={{[1]={flags=0,type="BASE",value=19,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="ColdMax",keywordFlags=0}},nil}c["Poison you inflict with Critical Strikes deals 100% more Damage"]={{[1]={flags=0,type="MORE",value=100,name="PoisonDamageOnCrit",keywordFlags=0}},nil}c["Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"}c["17% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=17,name="BlockChance",keywordFlags=0}},nil}c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=18,name="Defences",keywordFlags=0}},nil}c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=10,name="ProjectileSpeed",keywordFlags=0}}," to gain a Power Charge on Kill 5% increased "}c["Skills used by Traps have 20% increased Area of Effect Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={nil,"Skills used by Traps have 20% increased Area of Effect Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=10,name="CritMultiplier",keywordFlags=0}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={flags=0,type="BASE",value=1.5,name="LightningDamageManaLeech",keywordFlags=0}}," is while affected by Wrath"}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use"}c["10% chance to Dodge Attacks while affected by Grace"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}}," while affected by Grace"}c["30% more Spell Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,type="MORE",value=30,name="Damage",keywordFlags=0}},nil}c["40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageConvertToLightning",keywordFlags=0}}," while affected by Wrath"}c["Elemental Hit deals 15% increased Damage"]={nil,"Elemental Hit deals 15% increased Damage"}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"}c["32% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=32,name="ElementalDamage",keywordFlags=0}},nil}c["4% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=4,name="Speed",keywordFlags=0}},nil}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["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["You gain 8% increased Damage for each Trap You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,type="BASE",value=8,name="Damage",keywordFlags=4096}},"% increased for each You gain 8% increased Area of Effect for each Mine"}c["10% chance to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit"}c["+1 to Level of Socketed Elemental Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="elemental",value=1},name="GemProperty",keywordFlags=0}},nil}c["2% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-2,name="ManaReserved",keywordFlags=0}},nil}c["45% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=45,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["13% increased Cold Damage"]={{[1]={flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=0}},nil}c["30% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"]={nil,"Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"}c["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"]={nil,"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"}c["Nearby Allies have 4% increased Defences per 100 Strength you have"]={{[1]={[1]={type="PerStat",stat="Str",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="INC",value=4,name="Defences",keywordFlags=0}},name="ExtraAura",keywordFlags=0}}," you have"}c["38% increased Spell Damage"]={{[1]={flags=2,type="INC",value=38,name="Damage",keywordFlags=0}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty 100% increased Cold Damage while your Off Hand is empty"]={{[1]={flags=0,type="BASE",value=20,name="AttackDodgeChance",keywordFlags=0}}," while your Off Hand is empty 100% increased Cold Damage while your Off Hand is empty"}c["15% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["70% increased Spell Damage"]={{[1]={flags=2,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets"}c["15% increased Mine Duration"]={{[1]={flags=0,type="INC",value=15,name="MineDuration",keywordFlags=0}},nil}c["10% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=10,name="LightningDamage",keywordFlags=0}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"}c["+2 to Level of Socketed Chaos Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="chaos",value=2},name="GemProperty",keywordFlags=0}},nil}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=30,name="ManaRegen",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets"}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy"}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["16% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["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"]={nil,"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"}c["Gain 15 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=15,name="Mana",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"]={nil,"Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"}c["Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground"}c["12% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="INC",value=12,name="ElementalDamage",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["+30% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}c["25% increased Burning Damage"]={{[1]={flags=8,type="INC",value=25,name="FireDamage",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova {variant:1}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 {variant:1}With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles"}c["10% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["+145 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=145,name="EnergyShield",keywordFlags=0}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=210,name="EnergyShield",keywordFlags=0}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=4096}},nil}c["60% increased Block Recovery"]={{[1]={flags=0,type="INC",value=60,name="BlockRecovery",keywordFlags=0}},nil}c["Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Forking"}c["25% chance to avoid Fire Damage when Hit {variant:2}You always Ignite while Burning"]={{[1]={flags=0,type="BASE",value=25,name="FireDamage",keywordFlags=0}}," to avoid when Hit {variant:2}You always Ignite while Burning"}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"}c["With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"}c["Adds 2 to 4 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=1,type="BASE",value=2,name="FireMin",keywordFlags=0},[2]={[1]={type="PerStat",stat="Str",div=10},flags=1,type="BASE",value=4,name="FireMax",keywordFlags=0}},nil}c["15% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootRarity",keywordFlags=0}},nil}c["60% reduced Mana Cost of Totem Skills that cast an Aura"]={{[1]={flags=0,type="INC",value=-60,name="ManaCost",keywordFlags=16384}}," of Skills that cast an Aura"}c["Melee Attacks have 15% chance to cause Bleeding"]={{[1]={flags=256,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.4,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={type="Condition",neg=true,var="CriticalStrike"},flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered"}c["30% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=0}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=100,name="ManaCost",keywordFlags=0}},nil}c["Cold-only Splash Damage to surrounding targets"]={nil,"Cold-only Splash Damage to surrounding targets"}c["75% increased Physical Damage"]={{[1]={flags=0,type="INC",value=75,name="PhysicalDamage",keywordFlags=0}},nil}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted"}c["Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining"}c["An additional Curse can be applied to you"]={nil,"An additional Curse can be applied to you"}c["Adds 140 to 285 Cold Damage"]={{[1]={flags=0,type="BASE",value=140,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=285,name="ColdMax",keywordFlags=0}},nil}c["15% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["10% increased effect of Fortify on You"]={{[1]={flags=0,type="INC",value=10,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["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"]={nil,"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"}c["18% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=18,name="Evasion",keywordFlags=0}},nil}c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=8192}},nil}c["You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"]={nil,"You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"}c["You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique"]={nil,"You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique"}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,type="INC",value=3,name="Defences",keywordFlags=0}}," Character Size 5% increased "}c["3% increased Character Size 6% increased Strength"]={{[1]={flags=0,type="INC",value=3,name="Str",keywordFlags=0}}," Character Size 6% increased "}c["6% increased Intelligence"]={{[1]={flags=0,type="INC",value=6,name="Int",keywordFlags=0}},nil}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill"}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike {variant:14}20% increased Global Defences"]={nil,"Nearby Enemies have an additional 2% chance to receive a Critical Strike {variant:14}20% increased Global Defences"}c["Enemies Ignited by you during Flask Effect take 10% increased Damage Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Enemies Ignited by you during Flask Effect take 10% increased Damage Recover 3% of Life when you Kill an Enemy during Flask Effect"}c["+60% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=60,name="ChaosResist",keywordFlags=0}},nil}c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["2% additional Chance to Block Spells with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=2,name="SpellBlockChance",keywordFlags=0}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield +20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={[1]={type="PerStat",stat="Evasion",div=5},flags=0,type="BASE",value=5,name="Armour",keywordFlags=0}}," on Equipped Shield +20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"}c["Elemental Equilibrium"]={{[1]={value="Elemental Equilibrium",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Adds 55 to 130 Physical Damage"]={{[1]={flags=0,type="BASE",value=55,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=130,name="PhysicalMax",keywordFlags=0}},nil}c["Eldritch Battery"]={{[1]={value="Eldritch Battery",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=0}},nil}c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste"]={nil,"Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste"}c["Resolute Technique"]={{[1]={value="Resolute Technique",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Adds 96 to 118 Physical Damage"]={{[1]={flags=0,type="BASE",value=96,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=118,name="PhysicalMax",keywordFlags=0}},nil}c["10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},flags=0,type="INC",value=-10,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["+35% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=35,name="FireResist",keywordFlags=0}},nil}c["8% chance to Shock"]={{[1]={flags=0,type="BASE",value=8,name="EnemyShockChance",keywordFlags=0}},nil}c["204% increased Energy Shield"]={{[1]={flags=0,type="INC",value=204,name="EnergyShield",keywordFlags=0}},nil}c["+4 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=2},flags=0,type="BASE",value=4,name="Accuracy",keywordFlags=0}},nil}c["Adds 2 to 5 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["60% increased Physical Damage"]={{[1]={flags=0,type="INC",value=60,name="PhysicalDamage",keywordFlags=0}},nil}c["Elemental Hit deals 15% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"Elemental Hit deals 15% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"}c["Adds 85 to 118 Physical Damage"]={{[1]={flags=0,type="BASE",value=85,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=118,name="PhysicalMax",keywordFlags=0}},nil}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["600% increased Energy Shield"]={{[1]={flags=0,type="INC",value=600,name="EnergyShield",keywordFlags=0}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=263,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}},nil}c["Melee Critical Strikes have 25% chance to cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["18% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=18,name="EnergyShield",keywordFlags=0}},nil}c["50% chance to Cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["Adds 3 to 30 Lightning Damage"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="LightningMax",keywordFlags=0}},nil}c["Adds 160 to 240 Fire Damage"]={{[1]={flags=0,type="BASE",value=160,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=240,name="FireMax",keywordFlags=0}},nil}c["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTrapLimit",keywordFlags=0}},nil}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies {variant:2}100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",keywordFlags=0,name="FireDamage",value=100}}," with Hits and Ailments {variant:2}100% increased Physical Damage with Hits and Ailments "}c["40% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-40,name="LightRadius",keywordFlags=0}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire"}c["280% increased Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EnergyShield",keywordFlags=0}},nil}c["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["60% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={type="StatThreshold",stat="ManaReserved",upper=true,threshold=0},flags=2,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"]={nil,"Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"}c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=4,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["30% increased Elemental Damage with Attack Skills while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}}," with Attack Skills "}c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=145,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["Cannot be Stunned if you've Killed Recently 25% increased Attack Speed if you haven't Killed Recently"]={nil,"Cannot be Stunned if you've Killed Recently 25% increased Attack Speed if you haven't Killed Recently"}c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={flags=0,type="INC",value=100,name="ColdDamage",keywordFlags=0}}," while your Off Hand is empty"}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance "}c["+14 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=14,name="EnergyShield",keywordFlags=0}},nil}c["Adds 25 to 45 Physical Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="PhysicalMax",keywordFlags=0}},nil}c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=40,name="CritMultiplier",keywordFlags=0}},nil}c["10% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["Adds 70 to 210 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=210,name="PhysicalMax",keywordFlags=0}},nil}c["40% increased Defences from equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=40,name="Defences",keywordFlags=0}},nil}c["25% chance to avoid Fire Damage when Hit"]={{[1]={flags=0,type="BASE",value=25,name="FireDamage",keywordFlags=0}}," to avoid when Hit"}c["Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=-10,name="GlobalAttributeRequirements",keywordFlags=0}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use"}c["180% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=180,name="Evasion",keywordFlags=0}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks {variant:1}{crafted}+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,type="BASE",value=50,name="CritMultiplier",keywordFlags=0}}," to Maim Enemies {variant:1}{crafted}+45% while there is a Rare or Unique Enemy Nearby"}c["+22% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=22,name="LightningResist",keywordFlags=0}},nil}c["For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,type="INC",value=40,name="FireDamage",keywordFlags=0},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",keywordFlags=0}},nil}c["15% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=2}},nil}c["400% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=400,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={nil,"Your Chaos Damage has 60% chance to Poison Enemies"}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"]={{}," to Trigger Level 1when you Kill an Enemy"}c["12% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=12,name="ChaosDamage",keywordFlags=0}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{}," to gain Arcane Surge when you Kill an Enemy"}c["Minions have 28% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=28,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={flags=2,type="BASE",value=64,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=107,name="FireMax",keywordFlags=0}}," while no is Reserved Adds 14 to 173 Lightning Damage to s while no Life is Reserved"}c["16% increased Cast Speed with Curse Skills 0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={flags=18,type="INC",value=16,name="Speed",keywordFlags=0}}," with Curse Skills 0.2% of Damage Leeched as Energy Shield for each Curse on Enemy"}c["Adds 110 to 158 Physical Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=110,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="BASE",value=158,name="PhysicalMax",keywordFlags=0}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=8,name="LightningResist",keywordFlags=0}},nil}c["Gain a Divine Charge on Hit"]={nil,"Gain a Divine Charge on Hit"}c["Your hits can't be Evaded"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["Adds 20 to 35 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="ChaosMin",keywordFlags=0},[2]={flags=1,type="BASE",value=3,name="ChaosMax",keywordFlags=0}},nil}c["80% increased Damage against Hindered Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Hindered"},flags=4,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["30% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,type="BASE",value=100,name="PhysicalDamageGainAsLightning",keywordFlags=0},[2]={flags=8192,type="BASE",value=100,name="PhysicalDamageGainAsCold",keywordFlags=0},[3]={flags=8192,type="BASE",value=100,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["160% increased Armour"]={{[1]={flags=0,type="INC",value=160,name="Armour",keywordFlags=0}},nil}c["Adds 150 to 300 Cold Damage"]={{[1]={flags=0,type="BASE",value=150,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="ColdMax",keywordFlags=0}},nil}c["When Hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["10% increased Fortify duration"]={{[1]={flags=0,type="INC",value=10,name="FortifyDuration",keywordFlags=0}},nil}c["+24 Mana gained when you Block {variant:1}20% reduced Movement Speed"]={{[1]={flags=0,type="BASE",value=24,name="Mana",keywordFlags=0}}," gained when you Block {variant:1}20% reduced Movement Speed"}c["200 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"200 Cold Damage taken per second per Frenzy Charge while moving"}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,type="LIST",value={skillId="CrabAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="MORE",value=-20,name="DamageTaken",keywordFlags=0}},nil}c["Cannot Leech Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0}},nil}c["118% increased Physical Damage"]={{[1]={flags=0,type="INC",value=118,name="PhysicalDamage",keywordFlags=0}},nil}c["13% increased Light Radius"]={{[1]={flags=0,type="INC",value=13,name="LightRadius",keywordFlags=0}},nil}c["Adds 30 to 41 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=41,name="PhysicalMax",keywordFlags=0}},nil}c["+250 to Armour"]={{[1]={flags=0,type="BASE",value=250,name="Armour",keywordFlags=0}},nil}c["+120 to maximum Life"]={{[1]={flags=0,type="BASE",value=120,name="Life",keywordFlags=0}},nil}c["Adds 12 to 32 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=32,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Damage against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFirePenetration",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["25% increased Zombie Size"]={{}," Size"}c["Adds 9 to 26 Physical Damage"]={{[1]={flags=0,type="BASE",value=9,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=26,name="PhysicalMax",keywordFlags=0}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you"]={{[1]={flags=0,type="BASE",value=35,name="AvoidStun",keywordFlags=0}}," for each Herald Skill affecting you"}c["30% increased Light Radius"]={{[1]={flags=0,type="INC",value=30,name="LightRadius",keywordFlags=0}},nil}c["Adds 53 to 110 Physical Damage"]={{[1]={flags=0,type="BASE",value=53,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=110,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 14 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportSpellTotem",level=14},name="ExtraSupport",keywordFlags=0}},nil}c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on Hit"}c["With at least 40 Dexterity in Radius, Burning"]={nil,"With at least 40 Dexterity in Radius, Burning"}c["20% increased Effect of Auras on your Minions"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="AuraEffectOnSelf",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill"}c["3 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=3,name="ManaRegen",keywordFlags=0}},nil}c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ChaosInoculation",flags=0}},nil}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",keywordFlags=0}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={nil,"30 Energy Shield gained for each Enemy Hit while affected by Discipline"}c["110% increased Physical Damage"]={{[1]={flags=0,type="INC",value=110,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}c["+1 to Level of Socketed Bow Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="bow",value=1},name="GemProperty",keywordFlags=0}},nil}c["Adds 20 to 55 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=55,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}},nil}c["25% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill"}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportGenerosity",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems"}c["Adds 15 to 25 Fire Damage"]={{[1]={flags=0,type="BASE",value=15,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="FireMax",keywordFlags=0}},nil}c["Adds 1 to 85 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=85,name="LightningMax",keywordFlags=0}},nil}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=16}},nil}c["100% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=100,name="LightningDamage",keywordFlags=0}},nil}c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="BASE",value=20,name="ColdPenetration",keywordFlags=0}},"Blind Chilled Enemies on Hit "}c["Adds 1 to 325 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=325,name="LightningMax",keywordFlags=0}},nil}c["10% Chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}c["Crimson Dance"]={nil,"Crimson Dance"}c["Adds 1 to 300 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="LightningMax",keywordFlags=0}},nil}c["+50 to Armour"]={{[1]={flags=0,type="BASE",value=50,name="Armour",keywordFlags=0}},nil}c["+70 to maximum Life"]={{[1]={flags=0,type="BASE",value=70,name="Life",keywordFlags=0}},nil}c["Adds 1 to 150 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="LightningMax",keywordFlags=0}},nil}c["24% increased Trap Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=4096}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-20,name="EnemyStunThreshold",keywordFlags=0}},nil}c["+500 to maximum Life"]={{[1]={flags=0,type="BASE",value=500,name="Life",keywordFlags=0}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies"}c["+30 to Dexterity"]={{[1]={flags=0,type="BASE",value=30,name="Dex",keywordFlags=0}},nil}c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=45,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["Adds 1 to 30 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=1,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=30,name="ColdMax",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["400 Cold Damage taken per second per Frenzy Charge while moving {variant:2}200 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving {variant:2}200 Cold Damage taken per second per Frenzy Charge while moving"}c["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill"}c["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=1}},nil}c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you"}c["15% Chance to Block"]={{[1]={flags=0,type="BASE",value=15,name="BlockChance",keywordFlags=0}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=30,name="Damage",keywordFlags=0}}," while you have iron Reflexes"}c["50% increased Damage with Hits and Ailments against Bleeding Enemies You have Crimson Dance while you have Cat's Stealth"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=4,type="INC",value=50,name="Damage",keywordFlags=0}}," with Hits and Ailments You have Crimson Dance while you have Cat's Stealth"}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius"}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["10% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Your Cold Damage can Poison"]={nil,"Your Cold Damage can Poison"}c["100% increased Physical Damage while you have Resolute Technique"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}}," while you have Resolute Technique"}c["Gore Footprints"]={nil,"Gore Footprints"}c["15% increased Fire Damage"]={{[1]={flags=0,type="INC",value=15,name="FireDamage",keywordFlags=0}},nil}c["Found Magic Items drop Identified"]={nil,"Found Magic Items drop Identified"}c["Minions have 7% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=7,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Cannot Leech"]={nil,"Cannot Leech"}c["100% increased Aspect of the Avian Buff Effect Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={{[1]={flags=0,type="INC",value=100,name="BuffEffect",keywordFlags=0}}," Aspect of the Avian Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"}c["25% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["40% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"}c["+2 to Level of Socketed Lightning Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="lightning",value=2},name="GemProperty",keywordFlags=0}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby {variant:2}{crafted}22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}}," while there is a Rare or Unique Enemy Nearby {variant:2}{crafted}22% increased Attack Speed while a Rare or Unique Enemy is Nearby"}c["+8% chance to Evade Attacks while affected by Grace"]={{}," to Evade Attacks while affected by Grace"}c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=15,name="ManaRegen",keywordFlags=0}},nil}c["Adds 12 to 23 Cold Damage to Attacks"]={{[1]={flags=1,type="BASE",value=12,name="ColdMin",keywordFlags=0},[2]={flags=1,type="BASE",value=23,name="ColdMax",keywordFlags=0}},nil}c["+90 to Strength"]={{[1]={flags=0,type="BASE",value=90,name="Str",keywordFlags=0}},nil}c["80% increased Armour"]={{[1]={flags=0,type="INC",value=80,name="Armour",keywordFlags=0}},nil}c["8% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Chance to Block Spell Damage is Unlucky"]={nil,"Chance to Block Spell Damage is Unlucky"}c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=30,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-10,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks"}c["15% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Bestial Minion"}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["12% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={{}," to gain aCharge on Killing a Frozen Enemy Skills Chain an additional time "}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements {variant:31}12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="SkillName",skillName="Purity of Elements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsFire",keywordFlags=0}}," while affected by{variant:31}12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage "}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["Grants level 10 Gluttony of Elements Skill"]={{[1]={flags=0,type="LIST",value={skillId="VaalAuraElementalDamageHealing",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=4,type="BASE",value=60,name="PoisonChance",keywordFlags=0}},nil}c["Your Critical Strike Chance is Lucky"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CritChanceLucky",flags=0}},nil}c["10% Chance to Cast level 18 Summon Spectral Wolf on Kill"]={{[1]={flags=0,type="LIST",value={skillId="SummonRigwaldsPack",level=18},name="ExtraSkill",keywordFlags=0}},nil}c["15% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["145% increased Physical Damage"]={{[1]={flags=0,type="INC",value=145,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 20 to 30 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="ChaosMin",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="ChaosMax",keywordFlags=0}},nil}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",keywordFlags=0}},nil}c["1% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="INC",value=1,name="Evasion",keywordFlags=0}},nil}c["Curse Enemies with level 10 Flammability on Hit"]={{[1]={flags=0,type="LIST",value={skillId="Flammability",level=10,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["20% increased Armour"]={{[1]={flags=0,type="INC",value=20,name="Armour",keywordFlags=0}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=400,name="Accuracy",keywordFlags=0}},nil}c["1% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["100% increased Chill Duration on Enemies when in Off Hand"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=100,name="EnemyChillDuration",keywordFlags=0}},nil}c["Has an additional Implicit Mod +30 to all Attributes"]={nil,"Has an additional Implicit Mod +30 to all Attributes"}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyChillDuration",keywordFlags=0}},nil}c["+350 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=350,name="Accuracy",keywordFlags=0}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EnergyShield",keywordFlags=0}},nil}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"}c["20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{}," when Placing s to Place an additional Mine 100% increased Mine Arming Speed"}c["135% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=135,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+2 to Level of Socketed Herald Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="herald",value=2},name="GemProperty",keywordFlags=0}},nil}c["Knocks Back Enemies in an Area on Flask use"]={nil,"Knocks Back Enemies in an Area on Flask use"}c["10% chance to grant a Power Charge to nearby Allies on Kill 5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant a Power Charge to nearby Allies on Kill 5% chance to grant aCharge to nearby Allies on Hit"}c["Minions have 15% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+250 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=250,name="Accuracy",keywordFlags=0}},nil}c["Adds 3 to 6 Cold Damage to Spells"]={{[1]={flags=2,type="BASE",value=3,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=6,name="ColdMax",keywordFlags=0}},nil}c["30% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=30,name="SpellDodgeChance",keywordFlags=0}},nil}c["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour"}c["50% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-50,name="Damage",keywordFlags=0}},nil}c["2% of Life Regenerated per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Herald of Agony has 79% increased Buff Effect"]={nil,"Herald of Agony has 79% increased Buff Effect"}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlasphemy",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["+60 to Strength"]={{[1]={flags=0,type="BASE",value=60,name="Str",keywordFlags=0}},nil}c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=30,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="ColdResist",keywordFlags=0}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"}c["+110 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=110,name="EnergyShield",keywordFlags=0}},nil}c["Adds 60 to 90 Cold Damage"]={{[1]={flags=0,type="BASE",value=60,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="ColdMax",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs have -10% to All Resistances 70% increased Aspect of the Spider Area of Effect"]={nil,"Enemies affected by your Spider's Webs have -10% to All Resistances 70% increased Aspect of the Spider Area of Effect"}c["30% chance to Avoid being Chilled during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="AvoidChilled",keywordFlags=0}},nil}c["Adds 4 to 8 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=4,name="FireMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=8,name="FireMax",keywordFlags=0}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"}c["2% of Life Regenerated per second with at least 400 Strength"]={{[1]={[1]={type="StatThreshold",stat="Str",threshold=400},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius"}c["Adds 16 to 53 Lightning Damage to Spells"]={{[1]={flags=2,type="BASE",value=16,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=53,name="LightningMax",keywordFlags=0}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted"}c["Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Shocks you inflict spread to other Enemies within a Radius of 15"}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=90,name="CritMultiplier",keywordFlags=0}},nil}c["40% increased Duration of Ailments on Enemies +4% Chance to Block"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=0}}," of Ailments +4% Chance to Block"}c["Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"}c["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds"}c["+2 to Level of Socketed Fire Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="fire",value=2},name="GemProperty",keywordFlags=0}},nil}c["0.3% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.3,name="LifeRegenPercent",keywordFlags=0}},nil}c["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,type="LIST",value={skillId="TouchOfGod",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances"}c["23% increased Spell Damage"]={{[1]={flags=2,type="INC",value=23,name="Damage",keywordFlags=0}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,type="INC",value=18,name="Mana",keywordFlags=0}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=4096}},nil}c["Half of your Strength is added to your Minions +1 to maximum number of Zombies per 300 Strength"]={nil,"Half of your Strength is added to your Minions +1 to maximum number of Zombies per 300 Strength"}c["+6 to maximum Life"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}},nil}c["+6 to maximum Mana"]={{[1]={flags=0,type="BASE",value=6,name="Mana",keywordFlags=0}},nil}c["Immune to Elemental Status Ailments while Phasing 10% chance to Dodge Spell Damage while Phasing"]={nil,"Immune to Elemental Status Ailments while Phasing 10% chance to Dodge Spell Damage while Phasing"}c["+67 to maximum Life"]={{[1]={flags=0,type="BASE",value=67,name="Life",keywordFlags=0}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}},nil}c["Adds 1 to 25 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="LightningMax",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies {variant:1}Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={nil,"deal 100 to 200 added Physical Damage to Ignited Enemies {variant:1}Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"}c["30% chance for Attacks to Maim on Hit against Bleeding Enemies"]={{}," to Maim on Hit "}c["35% increased maximum Life"]={{[1]={flags=0,type="INC",value=35,name="Life",keywordFlags=0}},nil}c["+30% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}c["2% increased Attack and Cast Speed for each corpse consumed recently"]={{[1]={flags=0,type="INC",value=2,name="Speed",keywordFlags=0}}," for each corpse consumed recently"}c["75% reduced Maximum number of Summoned Raging Spirits Raging Spirits' Hits always Ignite"]={{}," Maximum number of Summoned Raging Spirits Raging Spirits' Hits always Ignite"}c["+30 to Strength"]={{[1]={flags=0,type="BASE",value=30,name="Str",keywordFlags=0}},nil}c["4% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=4,name="CurseEffect",keywordFlags=0}},nil}c["20% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["4% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,type="INC",value=-4,name="EnemyStunThreshold",keywordFlags=0}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit"}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect"}c["350% increased Armour"]={{[1]={flags=0,type="INC",value=350,name="Armour",keywordFlags=0}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,type="INC",value=22,name="Mana",keywordFlags=0}},nil}c["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes"}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=16384,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["Shocks you cause are reflected back to you 60% increased Damage while Shocked"]={nil,"Shocks you cause are reflected back to you 60% increased Damage while Shocked"}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["+2 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=30,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["30% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["10% chance to gain a Frenzy Charge on Kill You have Onslaught while on full Frenzy Charges"]={{}," to gain aCharge on Kill You have Onslaught while on full Frenzy Charges"}c["+35 to Dexterity"]={{[1]={flags=0,type="BASE",value=35,name="Dex",keywordFlags=0}},nil}c["+75 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=75,name="EnergyShield",keywordFlags=0}},nil}c["+75% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=75,name="ColdResist",keywordFlags=0}},nil}c["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,type="LIST",value={skillId="TemporalChains",level=10,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["Cannot Block Spells Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={nil,"Cannot Block Spells Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"}c["20% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=20,name="FlaskEffect",keywordFlags=0}}," of Chill"}c["Adds 15 to 35 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="PhysicalMax",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently {variant:1}60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently {variant:1}60% increased Damage for each 200 total Mana you have Spent Recently"}c["Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"}c["400 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving"}c["Adds 98 to 121 Physical Damage"]={{[1]={flags=0,type="BASE",value=98,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=121,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["Adds 27 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=27,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["12% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["7% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=7,name="Damage",keywordFlags=0}},nil}c["+24 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=24,name="EnergyShield",keywordFlags=0}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["Has 6 Sockets"]={{[1]={flags=0,type="BASE",value=6,name="SocketCount",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles"}c["+150 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=150,name="Accuracy",keywordFlags=0}},nil}c["Consecrated Ground you create grants 40% increased Damage to you and Allies"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["25% increased Light Radius"]={{[1]={flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["100% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=100,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["Extra Gore"]={nil,"Extra Gore"}c["+16 to maximum Life"]={{[1]={flags=0,type="BASE",value=16,name="Life",keywordFlags=0}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="LifeOnKill",keywordFlags=0}},nil}c["12% increased Area Damage"]={{[1]={flags=512,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["50% increased Area Damage"]={{[1]={flags=512,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life"}c["+3% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=3,name="ElementalResist",keywordFlags=0}},nil}c["+16 to all Attributes"]={{[1]={flags=0,type="BASE",value=16,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=16,name="Int",keywordFlags=0}},nil}c["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=25,name="Duration",keywordFlags=1048576}},nil}c["60% increased Cold Damage"]={{[1]={flags=0,type="INC",value=60,name="ColdDamage",keywordFlags=0}},nil}c["15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is Detonated targeting an Enemy"}c["18% increased Damage against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of"}c["15% increased Area Damage"]={{[1]={flags=512,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["1% increased Movement Speed per 600 Evasion Rating, up to 75%"]={{[1]={[1]={type="PerStat",stat="Evasion",div=600},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}}," , up to 75%"}c["40% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="LightningDamage",keywordFlags=0}},nil}c["+50 to all Attributes"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=50,name="Int",keywordFlags=0}},nil}c["30% chance to Avoid being Ignited"]={{[1]={flags=0,type="BASE",value=30,name="AvoidIgnite",keywordFlags=0}},nil}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance {variant:1}Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={nil,"Projectile Attack Skills have 60% increased Critical Strike Chance {variant:1}Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"}c["10% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-10,name="MovementSpeed",keywordFlags=0}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",keywordFlags=0}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike"}c["10% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=10,name="PierceChance",keywordFlags=0}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageConvertToFire",keywordFlags=0}}," while affected by Anger"}c["420% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=420,name="Evasion",keywordFlags=0}},nil}c["10% chance to Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShieldRegen",keywordFlags=0}}," while a Rare or Unique Enemy is Nearby"}c["+22% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=22,name="ElementalResist",keywordFlags=0}},nil}c["2% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike"}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item 6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",keywordFlags=0}}," for each Equipped Corrupted Item 6% increased Maximum Life for each Equipped Corrupted Item"}c["10% increased Area of Effect"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["60% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=60,name="LifeRecoveryRate",keywordFlags=0},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=60,name="ManaRecoveryRate",keywordFlags=0},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=60,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["100% of Damage Leeched as Life if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,type="BASE",value=100,name="DamageLifeLeech",keywordFlags=0}},nil}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["9% chance to Freeze"]={{[1]={flags=0,type="BASE",value=9,name="EnemyFreezeChance",keywordFlags=0}},nil}c["10% increased Skeleton Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}}," Skeleton "}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=115,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Defences",keywordFlags=0}},nil}c["Adds 5 to 12 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,type="BASE",value=5,name="FireMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,type="BASE",value=12,name="FireMax",keywordFlags=0}},nil}c["Adds 6 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["23% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-23,name="EnemyStunThreshold",keywordFlags=0}},nil}c["20% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportManaLeech",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Minions have 10% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["135% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=135,name="Evasion",keywordFlags=0}},nil}c["Prefix: LocalIncreasedArmourAndEnergyShield5"]={nil,"Prefix: LocalIncreasedArmourAndEnergyShield5"}c["20% additional Spell Block chance while Cursed Curse Reflection"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," while Cursed Curse Reflection"}c["Gain 10% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element"}c["You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["20% increased Trap Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=4096}},nil}c["Ancestral Bond"]={{[1]={value="Ancestral Bond",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["60% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["+10% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=10,name="LightningResist",keywordFlags=0}},nil}c["+30 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="ManaOnKill",keywordFlags=0}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={nil,"While your Passive Skill Tree connects to a class' Starting location, you gain:"}c["Adds 11 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=11,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["Your Lightning Damage can Poison {variant:1}Fire Skills have 20% chance to Poison on Hit"]={nil,"Your Lightning Damage can Poison {variant:1}Fire Skills have 20% chance to Poison on Hit"}c["+1% to Critical Strike Chance"]={{[1]={flags=0,type="BASE",value=1,name="CritChance",keywordFlags=0}},nil}c["+14% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=14,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="LightningResist",keywordFlags=0}},nil}c["+100 to all Attributes"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=100,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=100,name="Int",keywordFlags=0}},nil}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements {variant:32}Unaffected by Elemental Weakness while affected by Purity of Elements"]={{[1]={[1]={type="SkillName",skillName="Purity of Elements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsLightning",keywordFlags=0}}," while affected by{variant:32}Unaffected by Elemental Weakness while affected by Purity of Elements"}c["38% increased Duration"]={{[1]={flags=0,type="INC",value=38,name="Duration",keywordFlags=0}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery"}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportElementalPenetration",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Haste Reserves no Mana"]={nil,"Haste Reserves no Mana"}c["Haste Reserves no Mana {variant:7}Hatred Reserves no Mana"]={nil,"Haste Reserves no Mana {variant:7}Hatred Reserves no Mana"}c["+28% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=28,name="ColdResist",keywordFlags=0}},nil}c["+24 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges"}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius"}c["Adds 6 to 13 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=13,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 10 to 20 Physical Damage to Attacks"]={{[1]={flags=1,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=1,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,type="INC",value=24,name="FireDamage",keywordFlags=0}},nil}c["Trigger level 20 Storm Cascade when you Attack 90% increased Spell Damage"]={nil,"Trigger level 20 Storm Cascade when you Attack 90% increased Spell Damage"}c["88% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=300},flags=0,type="INC",value=88,name="Damage",keywordFlags=1048576}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=55,name="ChaosDamage",keywordFlags=0}}," Non-Ailment over Time Multiplier"}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["24% increased maximum Life"]={{[1]={flags=0,type="INC",value=24,name="Life",keywordFlags=0}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegenPercent",keywordFlags=0}},nil}c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["Avatar of Fire"]={{[1]={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=4,type="BASE",value=20,name="ColdPenetration",keywordFlags=0}},nil}c["Adds 24 to 36 Fire Damage"]={{[1]={flags=0,type="BASE",value=24,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="FireMax",keywordFlags=0}},nil}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"}c["9% increased Movement Speed"]={{[1]={flags=0,type="INC",value=9,name="MovementSpeed",keywordFlags=0}},nil}c["Damage Penetrates 25% Lightning Resistance if you've used a Cold Skill in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsedColdSkillInPast10Sec"},flags=0,type="BASE",value=25,name="LightningPenetration",keywordFlags=0}},nil}c["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=15,name="Damage",keywordFlags=1048576}}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased "}c["10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=10,name="Damage",keywordFlags=1048576}},nil}c["-1 Dexterity per 1 Dexterity on Allocated Passives in Radius"]={{[1]={[1]={type="PerStat",stat="Dex",div=1},flags=0,type="BASE",value=-1,name="Dex",keywordFlags=0}}," on Allocated Passives in Radius"}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["15% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="MagicItem",threshold=1},flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["33% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=33,name="ChaosDamage",keywordFlags=0}},nil}c["+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,type="BASE",value=60,name="CritMultiplier",keywordFlags=0}},nil}c["10% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=10,name="EnergyShield",keywordFlags=0}},nil}c["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=40,name="LifeOnHit",keywordFlags=0}},nil}c["Nearby Allies gain 1% of Life Regenerated per Second"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["10% increased Elemental Damage with Attack Skills {variant:1}Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",keywordFlags=0}}," with Attack Skills {variant:1}Adds 4 to 8 Fire Damage to Attacks"}c["16% Chance to Block"]={{[1]={flags=0,type="BASE",value=16,name="BlockChance",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge on Kill +1 to Maximum Frenzy Charges"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",value=15,name="FrenzyChargesMax",keywordFlags=0}}," to gain aCharge on Kill +1 to "}c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"Gain an Endurance Charge when a Power Charge expires or is consumed"}c["175% increased Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=175,name="Duration",keywordFlags=0}},nil} \ No newline at end of file +local c=...c["20% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=16}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"}c["10% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=10}},nil}c["-1 Strength per 1 Strength on Allocated Passives in Radius"]={{[1]={[1]={div=1,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Str",type="BASE",value=-1}}," on Allocated Passives in Radius"}c["Inflicts a random level 20 Curse on you when your Totems die"]={nil,"Inflicts a random level 20 Curse on you when your Totems die"}c["+150 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=150}},nil}c["10% reduced Enemy Stun Threshold with Bows"]={{[1]={flags=8192,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["30% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"}c["You have Far Shot while you do not have Iron Reflexes"]={nil,"You have Far Shot while you do not have Iron Reflexes"}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"}c["Adds 18 to 32 Chaos Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=18},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=32}},nil}c["+21 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=21}},nil}c["14% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=14}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 seconds on Kill"}c["Adds 1 to 30 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=30}},nil}c["Gain 10% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}},nil}c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"}c["20% increased Attack and Cast Speed if Energy Shield Recharge has started Recently"]={{[1]={[1]={type="Condition",var="EnergyShieldRechargeRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},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["40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["30% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=30}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike"}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["Your Critical Strikes with Attacks Maim Enemies"]={nil,"Your Critical Strikes with Attacks Maim Enemies"}c["40% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=40}},nil}c["You and Allies have 12% increased Attack and Cast Speed while affected"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," while affected"}c["The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil}c["-5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["+160 Dexterity Requirement"]={{[1]={flags=0,keywordFlags=0,name="DexRequirement",type="BASE",value=160}},nil}c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil}c["Your Hits can't be Evaded by Blinded Enemies"]={nil,"Your Hits can't be Evaded by Blinded Enemies"}c["Nearby Allies have 2% increased Cast Speed per 100 Intelligence you have 1% reduced Mana Reserved per 250 total attributes"]={{[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=2},onlyAllies=true}}}," you have 1% reduced Mana Reserved per 250 total attributes"}c["3% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=4,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["100% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=16}},nil}c["20% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil}c["Adds Knockback to Melee Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=28}},nil}c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=1}}},nil}c["5% increased Skeleton Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}," Skeleton "}c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["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"]={nil,"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"}c["+27% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=27}},nil}c["Minions have 16% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=16}}}},nil}c["50% increased Critical Strike Chance with Staves"]={{[1]={flags=131072,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Radius: 12"]={nil,"Radius: 12"}c["50% chance to inflict Bleeding on Critical Strike with Attacks"]={{}," to inflict Bleeding "}c["20% chance to Maim on Hit"]={{}," to Maim on Hit"}c["100% increased Stun Duration against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=4,keywordFlags=0,name="EnemyStunDuration",type="INC",value=100}},nil}c["Projectile Attacks deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={flags=0,keywordFlags=0,name="PointBlank",type="FLAG",value=true}},nil}c["120% increased Critical Strike Chance against Enemies affected"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," against Enemies affected"}c["+5% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil}c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["Adds 6 to 12 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=6},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=12}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{}," to Trigger Level 20 Shade Form when you Use a Socketed Skill"}c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["16% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=16}},nil}c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["Adds 15 to 50 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["0.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.6}},nil}c["Reflects 260 Physical Damage to Melee Attackers"]={{},nil}c["+15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15}},nil}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels"]={{}," Level of Socketed Active Skill Gems per 25 Player Levels"}c["Minions deal 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"}c["13% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["Enemies you Taunt take 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=20}}}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"}c["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"}c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=125}},nil}c["+8% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=8}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers 5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}}," while you have at least 5 Crab Barriers 5% additional Chance to Block while you have at least 10 Crab Barriers"}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}c["15% increased Accuracy Rating with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["35% less Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="MORE",value=-35}},nil}c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil}c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members"}c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems"}c["Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"}c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["+40 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["Adds 35 to 105 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=35},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=105}},nil}c["62% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=62}},nil}c["Lose Souls gained from Soul Eater on Flask Use"]={nil,"Lose Souls gained from Soul Eater on Flask Use"}c["Cannot be Ignited while on Low Life"]={nil,"Cannot be Ignited while on Low Life"}c["24% increased Elemental Damage with Attack Skills {variant:1,2,3}Adds 12 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}}," with Attack Skills {variant:1,2,3}Adds 12 to 20 Physical Damage"}c["+15% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Spend Energy Shield before Mana for Skill Costs"]={{},nil}c["8% increased Physical Damage with Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," with Hits and Ailments "}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PowerChargesDuration",type="BASE",value=10}}," to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance,and "}c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["25% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets {variant:3}With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets {variant:3}With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"}c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["12% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Has 2 Abyssal Sockets 10% increased Cast Speed"]={nil,"Has 2 Abyssal Sockets 10% increased Cast Speed"}c["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["You gain a Power Charge on use You gain a Frenzy Charge on use"]={nil,"You gain a Power Charge on use You gain a Frenzy Charge on use"}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["30% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["-15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-15}},nil}c["+25% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{},""}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["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40}},nil}c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit"}c["Aspect of the Cat Reserves no Mana"]={nil,"Aspect of the Cat Reserves no Mana"}c["10% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}}},nil}c["3% increased Attack Speed with Staves"]={{[1]={flags=131073,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["-20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-20}},nil}c["10% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=38}},nil}c["100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield"}c["+1 to Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems"]={{}," Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems"}c["Adds 17 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals"}c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["10% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["Every 10 seconds, gain 25% increased Area of Effect of Area Skills for 4 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestruction"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"}c["Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="MinionInstability"}}},nil}c["Knockback direction is reversed"]={nil,"Knockback direction is reversed"}c["+3% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["Prefixes:"]={{},nil}c["Your Critical Strikes have Culling Strike"]={nil,"Your Critical Strikes have Culling Strike"}c["13% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["16% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["+25% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Adds 6 to 14 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=6},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=14}},nil}c["20% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["10% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+45 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=45}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"}c["Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"]={nil,"Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"}c["5% increased effect of Fortify on You"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=5}},nil}c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["18% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Adds 110 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies"}c["50% reduced Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-50}},nil}c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=25}},nil}c["You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies"]={nil,"You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies"}c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20}},nil}c["20% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["Perfect Agony {variant:18}Phase Acrobatics"]={nil,"Perfect Agony {variant:18}Phase Acrobatics"}c["30% increased Damage while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Adds 16 to 29 Chaos Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=16},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["8% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["50% reduced Reflected Elemental Damage taken For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-50}}," Reflected For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"}c["Cannot inflict Shock"]={nil,"Cannot inflict Shock"}c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["Movement Speed cannot be modified to below base value"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["+28 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=28}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit"}c["Adds 9 to 13 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=13}},nil}c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil}c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder You cannot be Hindered"}c["Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"}c["Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"}c["30% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["40% reduced Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-40}},nil}c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["Damage Penetrates 3% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=3}},nil}c["15% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["18% increased Cold Damage per 1% Cold Resistance above 75% 20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}}," per 1% Cold Resistance above 75% 20% increased Lightning Damage per 1% Lightning Resistance above 75%"}c["Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"]={nil,"Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"}c["+33 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=33}},nil}c["+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"]={{}," maximum number of Summoned s if you have 3 Primordial Items Socketed or Equipped"}c["Gain 5% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageGainAsChaos",type="BASE",value=5}},nil}c["Adds 35 to 65 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=35},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=65}},nil}c["Crafted: true Prefix: LocalIncreasedArmourAndEnergyShield5"]={nil,"Crafted: true Prefix: LocalIncreasedArmourAndEnergyShield5"}c["4% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," on Allocated Passives in Radius"}c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=60}},nil}c["+7% chance to Block Spell Damage {variant:6}+6% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=7}}," Damage {variant:6}+6% chance to Block Spell Damage"}c["Adds 60 to 80 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=80}},nil}c["60% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Auras you Cast grant 10% increased Damage to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil}c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["33% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["The Effect of Chill on you is reversed"]={nil,"The Effect of Chill on you is reversed"}c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-15}},nil}c["+50 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies"}c["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect"}c["10% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=10}},nil}c["5% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=5}},nil}c["10% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Triggers level 20 Death Walk when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="DeathWalk"}}},nil}c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand"]={{}," to gain aCharge on Kill "}c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=20}},nil}c["20% of Physical Damage Converted to Lightning during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=20}},nil}c["10% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["315% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=315}},nil}c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation"}c["Cannot be Chilled while you have Onslaught"]={nil,"Cannot be Chilled while you have Onslaught"}c["Every 8 seconds, gain Avatar of Fire for 4 seconds"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds"}c["Creates Consecrated Ground on Use"]={{},nil}c["You have no Life Regeneration"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["16% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["10% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill"}c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=175}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"}c["138% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=138}},nil}c["30% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["+25 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}},nil}c["Regenerate 2% of your maximum Life per second while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["1% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["40% increased Damage with Hits against Frozen Enemies 50% increased Cold Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}}," with Hits 50% increased Cold Damage"}c["50% reduced Reflected Elemental Damage taken For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-50}}," Reflected For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"}c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger"}c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"}c["20% chance to gain an Endurance Charge when you Block Extra gore"]={{}," to gain an Endurance Charge when you Block Extra gore"}c["225% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=225}},nil}c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill"}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Phase Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Phase Acrobatics"}},nil}c["40% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=40}},nil}c["+48 Life gained when you Block {variant:1}+20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block {variant:1}+20 Mana gained when you Block"}c["6% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["Right ring slot: Projectiles from Spells Chain +1 times {variant:2}Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells Chain +1 times {variant:2}Right ring slot: Projectiles from Spells cannot Fork"}c["+24 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["100% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," per 5 Armour on Equipped Shield"}c["Adds 8 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["6% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["475% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=475}},nil}c["20% increased Attack and Cast Speed if Energy"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," if Energy"}c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life"]={nil,"Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life"}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsCold",type="BASE",value=100}},nil}c["+240 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=240}},nil}c["20% chance to create a Smoke Cloud when you place a Mine or throw a Trap"]={{}," to create a Smoke Cloud when you place a or throw a Trap"}c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["+140 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=140}},nil}c["Cannot Evade enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["12 to 14 Cold Damage per Frenzy Charge 2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={nil,"12 to 14 Cold Damage per Frenzy Charge 2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"}c["10% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil}c["You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"}c["18% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}}," per 1% Cold Resistance above 75%"}c["+13% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=13}},nil}c["5% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["10% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=10}},nil}c["15% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["48% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=48}},nil}c["Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"}c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil}c["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeAsChaos",type="BASE",value=200}}," Leech applies to enemies 15% increased Movement Speed "}c["Purity of Elements Reserves no Mana"]={nil,"Purity of Elements Reserves no Mana"}c["Golems have 40% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-40}}}},nil}c["30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}}," with Hits "}c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8192,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=2}},nil}c["+60 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60}},nil}c["75% chance to cause Enemies to Flee on use"]={{}," to cause Enemies to Flee on use"}c["200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"]={nil,"200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected"}c["Unaffected by Burning Ground while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire"}c["Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike"}c["24% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["Critical Strike Chance is increased by Lightning Resistance Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={nil,"Critical Strike Chance is increased by Lightning Resistance Trigger Level 12 Lightning Bolt when you deal a Critical Strike"}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"}c["-2 Physical Damage taken from Attacks 40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks 40% of Physical Damage taken reflected to Attacker"}c["20% increased Accuracy Rating with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Your Fire Damage can Poison {variant:2}Your Cold Damage can Poison"]={nil,"Your Fire Damage can Poison {variant:2}Your Cold Damage can Poison"}c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["25% increased Damage against Frozen, Shocked or Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Shocked",[3]="Ignited"}},flags=4,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["330% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=330}},nil}c["212% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=212}},nil}c["Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage"}c["115% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=115}},nil}c["+28% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["12% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["275% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=275}},nil}c["Determination Reserves no Mana {variant:3}Purity of Fire Reserves no Mana"]={nil,"Determination Reserves no Mana {variant:3}Purity of Fire Reserves no Mana"}c["+20 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=20}},nil}c["6% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["24% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["18% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["100% increased Critical Strike Chance against Enemies that are affected by no Elemental Status Ailments"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},[2]={type="Condition",var="Effective"},flags=4,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["20% of Overkill Damage is Leeched as Life Life Leech effects are not removed at Full Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill is Life Leech effects are not removed at Full Life"}c["90 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=90}},nil}c["Zombies deal 100% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=100}}}},nil}c["20% chance to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill"}c["3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil}c["Cannot Block"]={nil,"Cannot Block"}c["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}},nil}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage"}c["+8 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block"}c["+9% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=9}},nil}c["22% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=22}},nil}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy Trigger Socketed Curse Spells when you cast a Curse"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=0.2}}," Leeched as Energy Shield for each Curse on Enemy Trigger Socketed Curse Spells when you cast a Curse"}c["70% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["Minions Leech 0.6% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}}}},nil}c["40% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=40}},nil}c["50% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["75% increased Duration of Poisons you inflict during Flask effect Grants Perfect Agony during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Duration",type="INC",value=75}}," of Poisons you inflict Grants Perfect Agony "}c["8% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge"}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"}c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=80}},nil}c["Take 200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"]={nil,"200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block +1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}}," if Equipped Shield has at least 30% Chance to Block +1 to Maximum Energy Shield per 5 Armour on Equipped Shield"}c["Adds 35 to 90 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=90}},nil}c["30% reduced Duration of Ailments on Enemies 10% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-30}}," of Ailments 10% chance to Shock"}c["6% increased Attack Speed with Maces"]={{[1]={flags=65537,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["8% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil}c["Herald of Agony has 38% reduced Mana Reservation"]={nil,"Herald of Agony has 38% reduced Mana Reservation"}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element"}c["15% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges"}c["+20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill"}c["-10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-10}},nil}c["+60% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["20% chance to gain a Endurance Charge on Kill {variant:24}4% of Life Regenerated per second"]={{},""}c["50% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=50}},nil}c["Elemental Status Ailments are removed when you reach Low Life Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Elemental Status Ailments are removed when you reach Low Life Your Hits permanently Intimidate Enemies that are on Full Life"}c["20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}}," per 1% Lightning Resistance above 75%"}c["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill"}c["Skills which throw Traps have Blood Magic Skills used by Traps have 20% increased Area of Effect"]={nil,"Skills which throw Traps have Blood Magic Skills used by Traps have 20% increased Area of Effect"}c["0.7% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.7}},nil}c["20% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Your Critical Strike Chance is Lucky while Focussed"]={nil,"Your Critical Strike Chance is Lucky while Focussed"}c["Adds 12 to 22 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["8% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=8},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=8}},nil}c["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["284% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=284}},nil}c["20% chance to Avoid Projectiles while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid "}c["10% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={{[1]={flags=8388608,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element"}c["10% chance to Curse Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit"}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=0.2}}," Leeched as Energy Shield for each Curse on Enemy"}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["Your Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["+12 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=12}},nil}c["+1% to Chaos Resistance per Poison on you Poison you inflict is Reflected to you"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=1}}," per Poison on you Poison you inflict is Reflected to you"}c["+33 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=33}},nil}c["Minions Recover 1% of their Maximum Life when they Block"]={nil,"Recover 1% of their Maximum Life when they Block"}c["60% increased Defences from equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=60}},nil}c["Adds 8 to 13 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=13}},nil}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"}c["Adds 10 to 120 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=10},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=120}},nil}c["+96 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=96}},nil}c["+1000 Armour while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire"}c["Your Chaos Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil}c["200% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=200}},nil}c["-1 Dexterity per 1 Dexterity on Allocated Passives in Radius 2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"]={{[1]={[1]={div=1,stat="Dex",type="PerStat"},[2]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=-1}}," on Allocated Passives in Radius 2% increased Movement Speed on Allocated Passives in Radius"}c["+5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=5}}," on Unallocated Passives in Radius"}c["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."]={nil,"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."}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use"}c["13% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicItem"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["25% chance to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"]={{}," to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"}c["40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["+100 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["Burning Hoofprints"]={nil,"Burning Hoofprints"}c["15% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=50}},nil}c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked Enemies"}c["+10 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}},nil}c["+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["+175 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=175}},nil}c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=70}},nil}c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["Projectile Attacks gain damage as they travel farther, dealing up to 30% more Damage to targets"]={nil,"Projectile Attacks gain damage as they travel farther, dealing up to 30% more Damage to targets"}c["You gain Unholy Might for 10 seconds on Block"]={nil,"You gain Unholy Might for 10 seconds on Block"}c["2% increased Attack Speed with Staves"]={{[1]={flags=131073,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["+18% Chance to Block Attack Damage while wielding a Staff Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}}," Attack Damage Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"}c["100% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}},nil}c["15% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-15}},nil}c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=30}},nil}c["For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-8},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-8},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-8}},nil}c["+13 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=13}},nil}c["Charan's Sword"]={nil,"Charan's Sword"}c["23% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=23}},nil}c["10% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently Elder Item"]={nil,"150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently Elder Item"}c["8% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=10}},nil}c["Socketed Gems are Supported by level 15 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"}c["Lose 15 Life for each Enemy hit by your Spells"]={nil,"Lose 15 Life for each Enemy hit by your Spells"}c["16% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["320% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=320}},nil}c["Adds 25 to 36 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=36}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=80}}," if your other Ring is a Shaper Item"}c["Trigger Commandment of Inferno on Critical Strike"]={nil,"Trigger Commandment of Inferno on Critical Strike"}c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=30}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=110},[2]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=110},[3]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=110}},nil}c["Phasing"]={{[1]={flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}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["40% increased Elemental Damage with Attack Skills 8% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}}," with Attack Skills 8% increased Attack Speed"}c["Desecrate creates 2 additional Corpses"]={nil,"Desecrate creates 2 additional Corpses"}c["30% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-30}},nil}c["18% Chance to Block Attack Damage while wielding a Staff {variant:2,3}20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}}," Attack Damage {variant:2,3}20% Chance to Block Attack Damage "}c["4% reduced Mana Cost per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["33% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["40% chance to Chill Attackers for 4 seconds on Block 40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," to Chill Attackers for 4 seconds on Block 40% chance Attackers for 4 seconds on Block"}c["6% reduced Damage taken from Blinded Enemies"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," from Blinded Enemies"}c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["Has 2 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=2}},nil}c["40% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["19% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=19}},nil}c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use"}c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy"}c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},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["+48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block"}c["Grants level 22 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Blight"}}},nil}c["12% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Minions have +9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}}}},nil}c["21% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=21}},nil}c["80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyRecently"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["+15% to Fire and Chaos Resistances {variant:2}{crafted}+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Fire and s {variant:2}{crafted}+15% to Cold and Chaos Resistances"}c["You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"]={nil,"56 to 88 added Cold Damage per Green Socket"}c["50% increased Blind duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Blind "}c["+30 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=30}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"}c["50% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}c["6% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=6}},nil}c["+1 to maximum number of Summoned Holy Relics Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="BASE",value=1}}," maximum number of Summoned Holy Relics Summoned Holy Relics have 25% reduced "}c["10% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies"}c["Gain 5% of Lightning Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsChaos",type="BASE",value=5}},nil}c["Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you"]={nil,"Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you"}c["Adds 38 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["+1 to Level of Aura Gems in this item"]={{}," Level of Aura Gems in this item"}c["30% increased Armour and Evasion while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil}c["0.5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy"}c["Purity of Fire Reserves no Mana {variant:4}Vitality Reserves no Mana"]={nil,"Purity of Fire Reserves no Mana {variant:4}Vitality Reserves no Mana"}c["2% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["+3 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=3}}},nil}c["Critical Strikes have Culling Strike"]={nil,"Critical Strikes have Culling Strike"}c["50% increased Effect of Socketed Jewels"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of Socketed Jewels"}c["Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning"]={nil,"Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning"}c["You have no Armour or Energy Shield"]={nil,"You have no Armour or Energy Shield"}c["12% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["15% chance to Gain a Power Charge if you or your Totems kill an Enemy"]={{}," to Gain a Power Charge if you or your s kill an Enemy"}c["10% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=50}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies"}c["+70 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=70}},nil}c["Adds 1 to 2 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=2}},nil}c["Immune to Shock while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning"}c["27% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=27}},nil}c["5% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}}," Experience gain 20% increased "}c["14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=14}},nil}c["Curse Enemies with Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="TemporalChains"}}},nil}c["90% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["12% increased Fire Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil}c["50% reduced Reflected Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-50}}," Reflected "}c["+32% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=32}},nil}c["10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+64 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=64}},nil}c["Regenerate 35 Mana per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=35}},nil}c["20% Chance for Energy Shield Recharge to Start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," for Recharge to Start when you Block"}c["+1% to Chaos Resistance per Poison on you"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=1}}," per Poison on you"}c["Gain Phasing for 3 seconds on Kill"]={nil,"Gain Phasing for 3 seconds on Kill"}c["30% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["10% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil}c["25% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=155}},nil}c["Cannot be Shocked if Intelligence is higher than Strength"]={nil,"Cannot be Shocked if Intelligence is higher than Strength"}c["Auras you Cast grant 0.2% of Maximum Life Regenerated per second to"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}}," to"}c["+150 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["20% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["Adds 6 to 12 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["+1 Energy Shield gained on Kill per Level {variant:3,4}+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill {variant:3,4}+1 to maximum Life "}c["50% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["20% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit "}c["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 24 to 36 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=36}},nil}c["30% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=30}},nil}c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-40}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Damage Penetrates 2% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=2}},nil}c["Discipline Reserves no Mana"]={nil,"Discipline Reserves no Mana"}c["20% reduced Chill Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You"}c["+65 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=65}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}},nil}c["20% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["Adds 2 to 3 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=2},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=3}},nil}c["-5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=-5},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=-5},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-5}},nil}c["1% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=1}},nil}c["30% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["50% chance to inflict Bleeding on Critical Strike with Attacks Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={{}," to inflict Bleeding Enemies you inflict Bleeding on grant 100% increased Flask Charges"}c["+12% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["10% of Overkill Damage is Leeched as Life Your Damaging Hits always Stun Enemies that are on Full Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=10}}," Overkill is Your Damaging Hits always Stun Enemies that are on Full Life"}c["25% chance to Scorch Enemies Cannot inflict Ignite"]={{}," to Scorch Enemies Cannot inflict Ignite"}c["+15% chance to Block Spell Damage 15% increased Cast Speed"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=15}}," Damage 15% increased Cast Speed"}c["+2 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block"]={{}," to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block"}c["You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 4 seconds on using a Warcry"}c["Socketed Gems are supported by level 25 Melee Splash"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportMeleeSplash"}}},nil}c["Adds 32 to 42 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=32},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=42}},nil}c["3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Speed",type="INC",value=3}}," for each Map Item Modifier affecting the "}c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"}c["You cannot Recharge Energy Shield"]={nil,"You cannot Recharge Energy Shield"}c["5% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=5}},nil}c["10% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=3}},nil}c["190% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=190}},nil}c["+20 Energy Shield gained on Kill +1 to Level of Socketed Elemental Gems"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill +1 to Level of Socketed Elemental Gems"}c["+1% Chance to Block Attack Damage per 50 Strength Chance to Block Spell Damage is Unlucky"]={{[1]={[1]={div=50,stat="Str",type="PerStat"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=1}}," Attack Damage Chance to Block Damage is Unlucky"}c["+60 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["10% increased Cast Speed for Curses"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=10}},nil}c["2% additional Chance to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="BASE",value=2}}," to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced "}c["12% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["Gain Chilling, Shocking and Igniting Conflux for 2 seconds"]={{},nil}c["Nearby Enemies have 25% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 25% reduced Life Regeneration rate"}c["25% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers"}c["Curse Enemies with level 5 Vulnerability on Block"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,noSupports=true,skillId="Vulnerability"}}},nil}c["Arrows Pierce an additional Target 12% increased Attack Speed"]={nil,"Arrows Pierce an additional Target 12% increased Attack Speed"}c["4% additional Block Chance while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["+100% to Cold Resistance when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"}c["Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="EnduranceChargeOnMeleeStun"}}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=310}},nil}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning {variant:43}Unaffected by Conductivity while affected by Purity of Lightning"]={{[1]={[1]={skillName="Purity of Lightning",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=10}}," while affected by{variant:43}Unaffected by Conductivity while affected by Purity of Lightning"}c["40% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["230% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=230}},nil}c["-1 Intelligence per 1 Intelligence on Allocated Passives in Radius 0.4% of Energy Shield Regenerated per Second for"]={{[1]={[1]={div=1,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Int",type="BASE",value=-1}}," on Allocated Passives in Radius 0.4% of Energy Shield Regenerated per Second for"}c["Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike"}c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Zombies deal 90% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=90}}}},nil}c["Your Cold Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true}},nil}c["+15% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["25% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["Golems have +1000 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit"}c["175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=175}},nil}c["Adds 2 to 3 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=2},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=3}},nil}c["4% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=4}},nil}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=63}},nil}c["Attacks always inflict Bleeding while you have Cat's Stealth"]={nil,"Attacks always inflict Bleeding while you have Cat's Stealth"}c["30% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["75% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=75}},nil}c["16% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["8% less Totem Damage per Totem"]={{[1]={[1]={div=1,stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=16384,name="Damage",type="MORE",value=-8}},nil}c["8% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["16% increased Cold Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ColdDamage",type="INC",value=16}},nil}c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}},nil}c["+28 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=28}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies"}c["You cannot be slowed to below base speed"]={{[1]={flags=0,keywordFlags=0,name="ActionSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use"}c["Spectres have 100% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=52}},nil}c["50% chance to avoid Bleeding"]={{}," to avoid Bleeding"}c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["40% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["50% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=50}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"}c["+600 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=600}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Staff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["25% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["Adds 25 to 50 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=50}},nil}c["+220 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=220}},nil}c["1% increased Damage per 5 of your lowest Attribute Elder Item"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}," per 5 of your lowest Attribute Elder Item"}c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=5,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["20% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Vitality Reserves no Mana {variant:5}Grace Reserves no Mana"]={nil,"Vitality Reserves no Mana {variant:5}Grace Reserves no Mana"}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Ignited Enemies"}c["25% increased Zombie Size {variant:1,2,3}Zombies deal 100% increased Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}}}}," Size {variant:1,2,3}Zombies deal 100% increased "}c["10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 10% chance to gain a Power Charge on Kill"}c["12% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=12}},nil}c["Recover 5% of Maximum Life on Kill"]={nil,"Recover 5% of Maximum Life on Kill"}c["+40 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40}},nil}c["20% of Fire Damage taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=20}},nil}c["Socketed Curse Skills ignore Curse Limit +40 to Intelligence"]={nil,"Socketed Curse Skills ignore Curse Limit +40 to Intelligence"}c["25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=25}},nil}c["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"]={nil,"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"}c["1% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do"}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"}c["+30 Life gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}}," ing Ignited Enemies"}c["Recover 75% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use"}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["+1% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"}c["+23% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=23}},nil}c["Adds 19-43 Chaos Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=43}},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["Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15}}," while affected by Wrath"}c["13% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=13}},nil}c["Socketed Gems deal 63 to 94 additional Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=63}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}}}},nil}c["Enemies Chilled by you take 100% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=100}}}},nil}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}c["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=16}},nil}c["30% increased Damage against Rare monsters {variant:2}30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," against Rare monsters {variant:2}30% increased Damage with Hits against Rare monsters"}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["Energy Shield protects Mana instead of Life"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldProtectsMana",type="FLAG",value=true}},nil}c["+6% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=6}},nil}c["4% increased Movement Speed for each Hit you've Blocked Recently"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}," for each Hit you've Blocked Recently"}c["70% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=70}},nil}c["0.3% of Physical Attack Damage Leeched as Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.3}},nil}c["Adds 6 to 14 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=14}},nil}c["Anger has 60% increased Aura Effect"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination"}c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiderAspect"}}},nil}c["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["50% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill"}c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=65}},nil}c["You cannot have non-Golem Minions 25% reduced Golem Size"]={nil,"You cannot have non-Golem Minions 25% reduced Golem Size"}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=100}},nil}c["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=83}},nil}c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["10% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["Enemies can have 1 additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}c["165% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=165}},nil}c["31% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=31}},nil}c["+23% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=23}},nil}c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum "}c["Adds 22 to 32 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=32}},nil}c["+50 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=50}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"}c["15% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=15}},nil}c["+125 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=125}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"}c["20% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={div=450,stat="Evasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["10% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-10}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"}c["+75 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=75}},nil}c["3 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}c["Extra Gore {variant:1}10% chance to cause Bleeding on Hit"]={nil,"Extra Gore {variant:1}10% chance to cause Bleeding on Hit"}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["You and nearby allies have 20% increased Attack, Cast and Movement"]={{}," Attack, Cast and Movement"}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["100% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100}},nil}c["25% increased Attack Speed if you haven't Killed Recently"]={{[1]={[1]={neg=true,type="Condition",var="KilledRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Gain Soul Eater for 10 seconds when you use a Vaal Skill"}c["Adds 1 to 12 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=12}},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}}," Attack Damage "}c["Gain Life and Mana from Leech instantly on Critical Strike {variant:3}You have Vaal Pact if you've dealt a Critical Strike Recently"]={nil,"Gain Life and Mana from Leech instantly on Critical Strike {variant:3}You have Vaal Pact if you've dealt a Critical Strike Recently"}c["20% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=20}},nil}c["6% reduced Damage taken from Bleeding Enemies"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," from Bleeding Enemies"}c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience"}c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds on Critical Strike"]={{}," to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds"}c["Removes all mana. Spend Life instead of Mana for Skills"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["300% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=300}},nil}c["220% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=220}},nil}c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["18% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=18}},nil}c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="BASE",value=20}}," to gain a Power Charge on Hit 6% increased "}c["Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"]={nil,"Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"}c["+3% to all maximum Resistances while you have no Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"]={nil,"With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"}c["165% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=165}},nil}c["Movement Skills cost no Mana"]={{[1]={flags=0,keywordFlags=8,name="ManaCost",type="MORE",value=-100}},nil}c["Adds 1 to 100 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed 200% increased Physical Damage"]={nil,"Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed 200% increased Physical Damage"}c["Adds 1 to 120 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=120}},nil}c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["Cannot Block Spells"]={nil,"Cannot Block Spells"}c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Grants Level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["+14 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=14}},nil}c["25% chance to gain a Power Charge on Throwing a Trap Grants level 20 Bear Trap Skill"]={{}," to gain a Power Charge on Throwing a Grants level 20Skill"}c["6% increased Burning Damage for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=12,keywordFlags=0,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits "}c["-18 Physical Damage taken from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a "}c["Cannot be Stunned if you have at least 10 Crab Barriers You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"Cannot be Stunned if you have at least 10 Crab Barriers You only lose 7 Crab Barriers when you take Physical Damage from a Hit"}c["25% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["6% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value"}c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil}c["Cannot be Shocked while Chilled"]={nil,"Cannot be Shocked while Chilled"}c["Raging Spirits' Hits always Ignite Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits' Hits always Ignite Raging Spirits refresh their Duration when they Kill an Ignited Enemy"}c["31% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=31}},nil}c["45% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=45}},nil}c["22% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["+8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}},nil}c["2% chance to Dodge Attacks per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["Adds 1 to 4 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=4}},nil}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved Blood Magic"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=14},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=173}}," while no is Reserved Blood Magic"}c["25% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil}c["+10 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["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["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently Shock Reflection"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=10}}," for each Shocked Enemy you've Killed Recently Shock Reflection"}c["+500 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},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"}}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow"}c["8% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["6% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block"}c["0.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies on Hit"}c["16% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["All Sockets are White Socketed Gems have Elemental Equilibrium"]={nil,"All Sockets are White Socketed Gems have Elemental Equilibrium"}c["Adds 63 to 98 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=63},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=98}},nil}c["30% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=30}},nil}c["Increases and Reductions to Light Radius also apply to Accuracy"]={nil,"Increases and Reductions to Light Radius also apply to Accuracy"}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["+75% to Critical Strike Multiplier during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=75}},nil}c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["40% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40}},nil}c["20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}},nil}c["-50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-50}},nil}c["+25% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of"}c["25% increased Effect of Buffs granted by Socketed Golem Skills"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}c["5% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={nil,"5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion {variant:1}15% increased Attack and Movement Speed while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion {variant:1}15% increased Attack and Movement Speed while you have a Bestial Minion"}c["Celestial Footprints"]={nil,"Celestial Footprints"}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}}," while affected by Purity of Fire"}c["Critical Strike Chance is increased by Lightning Resistance"]={nil,"Critical Strike Chance is increased by Lightning Resistance"}c["Adds 235 to 290 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=235},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=290}},nil}c["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["You and nearby Allies have 15% increased damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["20% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=20}},nil}c["Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15}}," while affected by Hatred"}c["25% increased Elemental Damage with Attack Skills Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}}," with Attack Skills Adds 1 to 60 Lightning Damage"}c["Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"}c["2% of Chaos Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=2}},nil}c["Projectiles gain Damage as they travel further, dealing up"]={nil,"Projectiles gain Damage as they travel further, dealing up"}c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}}," with Attack Skills"}c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["Adds 1 to 20 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["2% chance to Dodge Spell Hits +2 to Level of Socketed Lightning Gems"]={{}," to Dodge Hits +2 to Level of Socketed Lightning Gems"}c["-100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-100}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["50% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-50}},nil}c["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges"}c["20% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["Minions have 13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}}}},nil}c["100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["30% of Damage you Reflect to enemies is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," you Reflect to enemies is gained as Life"}c["6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["25% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=25}},nil}c["0.5% of Energy Shield Regenerated per second for each"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.5}}," for each"}c["10% chance to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill"}c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredConsecrate"}}},nil}c["10% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["130% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=130}},nil}c["35% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=35}},nil}c["You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["20% chance to Maim on Hit 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}}," to Maim on Hit 20% chance "}c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=63}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 to s "}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="LightningMax",type="BASE",value=70}}," to Hits "}c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}}}},nil}c["Adds 17 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"}c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=43}},nil}c["Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs have -10% to All Resistances"}c["Damage Penetrates 10% Lightning Resistance during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=10}},nil}c["+15% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["+80 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=80}},nil}c["4% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},nil}c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil}c["Adds 280 to 843 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,keywordFlags=0,name="LightningMin",type="BASE",value=280},[2]={flags=1048576,keywordFlags=0,name="LightningMax",type="BASE",value=843}},nil}c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," if you have Shocked an Enemy Recently"}c["Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second"}c["Has no Sockets"]={{[1]={flags=0,keywordFlags=0,name="NoSockets",type="FLAG",value=true}},nil}c["50% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-50}},nil}c["You count as on Low Life while you are Cursed with Vulnerability You are Cursed with Level 20 Vulnerability"]={nil,"You count as on Low Life while you are Cursed with Vulnerability You are Cursed with Level 20 Vulnerability"}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life"]={nil,"Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life"}c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CatAspect"}}},nil}c["30% increased Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["22% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=22}},nil}c["30% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["+15% to Lightning and Chaos Resistances {variant:4}{crafted}+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Lightning and s {variant:4}{crafted}+17 to Strength and Dexterity"}c["Gain a Power Charge on non-Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike"}c["2% increased Minion Attack and Cast Speed per Skeleton you own 2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per Skeleton you own 2% increased Minion Duration per you own"}c["Minions have 5% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}}}},nil}c["Minions have 4% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}}}},nil}c["Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike"]={nil,"Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike"}c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=12}},nil}c["210% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=210}},nil}c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["113% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=113}},nil}c["+12% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["130% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=130}},nil}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"}c["450% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=450}},nil}c["Curses in this item are reflected back to you"]={nil,"Curses in this item are reflected back to you"}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies"}c["50% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-50}},nil}c["155% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=155}},nil}c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["5% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=5}},nil}c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"You gain Divinity for 10 seconds on reaching maximum Divine Charges"}c["14% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10.0 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["6% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-6}},nil}c["100% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=100}},nil}c["-20 Fire Damage taken when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-20}},nil}c["50% reduced Mana Cost of Raise Spectre"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}}," of Raise Spectre"}c["Golems have 38% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil}c["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground"}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-3}},nil}c["16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=16}},nil}c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=6}},nil}c["Adds 40 to 70 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=40},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["50% reduced Experience gain"]={{}," Experience gain"}c["+40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=40}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy"}c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil}c["26% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=26}},nil}c["55% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=55}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"}c["Allocated Small Passive Skills in Radius grant nothing Grants all bonuses of Unallocated Small Passive Skills in Radius"]={nil,"Allocated Small Passive Skills in Radius grant nothing Grants all bonuses of Unallocated Small Passive Skills in Radius"}c["Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Gains no Charges During effect of any Soul Ripper Flask"}c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil}c["+24 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["Projectiles Pierce 5 additional Targets while you have Phasing"]={nil,"Projectiles Pierce 5 additional Targets while you have Phasing"}c["Adds 135 to 360 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=135},[2]={[1]={type="Condition",var="Unarmed"},flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=360}},nil}c["20% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=20}},nil}c["Gain Onslaught for 3 seconds on Kill"]={nil,"Gain Onslaught for 3 seconds on Kill"}c["63% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=63}},nil}c["+35 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=35}},nil}c["30% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["18% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=18}},nil}c["Grants level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialRhoa"}}},nil}c["50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["+6% chance to Block Spell Damage {variant:3}+4% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=6}}," Damage {variant:3}+4% chance to Block Spell Damage"}c["10% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Ignited Enemies Hits with this Weapon deal 60% increased Damage to Frozen Enemies"}c["+15 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=15}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"}c["Ghost Reaver"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ghost Reaver"}},nil}c["+8 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}}," Total while affected by Clarity"}c["15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil}c["1% increased Damage per 15 Dexterity"]={{[1]={[1]={div=15,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["15% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=15}},nil}c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=78},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=114}},nil}c["4% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=24}},nil}c["Cannot be Shocked if Intelligence is higher than Strength 1% increased Damage per 5 of your lowest Attribute"]={nil,"Cannot be Shocked if Intelligence is higher than Strength 1% increased Damage per 5 of your lowest Attribute"}c["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.5}},nil}c["45% reduced Effect of Chill on You {variant:2}75% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-45}}," of Chill on You {variant:2}75% reduced Effect of Chill on You"}c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge on Hit"}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}}," with Critical Strikes "}c["Ornate Quiver Requires Level 45"]={nil,"Ornate Quiver Requires Level 45"}c["1% increased Maximum Life per Abyss Jewel affecting you 1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=1}}," per Abyss Jewel affecting you 1% increased Maximum Mana per Abyss Jewel affecting you"}c["20% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["8% reduced Elemental Damage taken while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-8}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"}c["Arrows that Pierce have 50% chance to cause Bleeding"]={nil,"Arrows that Pierce have 50% chance to cause Bleeding"}c["Grants level 20 Bear Trap Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BearTrap"}}},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["15% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["+18 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=18}},nil}c["100% increased Shock Duration on You Shocks you cause are reflected back to you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You Shocks you cause are reflected back to you"}c["+333 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=333}},nil}c["+1% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}c["Your Fire Damage can Poison"]={nil,"Your Fire Damage can Poison"}c["+2 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=2}}},nil}c["10% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit"}c["10% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=10}},nil}c["Minions have 10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}}},nil}c["60% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon 40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=260,keywordFlags=0,name="BleedChance",type="BASE",value=50}}," with Critical Strikes 40% increased Attack Damage "}c["You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage"]={nil,"You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage"}c["Can have up to 1 additional Remote Mine placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=1}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste"}c["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"Nearby Enemies grant 25% increased Flask Charges"}c["+1% to Critical Strike Chance while affected by Aspect of the Cat"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}}," while affected by Aspect of the Cat"}c["50% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=50}},nil}c["120% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=120}},nil}c["15% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=15}},nil}c["Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"}c["Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy"}c["Adds 1 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["Zealot's Oath during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["+160 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=160}},nil}c["+12% to Critical Strike Multiplier with Wands"]={{[1]={flags=524288,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["+2 seconds to Avian's Might Duration Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=2}}," seconds to Avian's Might Adds 25 to 40 Cold Damage while you have Avian's Might"}c["You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={nil,"47 to 61 added Chaos Damage per White Socket"}c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["You are Immune to Silence Grants level 20 Illusory Warp Skill"]={nil,"You are Immune to Silence Grants level 20 Illusory Warp Skill"}c["0.87% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.87}},nil}c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=7}},nil}c["their Maximum Life as Lightning Damage which cannot Shock"]={nil,"their Maximum Life as Lightning Damage which cannot Shock"}c["Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills ignore Curse Limit"}c["20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=4,keywordFlags=0,name="Damage",type="INC",value=20}}," with Hits and Ailments "}c["23% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=23}},nil}c["16% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=16}},nil}c["12% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"}c["Can have up to 1 additional Totem summoned at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Arrows Pierce an additional Target Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Arrows Pierce an additional Target Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"}c["Cannot inflict Ignite 10% increased Elemental Damage per Sextant affecting the area"]={nil,"Cannot inflict Ignite 10% increased Elemental Damage per Sextant affecting the area"}c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="LightningResistAura"}}},nil}c["20% reduced Chill Duration on You {variant:2}50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You {variant:2}50% chance to Avoid being Chilled"}c["15% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-15}},nil}c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"}c["200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={nil,"200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy Recover 100 Life when your Trap is triggered by an Enemy"]={{[1]={flags=0,keywordFlags=4096,name="Life",type="BASE",value=30}}," to gain Phasing for 4 seconds when your is triggered by an Enemy Recover 100 when your Trap is triggered by an Enemy"}c["30% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=30}},nil}c["Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=0},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=3}},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}}," Attack Damage "}c["10% chance to gain Onslaught for 10 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}}," to gain Onslaught for 10 seconds on Kill Recover 1% of on Kill"}c["+150 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}}," and Energy Shield"}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge 1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageGainAsChaos",type="BASE",value=4}}," Non- per Siphoning Charge 1% additional Physical Damage Reduction from Hits per Siphoning Charge"}c["100% reduced Despair Mana Reservation"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}}," Despair "}c["4% reduced Damage taken from Taunted Enemies"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-4}}," from Taunted Enemies"}c["Culling Strike"]={{},"Culling Strike"}c["200% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=200}},nil}c["Golems have 45% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-45}}}},nil}c["12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},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["25% chance to create a Smoke Cloud when Hit {variant:1}40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="BASE",value=25}}," to create a Smoke Cloud when Hit {variant:1}40% increased "}c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon"}c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"}c["+68 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=68}},nil}c["You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit"}c["28% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers"}c["Warcries cost no Mana"]={{[1]={flags=0,keywordFlags=4,name="ManaCost",type="MORE",value=-100}},nil}c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil}c["Adds 15 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["13% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil}c["Charan's Sword Source: Drops from unique{Hillock}"]={nil,"Charan's Sword Source: Drops from unique{Hillock}"}c["24% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}}," with Attack Skills"}c["65% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=65}},nil}c["70% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["28% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["16% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=16}},nil}c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=6}},nil}c["Stygian Vise"]={nil,"Stygian Vise"}c["+50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["Grants Summon Harbinger of Directions Skill Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},"Grants Summon Harbinger of Directions Skill "}c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Aspect of the Spider Debuff "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton"}c["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"}c["45% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=45}},nil}c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"]={nil,"Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"}c["50% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=50}},nil}c["23% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil}c["18% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=18}},nil}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}},nil}c["Unaffected by Shock"]={nil,"Unaffected by Shock"}c["You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them Your Elemental Damage can Shock"]={nil,"Enemies take 5% increased Damage for each type of Ailment you have inflicted on them Your Elemental Damage can Shock"}c["You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled"}c["+20 Mana gained when you Block {variant:2,3}+24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block {variant:2,3}+24 Mana gained when you Block"}c["+150 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=150}},nil}c["+25 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill"}c["Adds 53 to 60 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=60}},nil}c["You have Onslaught while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["0.4% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.4}},nil}c["+300 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=300}},nil}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FireDamage",type="INC",value=30}}," with Hits and Ailments "}c["+4% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["3% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=3}},nil}c["30% increased Radius of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=30}},nil}c["+110 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=110}},nil}c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["140% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=140}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["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["Wrath has 60% increased Aura Effect"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect 75% increased Duration of Poisons you inflict during Flask effect"]={nil,"Your Critical Strikes do not deal extra Damage during Flask effect 75% increased Duration of Poisons you inflict during Flask effect"}c["You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked"}c["80% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["1.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.4}},nil}c["50% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You"}c["Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills"}c["25% reduced Bleed duration"]={{[1]={flags=0,keywordFlags=2097152,name="Duration",type="INC",value=-25}},nil}c["15% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["Chill and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill and Freeze duration on you is based on 65% of Energy Shield"}c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},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["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have Nearby Allies have 2% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},[2]={div=100,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=7},onlyAllies=true}}}," you have Nearby Allies have 2% increased Cast Speed you have"}c["+60% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=60}},nil}c["40% increased Damage of each Damage Type for which you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}," of each Damage Type for which you"}c["+72% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=72}},nil}c["Wrath Reserves no Mana"]={nil,"Wrath Reserves no Mana"}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["+15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15}},nil}c["2% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=2}},nil}c["Socketed Gems fire Projectiles in a Nova"]={nil,"Socketed Gems fire Projectiles in a Nova"}c["Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken"]={nil,"Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken"}c["100% increased Critical Strike Chance with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork"}c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["5% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use"}c["10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill"}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15"}c["+28 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=28}},nil}c["+190 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=190}},nil}c["+300 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=300}},nil}c["+30 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}}," gained on Killing a Shocked Enemy"}c["+1% to Critical Strike Multiplier per 1% Block Chance"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."}c["Projectiles Pierce you {Variant:3}+160 Dexterity Requirement"]={nil,"Projectiles Pierce you {Variant:3}+160 Dexterity Requirement"}c["5% increased Projectile Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["125% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=125}},nil}c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Culling Strike 30% increased Damage against Rare and Unique Enemies 10% of Overkill Damage is Leeched as Life Your Damaging Hits always Stun Enemies that are on Full Life"}c["35% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=35}},nil}c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"}c["7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=30}},nil}c["Has 2 Abyssal Sockets 10% increased Attack Speed"]={nil,"Has 2 Abyssal Sockets 10% increased Attack Speed"}c["110% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=110}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes"}c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireBeam"}}},nil}c["22% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=22}},nil}c["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["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["Adds 19 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["70% increased Minion Damage if you have Hit Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["230% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=230}},nil}c["+8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["+110 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=110}},nil}c["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"]={nil,"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"}c["5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"}c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["+45 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=45}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets"}c["+2 seconds to Cat's Stealth Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=2}}," seconds to Cat's Stealth "}c["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill"}c["Your Maximum Resistances are 80%"]={nil,"Your Maximum Resistances are 80%"}c["16% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=16}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect"}c["295% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=295}},nil}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=10}}," while affected by Purity of Ice"}c["You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Ignited for 3 seconds after being Ignited"}c["Unaffected by Temporal Chains while affected by Haste"]={nil,"Unaffected by Temporal Chains while affected by Haste"}c["Half of your Strength is added to your Minions"]={nil,"Half of your Strength is added to your Minions"}c["+25% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["13% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["Life Leech applies instantly. Life Regeneration has no effect."]={{[1]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["Envy Reserves no Mana"]={nil,"Envy Reserves no Mana"}c["Critical Strike Chance is increased by Lightning Resistance {variant:1}Critical Strikes deal 50% increased Lightning Damage"]={nil,"Critical Strike Chance is increased by Lightning Resistance {variant:1}Critical Strikes deal 50% increased Lightning Damage"}c["Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"}c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=40}},nil}c["3% increased Experience gain {variant:2}2% increased Experience gain"]={{}," Experience gain {variant:2}2% increased Experience gain"}c["12% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["25% Chance to Ignite when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["12% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-12}},nil}c["8% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}},nil}c["15% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=15}},nil}c["25% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}}," with Attack Skills"}c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=65}},nil}c["5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies 30% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={type="Condition",var="KilledRecently"},[3]={actor="enemy",type="ActorCondition",var="Maimed"},flags=5,keywordFlags=0,name="Duration",type="BASE",value=50}}," to Maim on Hit 30% increased "}c["50% chance to Cause Poison on Critical Strike"]={{}," to Cause Poison"}c["Zombies deal 100% increased Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}}},nil}c["Elemental Overload"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Overload"}},nil}c["15% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}c["Your Golems are aggressive Primordial"]={nil,"Your Golems are aggressive Primordial"}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"}c["30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["3% additional Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil}c["56% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=56}},nil}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={nil,"Aspect of the Spider can inflict Spider's Web on Enemies an additional time Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"}c["40% more Elemental Damage if you've Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=40}},nil}c["80% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Damage Penetrates 25% Cold Resistance if you've used a Fire Skill in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsedFireSkillInPast10Sec"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=25}},nil}c["20% increased Taunt Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Taunt "}c["4% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=4}},nil}c["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=7}},nil}c["60% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil}c["Gain Shocking Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100},[2]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true},[3]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[4]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[5]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["30% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=30}},nil}c["Unaffected by Enfeeble while affected by Grace"]={nil,"Unaffected by Enfeeble while affected by Grace"}c["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={skillName="Siege Ballista",type="SkillName"},[2]={div=200,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Gain 5% of Cold Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsChaos",type="BASE",value=5}},nil}c["3% increased Damage per Crab Barrier"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=3}}," per Crab Barrier"}c["+200 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=200}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"}c["10% increased Physical Damage with Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["10% chance to Fortify on Melee hit 20% chance to Taunt on Hit"]={{}," to Fortify 20% chance to Taunt on Hit"}c["Adds 12 to 16 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=16}},nil}c["45% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=45}},nil}c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=1048576,name="Duration",type="MORE",value=-50}},nil}c["12% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Triggers Level 20 Blinding Aura when Equipped Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},"Triggers Level 20 Blinding Aura when Equipped "}c["8% increased Physical Damage for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently"}c["-25 Physical Damage taken from Projectile Attacks +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks +5% Chance to Block"}c["Minions Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}}}},nil}c["5% additional Chance to Block Spells with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["Grants level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialSnake"}}},nil}c["43% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=43}},nil}c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=80}},nil}c["3% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["+20% chance to Block Spell Damage 30% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," Damage 30% increased Spell Damage"}c["Adds 10 to 38 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=38}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger {variant:2}Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1.5}}," while affected by{variant:2}Damage Penetrates 15% Fire Resistance while affected by Anger"}c["-1 Intelligence per 1 Intelligence on Allocated Passives in Radius +100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"]={{[1]={[1]={div=1,stat="Int",type="PerStat"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Int",type="BASE",value=-1}}," on Allocated Passives in Radius +100 to Accuracy Rating on Unallocated Passives in Radius"}c["30% reduced Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30}},nil}c["Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 240 to 300 Physical Damage to Attackers on Block"}c["25% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"}c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["100% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=100}},nil}c["Deal no Non-Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["100% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=100}},nil}c["100% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},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["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," Minion per you own"}c["18% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=18}},nil}c["Minions have 10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}}}},nil}c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-50}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier 2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ChaosDamage",type="BASE",value=55}}," Non-Ailment over Time Multiplier 2% increased Cast Speed "}c["50% increased Shock Duration on You Take no Extra Damage from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You Take no Extra Damage from Critical Strikes"}c["+200 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["50% increased Mana Regeneration while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["You and nearby Allies deal 35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}},nil}c["+23 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=23},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=23}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill {variant:2,3}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 {variant:2,3}You take 450 Chaos Damage per second for 3 seconds on Kill"}c["-35 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-35}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted with Bleeding when Hit by an Attack"}c["Trigger Socketed Spells when you Focus"]={nil,"Trigger Socketed Spells when you Focus"}c["Cannot be Blinded"]={nil,"Cannot be Blinded"}c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["15% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=15}},nil}c["You are cursed with Level 10 Vulnerability"]={nil,"You are cursed with Level 10 Vulnerability"}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your"}c["Arrows Pierce all Targets 10% increased Movement Speed"]={nil,"Arrows Pierce all Targets 10% increased Movement Speed"}c["20% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=20}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50}}," if you have at least 500 "}c["Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"]={nil,"Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"}c["+100 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1}}," Level of Socketed Active Skill Gems per 25 Player Levels Adds 3 to 5 to Attacks per 3 Player Levels"}c["24% increased Elemental Damage with Attack Skills 175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}}," with Attack Skills 175% increased Physical Damage"}c["420% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=420}},nil}c["500% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=500}},nil}c["+5000 to Zombie maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=5000}}}},nil}c["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"]={nil,"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"}c["Skills from your Gloves have 40% increased Area of Effect"]={{[1]={[1]={slotName="Gloves",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}}}},nil}c["24% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=24}},nil}c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BirdAspect"}}},nil}c["125% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=125}},nil}c["Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther"]={nil,"Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther"}c["Gain a Frenzy Charge on every 50th Rampage Kill"]={nil,"Gain a Frenzy Charge on every 50th Rampage Kill"}c["220% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=220}},nil}c["8% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+110 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=110}},nil}c["+13% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=13}},nil}c["Socketed Gems are Supported by level 15 Pierce"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportPierce"}}},nil}c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=22}}}},nil}c["20% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["+40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"}c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil}c["10% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Attack skills can have 1 additional Totem Summoned at a time"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+90 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=90}},nil}c["1.5% of Damage leeched as Life while affected by Vitality"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.5}}," while affected by Vitality"}c["+18% Chance to Block Attack Damage while wielding a Staff Has no Sockets"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}}," Attack Damage Has no Sockets"}c["to 30% increased Damage to targets Skills fire an additional Projectile"]={nil,"to 30% increased Damage to targets Skills fire an additional Projectile"}c["Projectiles from Attacks have 20% 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"]={nil,"Projectiles from Attacks have 20% 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"}c["Adds Knockback during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil}c["0.4% of Energy Shield Regenerated per Second for"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.4}}," for"}c["0.9% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.9}},nil}c["Enemies Become Chilled as they Unfreeze"]={nil,"Enemies Become Chilled as they Unfreeze"}c["Cannot be Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["+3% to all maximum Resistances while Poisoned Poisons on you expire 50% slower"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}}," while Poisoned Poisons on you expire 50% slower"}c["+24% chance to Block Spell Damage {variant:4}+20% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=24}}," Damage {variant:4}+20% chance to Block Spell Damage"}c["43% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=43}},nil}c["20% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+14 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=14}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element 20% increased Area of Effect for Attacks"]={{[1]={flags=8388608,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element 20% increased Area of Effect for Attacks"}c["Grants level 5 Frostbite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="Frostbite"}}},nil}c["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use"}c["285% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=285}},nil}c["8% increased Physical Damage for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently 80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyRecently"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each Hit you've Blocked Recently 4% increased Movement Speed for each Hit you've Blocked Recently 80% increased Physical Damage "}c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}},nil}c["163% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=163}},nil}c["7% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased "}c["Raging Spirits have 140% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=140}}}},nil}c["Gain Flask Charges when you deal a Critical Strike"]={nil,"Gain Flask Charges when you deal a Critical Strike"}c["Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=12}},nil}c["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil}c["17% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=17}},nil}c["4% increased Damage per Enemy Killed by you or your Totems Recently 8% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=16384,name="Damage",type="INC",value=4}}," per Enemy Killed by you or your s Recently 8% increased Attack and Cast Speed "}c["Socketed Gems are supported by level 2 Chance to Flee"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=2,skillId="SupportChanceToFlee"}}},nil}c["30% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}}," with Attack Skills"}c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil}c["14% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=14}},nil}c["Cannot inflict Freeze or Chill 10% increased Elemental Damage per Sextant affecting the area"]={nil,"Cannot inflict Freeze or Chill 10% increased Elemental Damage per Sextant affecting the area"}c["10% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge on non-Critical Strike"}c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=65}},nil}c["10% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block"}c["+35 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=35}},nil}c["Casts level 7 Abberath's Fury when equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=7,skillId="RepeatingShockwave"}}},nil}c["Adds 285 to 360 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=285},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=360}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped 25% chance to gain a Siphoning Charge when you use a Skill"]={{}," Maximum Siphoning Charges per Elder or Shaper Item Equipped 25% chance to gain a Siphoning Charge when you use a Skill"}c["300% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=300}},nil}c["Nearby Enemies have -10% to all Resistances You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={nil,"Nearby Enemies have -10% to all Resistances You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"}c["20% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=20}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["Adds 115 to 260 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=260}},nil}c["8% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["3% increased Experience gain"]={{}," Experience gain"}c["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=240}},nil}c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage Rampage"}c["+14% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=14}},nil}c["+20 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill"}c["0.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}},nil}c["Your Energy Shield starts at zero You cannot Recharge Energy Shield"]={nil,"Your Energy Shield starts at zero You cannot Recharge Energy Shield"}c["30% increased Zombie Resistances"]={{}," Resistances"}c["Extra gore"]={nil,"Extra gore"}c["Traps and Mines have a 25% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=12288,name="PoisonChance",type="BASE",value=25}},nil}c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies"}c["Vaal Skills deal 40% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills deal 40% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"}c["Elemental Hit deals 15% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"Elemental Hit deals 15% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"}c["+14% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=14}},nil}c["50% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["+35% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=35}},nil}c["Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"}c["20% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected "}c["+23% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=23}},nil}c["Flasks do not apply to You"]={{[1]={flags=0,keywordFlags=0,name="FlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil}c["60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=60}},nil}c["Golems Deal 40% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}}}},nil}c["25% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting"}c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill"}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=12}}," while affected by Purity of Elements"}c["24% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=24}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block"}c["Vaal Skills deal 40% more Damage during effect"]={nil,"Vaal Skills deal 40% more Damage during effect"}c["+40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=40}},nil}c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil}c["18% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage"}c["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=1000}}}},nil}c["10% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected "}c["+5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"}c["Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"]={nil,"Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"}c["Adds 5 to 10 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=8192,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}c["+330 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=330}},nil}c["10% increased Physical Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={nil,"While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"}c["200% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=200}},nil}c["+38 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=38},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=38}},nil}c["105% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=105}},nil}c["80% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+20 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="ClawCritChanceAppliesToUnarmed",type="FLAG",value=true}},nil}c["Socketed Golem Gems grant Onslaught for 10 seconds on Summon"]={nil,"Socketed Golem Gems grant Onslaught for 10 seconds on Summon"}c["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"}c["18% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Embrace for 3 seconds when you Ignite an Enemy"}c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil}c["With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"}c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["90% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=90}},nil}c["115% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=115}},nil}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}}," for each Equipped Corrupted Item"}c["Skills in your Helm can have up to 1 additional Totem Summoned at a time"]={{[1]={[1]={slotName="Helmet",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}}}},nil}c["Minions Regenerate 1% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}}},nil}c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil}c["+100 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["+50 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}},nil}c["You take 20% reduced Extra Damage from Critical Strikes"]={nil,"You take 20% reduced Extra Damage from Critical Strikes"}c["Adds 1 to 2 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=1,keywordFlags=0,name="FireMin",type="BASE",value=1},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=1,keywordFlags=0,name="FireMax",type="BASE",value=2}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier"}c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil}c["+15% chance to Block Spell Damage {variant:3}+15% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=15}}," Damage {variant:3}+15% chance to Block Spell Damage"}c["Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems Can Summon up to 1 additional Golem at a time"]={nil,"Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems Can Summon up to 1 additional Golem at a time"}c["6% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}c["Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}}," while you have Avian's Might"}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-10}},nil}c["Elemental Status Effects caused by your Skills spread to other nearby Enemies"]={nil,"Elemental Status Effects caused by your Skills spread to other nearby Enemies"}c["10% of Damage taken Gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit"}c["13% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-13}},nil}c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers"}c["Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"}c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=150}},nil}c["Adds 1 to 11 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=11}},nil}c["An additional Curse can be applied to you 20% increased Damage per Curse on you"]={nil,"An additional Curse can be applied to you 20% increased Damage per Curse on you"}c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil}c["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["Adds 65 to 120 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["14% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=14}},nil}c["100% reduced Frostbite Mana Reservation"]={{[1]={[1]={skillName="Frostbite",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["2% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Can Allocate Passives from the Marauder's starting point"]={{},nil}c["Adds 22 to 32 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=32}},nil}c["Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking"}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedColdDamage"}}},nil}c["+25% chance to be Ignited"]={{}," to be Ignited"}c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=3}},nil}c["Critical Strikes deal 50% increased Lightning Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["+1 to maximum number of Summoned Holy Relics"]={{}," maximum number of Summoned Holy Relics"}c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"}c["100% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=50}},nil}c["25% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=25}},nil}c["Items and Gems have 50% increased Attribute Requirements"]={nil,"Items and Gems have 50% increased Attribute Requirements"}c["50% reduced number of Zombies allowed"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="INC",value=-50}},nil}c["Cannot Be Stunned while on Full Energy Shield"]={nil,"Cannot Be Stunned while on Full Energy Shield"}c["Grants Armour equal to 160% of your Reserved Life to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedLifeAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1.6}}}},nil}c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["-1 Strength per 1 Strength on Allocated Passives in Radius +5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"]={{[1]={[1]={div=1,stat="Str",type="PerStat"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Str",type="BASE",value=-1}}," on Allocated Passives in Radius +5% to Critical Strike Multiplier on Unallocated Passives in Radius"}c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil}c["24% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["75% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-75}}," of Chill on You"}c["4% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-4}},nil}c["20% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=20}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=18}}," while affected by Clarity"}c["Raging Spirits have 150% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=150}}}},nil}c["200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork"}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy"}c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["-40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-40}},nil}c["Your Flasks grant 10% chance to Ignite during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["5% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5}},nil}c["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["25% reduced Golem Size"]={{}," Size"}c["2% of Fire Damage Leeched as Life while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=2}},nil}c["Your Offering Skills also affect you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="buffNotPlayer",value=false}}}}},nil}c["5% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil}c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"Gain an Endurance Charge when you take a Critical Strike"}c["40% increased Damage against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Adds 65 to 105 Chaos Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=2,keywordFlags=0,name="ChaosMax",type="BASE",value=105}},nil}c["1.5% of Damage leeched as Life while affected by Vitality {variant:46}140 Life Regenerated per Second while affected by Vitality"]={{}," while affected by Vitality"}c["Enemies you Shock have 30% reduced Cast Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed"}c["Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use"}c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=100},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=100}},nil}c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-5}},nil}c["10% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect Enemies on Consecrated Ground you create during Effect take 10% increased Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}}," against Enemies on Consecrated Ground Enemies on Consecrated Ground you create take 10% increased Damage"}c["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges"}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently 10% increased Movement Speed if you have used a Vaal Skill Recently"]={nil,"10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently 10% increased Movement Speed if you have used a Vaal Skill Recently"}c["30 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil}c["Deal no Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true}},nil}c["+45% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=45}},nil}c["5% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil}c["8% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["20% chance to gain Fortify on Melee Stun You have Onslaught while you have Fortify"]={{}," to gain Fortify on Stun You have Onslaught "}c["Your Energy Shield starts at zero Cannot gain Energy Shield"]={nil,"Your Energy Shield starts at zero Cannot gain Energy Shield"}c["You can only Socket Corrupted Gems in this item {variant:1}Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item {variant:1}Acrobatics"}c["With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"]={nil,"With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage"}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill 180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=20}}," to Trigger Level 20 Shade Form when you Use a Socketed Skill 180% increased "}c["20% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=20}},nil}c["35% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-35}},nil}c["Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"}c["100% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You"}c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=36}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"]={nil,"16 to 144 added Lightning Damage per Blue Socket"}c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=18}}}},nil}c["100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=100}},nil}c["Adds 14 to 26 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil}c["+24 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24}},nil}c["Vitality Reserves no Mana"]={nil,"Vitality Reserves no Mana"}c["Purity of Lightning Reserves no Mana"]={nil,"Purity of Lightning Reserves no Mana"}c["100% increased Mana Regeneration if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["25% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=25}},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["+58 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=58}},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}},nil}c["+16 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=16}},nil}c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky"}c["+45 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil}c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil}c["15% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["0.5% of Energy Shield Regenerated per second for each Enemy you've Killed Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.5}}," for each Enemy you've Killed Recently"}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"}c["20% of Life Regenerated per Second while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=20}},nil}c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil}c["20% chance to Freeze, Shock and Ignite while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["20% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Frozen Enemies Hits with this Weapon deal 60% increased Damage to Shocked Enemies"}c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=20}},nil}c["10% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=10}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"}c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={{}," to gain aCharge on Kill Gore Footprints"}c["You cannot have non-Golem Minions"]={nil,"You cannot have non-Golem Minions"}c["+38 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=38}},nil}c["10% increased Movement Speed if you have used a Vaal Skill Recently"]={{[1]={flags=0,keywordFlags=256,name="MovementSpeed",type="INC",value=10}}," if you have used a Recently"}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={nil,"Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"}c["Adds 3 to 8 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,keywordFlags=0,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["225% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=225}},nil}c["+40 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil}c["Adds 3 to 7 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,keywordFlags=0,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=2,keywordFlags=0,name="FireMax",type="BASE",value=7}},nil}c["You cannot have non-Animated Minions"]={nil,"You cannot have non-Animated Minions"}c["30% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=30}},nil}c["+40% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["+25% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=40}}," Maximum "}c["220% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=220}},nil}c["5% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=5}},nil}c["8% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=8}},nil}c["17% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["+3% to all maximum Resistances while Poisoned 50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}}," while Poisoned 50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"}c["5 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5}},nil}c["Adds 225 to 600 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,keywordFlags=0,name="LightningMin",type="BASE",value=225},[2]={flags=1048576,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["+25% chance to be Poisoned"]={{}," to be Poisoned"}c["2% increased Attack Critical Strike Chance per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=2}}," Attack "}c["+55 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=55}},nil}c["25% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Mind Over Matter"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mind Over Matter"}},nil}c["185% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=185}},nil}c["+8 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",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}c["Notable Passive Skills in Radius grant nothing"]={nil,"Notable Passive Skills in Radius grant nothing"}c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=200}}," if you've dealt a Critical Strike in the past 8 seconds"}c["You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste"}c["12% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=16777217,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["40% increased Damage of each Damage Type for which you have a matching Golem"]={{[1]={[1]={type="Condition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40},[2]={[1]={type="Condition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40},[3]={[1]={type="Condition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40},[4]={[1]={type="Condition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40},[5]={[1]={type="Condition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=40}},nil}c["Arrows that Pierce have 50% chance to cause Bleeding {variant:3}Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have 50% chance to cause Bleeding {variant:3}Arrows that Pierce have +50% to Critical Strike Multiplier"}c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's"}c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero"}c["6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge"}c["206% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=206}},nil}c["2% increased Area of Effect per 25 Rampage Kills Gain a Frenzy Charge on every 50th Rampage Kill"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills Gain aCharge on every 50th Rampage Kill"}c["40% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons have Avatar of Fire"}c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when any of your s is Triggered by an Enemy"}c["10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=10}},nil}c["20% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="INC",value=20}}," with Hits "}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"}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}}," Attack Damage "}c["40% chance to Poison on Hit against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=260,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["45% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["8% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=8}},nil}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=19}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you"}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"}c["15% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}}," with Attack Skills"}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies"}c["24% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=24}},nil}c["Adds 10 to 14 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=14}},nil}c["25% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased "}c["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike"}c["Minions gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill"}c["50% increased Evasion if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["9% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=9}},nil}c["40% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=40}},nil}c["8% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Adds 15 to 33 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=33}},nil}c["2% increased Experience gain"]={{}," Experience gain"}c["Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"]={nil,"Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"}c["Adds 20 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=30}},nil}c["Adds 20 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["Adds 21 to 33 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=33}},nil}c["24% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["50% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=50}},nil}c["10% increased Mana Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=10}},nil}c["0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["50% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=50}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit {variant:4}Trigger Level 1 Abyssal Cry on Hit"]={{}," to cause Enemies to Flee on Hit {variant:4}Trigger Level 1on Hit"}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["1.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.6}},nil}c["Far Shot"]={nil,"Far Shot"}c["35% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=35}},nil}c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["+15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["12% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=12}},nil}c["35% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=35}},nil}c["13% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=13}},nil}c["+20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20}},nil}c["+3% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="BASE",value=3}},nil}c["20% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges"}c["8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["50% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=50}},nil}c["15% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Gain 50 Life when you Stun an Enemy"]={nil,"Gain 50 Life when you Stun an Enemy"}c["10% reduced Reflected Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-10}}," Reflected "}c["40% reduced Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=-40}},nil}c["Adds 10 to 15 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["15% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Every 14 seconds:"]={{},nil}c["6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={actor="enemy",type="ActorCondition",var="LowLife"},flags=4,keywordFlags=0,name="Damage",type="INC",value=6}}," with Hits "}c["5% chance to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill"}c["+5% of maximum Mana per second to maximum Mana Leech rate"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="BASE",value=5}},nil}c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["4 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}},nil}c["1% of Life Regenerated per second per 500 Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}," per 500 "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy"}c["7% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["Adds 51 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=51},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["+360 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=360}},nil}c["+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["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=5,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=5,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["Damage Penetrates 25% Fire Resistance if you've used a Lightning Skill in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsedLightningSkillInPast10Sec"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=25}},nil}c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems"}c["25% chance on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground"}c["You have Crimson Dance while you have Cat's Stealth"]={nil,"You have Crimson Dance while you have Cat's Stealth"}c["Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"]={nil,"Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"}c["+6% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=6}},nil}c["10% increased Damage for each type of Abyssal Jewel affecting you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," for each type of Abyssal Jewel affecting you"}c["+30 Life gained on Killing Ignited Enemies Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKillGainAsFire",type="BASE",value=30}}," ing Ignited Enemies Gain 20% of Physical Damage "}c["+40% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=40}},nil}c["+18 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["5% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5}},nil}c["100% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},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["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you"}c["Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"]={nil,"Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"}c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy"}c["1% of Damage against Frozen Enemies Leeched as Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=0,name="DamageLifeLeech",type="BASE",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}c["Adds 4 to 8 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["310% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=310}},nil}c["Adds 2 to 4 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["Adds 4 to 7 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=7}},nil}c["+70 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=70}},nil}c["Reserves 30% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=30}},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["+2 to Weapon range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["Gain 20% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"]={{[1]={[1]={type="Condition",varList={[1]="KilledRecently",[2]="TotemsKilledRecently"}},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil}c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Recover Full Life at the end of the Flask effect"]={nil,"Recover Full Life at the end of the Flask effect"}c["33% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=33}},nil}c["28% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=28}},nil}c["50% reduced Maximum Recovery per Life Leech 6% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-50}}," Maximum Recovery per Leech 6% increased Attack and Cast Speed"}c["+70 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=70}},nil}c["28% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=28}},nil}c["Totems Fire 2 additional Projectiles"]={{[1]={flags=0,keywordFlags=16384,name="ProjectileCount",type="BASE",value=2}},nil}c["-8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-8}},nil}c["+40% to Critical Strike Multiplier against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["10% increased Damage taken from Skeletons 10% increased Damage taken from Ghosts"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," from Skeletons 10% increased Damage taken from Ghosts"}c["7% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["15% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"}c["Gain Life from Leech instantly from Hits with this Weapon"]={nil,"Gain Life from Leech instantly from Hits with this Weapon"}c["30% increased Trap Trigger Radius {variant:2}60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger {variant:2}60% increased Trap Trigger Area of Effect"}c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-8}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered"}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"}c["15% of Physical Attack Damage Added as Lightning Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=15}},nil}c["30% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes are doubled"}c["0.5% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.5}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect"}c["+5000 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5000}},nil}c["15% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=15}},nil}c["Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements"]={{[1]={flags=0,keywordFlags=0,name="ElementalEquilibrium",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByFireDamage"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}}},[3]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByFireDamage"},[2]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}}},[4]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByColdDamage"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}}},[5]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByColdDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-50}}},[6]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByLightningDamage"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}}},[7]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByLightningDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-50}}}},nil}c["Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 30% of Maximum Life Regenerated over one second"}c["Can have up to 2 additional Totems summoned at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=2}},nil}c["3% increased Damage per Crab Barrier 10% chance that if you would gain a Crab Barrier, you instead gain up to"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=3}}," per Crab Barrier 10% chance that if you would gain a Crab Barrier, you instead gain up to"}c["Trigger a Socketed Lightning Spell on Hit"]={nil,nil}c["24% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=24}},nil}c["+15% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["0% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=18}},nil}c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements {variant:30}12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={skillName="Purity of Elements",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=12}}," while affected by{variant:30}12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"}c["100% increased Ignite Duration on You {variant:2}10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You {variant:2}10% increased Movement Speed "}c["Minions deal 13% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=13}}}},nil}c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["15% increased Movement Speed if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Attacks have an additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["25% increased Attack Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["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["45% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-45}}," of Chill on You"}c["Adds 115 to 265 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=265}},nil}c["2% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["50% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=50}},nil}c["2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}," on Allocated Passives in Radius"}c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted"}c["Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently"}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."}c["22% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["100% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork"}c["6% increased Attack Damage for each Map Item Modifier affecting the Area 3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the 3% increased Attack Speed for each Map Item Modifier affecting the Area"}c["+60% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=60}},nil}c["Life Leech is applied to Energy Shield instead"]={{[1]={flags=0,keywordFlags=0,name="GhostReaver",type="FLAG",value=true}},nil}c["30% chance for Attacks to Maim on Hit against Bleeding Enemies 30% increased Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="Damage",type="BASE",value=30}}," to Maim on Hit 30% increased "}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=25}},nil}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil}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["3% increased Poison Duration per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Duration",type="INC",value=3}},nil}c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled"}c["6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["30% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second"}c["+150% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["Adds 23 to 40 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["+212 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=212}},nil}c["+40 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=40}},nil}c["20 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["Adds 30 to 45 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=45}},nil}c["12% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=12}},nil}c["You gain 100 Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["80% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["10% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+25% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Fire Skills have 20% chance to Poison on Hit {variant:2}Cold Skills have 20% chance to Poison on Hit"]={nil,"Fire Skills have 20% chance to Poison on Hit {variant:2}Cold Skills have 20% chance to Poison on Hit"}c["Projectile Damage increased by 50% of Arrow Pierce Chance"]={{[1]={[1]={div=2,stat="PierceChance",type="PerStat"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["50% increased Effect of non-Keystone Passive Skills in Radius Notable Passive Skills in Radius grant nothing"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of non-Keystone Passive Skills in Radius Notable Passive Skills in Radius grant nothing"}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["30% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{}," Rarity of Items Dropped by Enemies killed with a Critical Strike"}c["Adds 4 to 9 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=9}},nil}c["+30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30}},nil}c["2% chance to Dodge Spell Hits"]={{}," to Dodge Hits"}c["their Maximum Life as Physical Damage 25% reduced Bleed duration"]={nil,"their Maximum Life as Physical Damage 25% reduced Bleed duration"}c["20% increased Damage with Hits against Chilled Enemies {variant:2}With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},[2]={skillName="Ice Shot",type="SkillName"},flags=4,keywordFlags=0,name="Damage",type="INC",value=20}}," with Hits {variant:2}With at least 40 Dexterity in Radius,Pierces 5 additional Targets"}c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies"}c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem"}c["2% of Life Regenerated per Second if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=3}},nil}c["Adds 190 to 320 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=320}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets"}c["Totems have 10% additional Physical Damage Reduction"]={nil,"Totems have 10% additional Physical Damage Reduction"}c["70% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-70}},nil}c["17% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=17}},nil}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["Enemies you Kill that are affected by Elemental Status Ailments"]={nil,"Enemies you Kill that are affected by Elemental Status Ailments"}c["15% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=15}},nil}c["30% increased Elemental Damage with Weapons while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["25% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-25}},nil}c["3% increased Character Size"]={{}," Character Size"}c["0.8% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.8}},nil}c["30% Chance to Dodge Attacks. 50% less Armour and Energy Shield, 30% less Chance to Block Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-50},[3]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-50},[4]={flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=-30},[5]={flags=0,keywordFlags=0,name="SpellBlockChance",type="MORE",value=-30}},nil}c["10% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=10}},nil}c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"You only lose 7 Crab Barriers when you take Physical Damage from a Hit"}c["100% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," from Mana before Life while affected by Clarity"}c["+29 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=29},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=29}},nil}c["18% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=18}},nil}c["Enemies killed by Zombies explode dealing Fire Damage"]={nil,"Enemies killed by Zombies explode dealing Fire Damage"}c["+50% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=50}},nil}c["30% increased Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Leech applies instantly during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["100% reduced Despair Mana Reservation Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}}," Despair Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"}c["Immune to Burning Ground, Shocked Ground and Chilled Ground"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground"}c["12% increased Physical Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Your Minions spread Caustic Cloud on Death, dealing 10% of their maximum Life as Chaos Damage per second"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="BeaconCausticCloud"}}},nil}c["+120 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=120}},nil}c["Cannot be Stunned when on Low Life"]={nil,"Cannot be Stunned when on Low Life"}c["14% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=14}},nil}c["Clarity Reserves no Mana"]={nil,"Clarity Reserves no Mana"}c["Gain Unholy Might for 2 seconds on Critical Strike"]={nil,"Gain Unholy Might for 2 seconds on Critical Strike"}c["Can have up to 2 additional Remote Mines placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=2}},nil}c["140% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=140}},nil}c["10% Chance to Cause Monster to Flee on Block 1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=4,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Cause Monster to Flee on Block 1% of Leeched as Life "}c["6% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Spell Skills deal no Damage Your Spells are disabled"]={nil,"Spell Skills deal no Damage Your Spells are disabled"}c["12% increased Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="INC",value=12}},nil}c["6% reduced Damage taken from Bleeding Enemies 30% chance for Attacks to Maim on Hit against Bleeding Enemies 30% increased Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," from Bleeding Enemies 30% chance to Maim on Hit 30% increased Damage "}c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=15}},nil}c["15% increased Damage with Ailments per Elder Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}," with Ailments per Elder Item Equipped"}c["+170 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=170}},nil}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you"}c["+60 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=60}},nil}c["175% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=175}},nil}c["10% chance to Cause Monsters to Flee {variant:1}Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee {variant:1} Attacks cause Bleeding"}c["Ornate Quiver"]={nil,"Ornate Quiver"}c["400% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=400}},nil}c["Using Warcries is Instant Warcries cost no Mana"]={nil,"Using Warcries is Instant Warcries cost no Mana"}c["Determination Reserves no Mana"]={nil,"Determination Reserves no Mana"}c["Socketed Gems have 40% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium "}c["nearby Enemies when Hit"]={nil,"nearby Enemies when Hit"}c["6% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=6}},nil}c["240% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=240}},nil}c["Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=3}},nil}c["Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"]={nil,"Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"}c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={nil,"Cannot be Frozen or Chilled if you've used a Fire Skill Recently"}c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=23}},nil}c["+79 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=79}},nil}c["15% increased Item Quantity per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["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}}," Attack Damage "}c["+300 Armour per active Totem"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active "}c["+10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"}c["15% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["40% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=68}},nil}c["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="Purity"}}},nil}c["+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["25% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["10% increased Attack Speed with Daggers"]={{[1]={flags=32769,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"}c["23% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil}c["10% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Golems regenerate 2% of their Maximum Life per second"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["Shared Suffering"]={nil,"Shared Suffering"}c["+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire"}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"]={nil,"Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"}c["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"]={nil,"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"}c["Remove Bleeding on Flask use Gain a Flask Charge when you deal a Critical Strike"]={nil,"Remove Bleeding on Flask use Gain a Flask Charge when you deal a Critical Strike"}c["25% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies 25% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased 25% chance to create Consecrated Ground on Kill, lasting 8 seconds"}c["Deal no Non-Elemental Damage"]={nil,"Deal no Non-Elemental Damage"}c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon"}c["5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil}c["10% chance to Dodge Attacks while affected by Grace {variant:19}15% increased Movement Speed while affected by Grace"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}}," while affected by{variant:19}15% increased Movement Speed while affected by Grace"}c["Reflects 23 Physical Damage to Melee Attackers"]={{},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["Minions cannot be Blinded"]={nil,"cannot be Blinded"}c["20% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["18% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["1% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1}},nil}c["Bleeding you inflict on Maimed Enemies deals 100% more Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=100}},nil}c["100% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana"}c["8% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=8}},nil}c["55% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=55}},nil}c["39% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=39}},nil}c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=100}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=50}}," per Poison on you, up to 250 per second"}c["15% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Minions have +10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}}}},nil}c["14% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=14}},nil}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}}," to Avoid interruption from Stuns while Casting +20 to "}c["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}}," with Attack Skills"}c["+11% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=11}},nil}c["1% of Energy Shield regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["18% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-18}},nil}c["Unaffected by Burning Ground"]={nil,"Unaffected by Burning Ground"}c["40% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}c["Arrows Pierce an additional Target"]={nil,"Arrows Pierce an additional Target"}c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit"}c["50% reduced Reflected Physical Damage taken 20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-50}}," Reflected 20% more Damage "}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"}c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16}},nil}c["Socketed Gems are Supported by level 1 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportGenerosity"}}},nil}c["16% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=16}},nil}c["10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill"}c["Grants Summon Harbinger of Brutality Skill"]={nil,"Grants Summon Harbinger of Brutality Skill"}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["10% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-10},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-10}},nil}c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={nil,"Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"}c["+10 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10}},nil}c["Cold Skills have 20% chance to Poison on Hit {variant:3}Lightning Skills have 20% chance to Poison on Hit"]={nil,"Cold Skills have 20% chance to Poison on Hit {variant:3}Lightning Skills have 20% chance to Poison on Hit"}c["20% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=20}},nil}c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil}c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=7},onlyAllies=true}}}," you have"}c["Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FirePenetration",type="BASE",value=10}},nil}c["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit"}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"}c["0.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.8}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Trigger Socketed Curse Spells when you cast a Curse"]={nil,"Trigger Socketed Curse Spells when you cast a Curse"}c["10% chance of Arrows Piercing"]={{[1]={flags=8192,keywordFlags=0,name="PierceChance",type="BASE",value=10}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportMulticast"}}},nil}c["Adds 3 to 6 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=3},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=6}},nil}c["15% increased Movement Speed while affected by Grace {variant:20}Unaffected by Enfeeble while affected by Grace"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}}," while affected by{variant:20}Unaffected by Enfeeble while affected by Grace"}c["Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage"}c["50% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=20}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill"}c["16% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["170% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=170}},nil}c["+2 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=2}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=40}},nil}c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil}c["+30% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=30}},nil}c["Hits that Stun Enemies have Culling Strike"]={nil,"Hits that Stun Enemies have Culling Strike"}c["20% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=20}},nil}c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers"}c["+1% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}c["65% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=65}},nil}c["Adds 1 to 18 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1.5}}," while affected by Anger"}c["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["8% chance to Block Spells while affected by Discipline"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}}," while affected by Discipline"}c["Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality"}c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move"}c["2% increased Area of Effect per 25 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills"}c["Minions' Attacks deal 7 to 14 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=7}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}}}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"}c["Adds 1 to 17 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=17}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"}c["Adds 12 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Adds 13 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["30% increased Fire Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}}},nil}c["40% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-40}},nil}c["-40 Physical Damage taken when hit by Animals"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-40}}," by Animals"}c["35% increased damage against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=4,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage"}c["100% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NormalItem"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=100}},nil}c["Socketed Gems are supported by level 20 Cast on Death"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportCastOnDeath"}}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of"}c["70% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=70}},nil}c["+20 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}c["+8% chance to Evade Attacks while affected by Grace {variant:18}10% chance to Dodge Attacks while affected by Grace"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}}," to Evade Attacks while affected by{variant:18}10% chance while affected by Grace"}c["+125 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=125}},nil}c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect {variant:1}50% reduced Duration"]={nil,"Immune to Freeze, Chill, Curses and Stuns during Flask Effect {variant:1}50% reduced Duration"}c["14% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=14}},nil}c["100% increased Aspect of the Avian Buff Effect"]={{[1]={flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}}," Aspect of the Avian "}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["130% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=130}},nil}c["Adds 40 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Adds 25 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Your Fire Damage can Shock but not Ignite"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil}c["36% chance to deal Double Damage while Focussed {variant:13}{crafted}Trigger a Socketed Spell when you Use a Skill"]={{[1]={flags=2,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=36}}," while Focussed {variant:13}{crafted}Trigger a Socketed when you Use a Skill"}c["You are Immune to Silence"]={nil,"You are Immune to Silence"}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["Socketed Gems are Supported by level 1 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["14% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=14}},nil}c["Cannot gain Energy Shield"]={nil,"Cannot gain Energy Shield"}c["Spectres have 75% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=75}}}},nil}c["70% increased Aspect of the Spider Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=70}}," Aspect of the Spider "}c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"]={{}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web"}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"}c["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["15% increased Character Size"]={{}," Character Size"}c["50% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="Damage",type="INC",value=50}}," with Hits and Ailments "}c["25% chance to gain an Endurance Charge when you gain a Power Charge"]={{}," to gain an Endurance Charge when you gain a Power Charge"}c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["25% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 1% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{}," "}c["157% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=157}},nil}c["235% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=235}},nil}c["25% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-25}},nil}c["15% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["20% increased Duration of Elemental Ailments on Enemies Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," of Elemental Ailments Items and Gems have 10% reduced Attribute Requirements"}c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"}c["17% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=17}},nil}c["1% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}},nil}c["20% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["25% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-25}},nil}c["+160% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=160}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies {variant:1}{crafted}2% of Life Regenerated per second during any Flask Effect"]={{}," "}c["12% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Your Elemental Damage can Shock"]={nil,"Your Elemental Damage can Shock"}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["42% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=42}},nil}c["25% increased Attack and Cast Speed if you've taken a Savage"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=25}}," if you've taken a Savage"}c["10% reduced Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=-10}},nil}c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["Totems have 50% of your Armour"]={nil,"Totems have 50% of your Armour"}c["20% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}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["225% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=225}},nil}c["7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=7}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds"}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{}," to inflict Bleeding "}c["Adds 9 to 15 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["20% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=20}},nil}c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-7}},nil}c["+2 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=2}},nil}c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}}," per 5 Maximum Energy Shield on Equipped Shield"}c["90% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=90}},nil}c["20% increased Effect of Auras on you"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of"}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=10}}," while affected by Purity of Lightning"}c["With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"]={nil,"With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"}c["25% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=25}},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["22% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=22}},nil}c["0.5% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"}c["Adds 10 to 16 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit"}c["+20% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"]={nil,"During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"}c["Aspect of the Cat Reserves no Mana +2 seconds to Cat's Stealth Duration"]={nil,"Aspect of the Cat Reserves no Mana +2 seconds to Cat's Stealth Duration"}c["Adds 7 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"}c["Melee Attacks Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 2 to 3 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=3}},nil}c["Adds 6 to 12 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["15% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["160% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=160}},nil}c["Minions have +15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}}},nil}c["10% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}}}," to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion "}c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse"}c["Adds 10 to 14 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=14}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield"]={nil,"Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield"}c["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ColdPenetration",type="BASE",value=8}},nil}c["+90 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=90}},nil}c["+7 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"}c["25% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-25}},nil}c["Iron Will"]={{[1]={flags=0,keywordFlags=0,name="IronWill",type="FLAG",value=true}},nil}c["20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=20}}," to Taunt on Hit You and nearby Allies have 15% increased "}c["Your Spells have Culling Strike"]={nil,"Your Spells have Culling Strike"}c["+1000 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}},nil}c["240% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=240}},nil}c["Immune to Elemental Status Ailments while Phasing"]={nil,"Immune to Elemental Status Ailments while Phasing"}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Status Ailments"}c["Adds 1 to 25 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=25}},nil}c["Cold Skills have 20% chance to Poison on Hit"]={nil,"Cold Skills have 20% chance to Poison on Hit"}c["+200 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=200}},nil}c["80% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}},nil}c["2 additional Projectiles if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-30}}," of Ailments "}c["+15% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Adds 4 to 8 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=8}},nil}c["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=10}}," for each Shocked Enemy you've Killed Recently"}c["+10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["Cannot be affected by Elemental Status Ailments while on Consecrated Ground"]={nil,"Cannot be affected by Elemental Status Ailments while on Consecrated Ground"}c["2 Mana Regenerated per Second per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["+15% to Fire and Chaos Resistances {variant:3}{crafted}+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Fire and s {variant:3}{crafted}+15% to Cold and Chaos Resistances"}c["Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask"}c["Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"]={nil,"Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"}c["15% increased Damage with One Handed Weapons"]={{[1]={flags=16777216,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["20% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=25}},nil}c["+78 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=78}},nil}c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil}c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=100}},nil}c["With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"}c["Critical Strike Chance is increased by Uncapped Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["Critical Strikes with Daggers have a 30% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=32768,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil}c["30% increased Elemental Damage with Attack Skills Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}}," with Attack Skills Adds 15 to 28 Fire Damage to Attacks"}c["92% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=92}},nil}c["15% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=15}},nil}c["every 10 Intelligence on Allocated Passives in Radius +100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"]={nil,"every 10 Intelligence on Allocated Passives in Radius +100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"}c["100% reduced Flammability Mana Reservation"]={{[1]={[1]={skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["30% less Animate Weapon Duration"]={{[1]={[1]={skillName="Animate Weapon",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="MORE",value=-30}},nil}c["50% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["+8% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Modifiers to Claw Damage also apply to Unarmed Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ClawDamageAppliesToUnarmed",type="FLAG",value=true}},nil}c["10% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=10}},nil}c["200% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=200}},nil}c["10% increased Elemental Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=165}},nil}c["Rampage"]={nil,"Rampage"}c["4% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"}c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy"}c["10% of Fire Damage taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsPhysical",type="BASE",value=10}},nil}c["20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=60}},nil}c["200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently Elder Item"]={nil,"200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently Elder Item"}c["225% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=225}},nil}c["Adds 12 to 20 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=20}},nil}c["Adds 30 to 53 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=53}},nil}c["30% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=30}},nil}c["Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["Socketed Gems fire 4 additional Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}}}},nil}c["Nearby allies gain 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18},onlyAllies=true}}},nil}c["Adds 65 to 120 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=65},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=120}},nil}c["Socketed Gems are Supported by level 1 Hypothermia"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportDamageAgainstChilled"}}},nil}c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["60% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-60}},nil}c["15% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["1% increased Chaos Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=1}},nil}c["1% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 25 Life for each Enemy hit by your Attacks"}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"}c["71 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=71}},nil}c["77% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=77}},nil}c["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=38}},nil}c["+2 to Level of Socketed Bow Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="bow",value=2}}},nil}c["Adds 21 to 39 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=39}},nil}c["34% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=34}},nil}c["+74 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=74}},nil}c["10 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=10}},nil}c["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="AssassinsMark"}}},nil}c["5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil}c["Adds 15 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["Chaos Damage can Ignite, Chill and Shock Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Chaos Damage can Ignite, Chill and Shock Gain Soul Eater for 10 seconds when you use a Vaal Skill"}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}c["172% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=172}},nil}c["+27% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=27}},nil}c["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=27}},nil}c["+50 Mana gained when you Block +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block +5% Chance to Block"}c["24% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["+45 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45}},nil}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath {variant:51}Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15}}," while affected by{variant:51}Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"}c["+20% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20}},nil}c["+13 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13}},nil}c["+18% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=18}},nil}c["+20% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20}},nil}c["+18% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=18}},nil}c["+121 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=121}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=257}},nil}c["15% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["15% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=15}},nil}c["0.8% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.8}},nil}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.6}},nil}c["Damage Penetrates 6% Elemental Resistances if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["15% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=15}},nil}c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Adds 5 to 11 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=11}},nil}c["25% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["40% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}}," with Hits "}c["Intelligence provides no bonus to Maximum Mana"]={nil,"Intelligence provides no bonus to Maximum Mana"}c["92% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=92}},nil}c["Prefix: IncreasedLife6"]={nil,"Prefix: IncreasedLife6"}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"}c["16% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=16}},nil}c["30% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["20% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=20}},nil}c["Always Poison on Hit while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["30% increased Mana Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=30}},nil}c["16% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Speed per second"]={nil,"Speed per second"}c["200% increased Armour against Projectiles +25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles +25% additional Block Chance against Projectiles"}c["18% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["10% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil}c["+23 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=23}},nil}c["18% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+23 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=23}},nil}c["You have Vaal Pact if you've dealt a Critical Strike Recently"]={nil,"You have Vaal Pact if you've dealt a Critical Strike Recently"}c["92% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=92}},nil}c["Lightning Skills have 20% chance to Poison on Hit"]={nil,"Lightning Skills have 20% chance to Poison on Hit"}c["20% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-20}},nil}c["+39 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=39}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["215% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=215}},nil}c["Damage Penetrates 25% Cold Resistance if you've"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=25}}," if you've"}c["Adds 5 to 8 Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["1% of Damage against Shocked Enemies Leeched as Mana"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil}c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["35% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=48}},nil}c["6% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["92% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=92}},nil}c["Adds 13 to 47 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=47}},nil}c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"}c["+25% to Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill"}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["You have Zealot's Oath if you haven't been hit recently"]={nil,"You have Zealot's Oath if you haven't been hit recently"}c["You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Chilled"}c["80% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["1% increased Area of Effect per Enemy killed recently, up to 50% You have Zealot's Oath if you haven't been hit recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}}," per Enemy killed recently, up to 50% You have Zealot's Oath "}c["1% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}}," per Enemy killed recently, up to 50%"}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.8}},nil}c["Socketed Gems are supported by level 10 Life Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLifeLeech"}}},nil}c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["25% chance to gain a Frenzy Charge on Kill 80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}," to gain aCharge on Kill 80% increased "}c["75% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["Reflects 61 Physical Damage to Melee Attackers"]={{},nil}c["Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=1},[2]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=2}},nil}c["0.3% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.3}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-50}},nil}c["Minions have 15% chance to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}}}}," to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Leech"}c["Adds 63 to 98 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=63},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=98}},nil}c["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportBloodMagic"}}},nil}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill"]={nil,"Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill"}c["550% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=550}},nil}c["You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit"}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=100}},nil}c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}}," of Ailments "}c["600% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=600}},nil}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice"}c["23% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=23}},nil}c["Reflects 241 Physical Damage to Melee Attackers"]={{},nil}c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=25}}," ing a Frozen Enemy"}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=150}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-8}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["+435 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=435}},nil}c["-18 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks"}c["100% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=100}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"}c["+1 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["25% increased Defences from equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["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["28% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=28}},nil}c["Reflects 17 Physical Damage to Melee Attackers"]={{},nil}c["You always Ignite while Burning"]={nil,"You always Ignite while Burning"}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage"}c["+5 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=5}}},nil}c["10% chance to gain an Endurance Charge when you are Hit You cannot be Stunned while at maximum Endurance Charges"]={{}," to gain an Endurance Charge when you are Hit You cannot be Stunned "}c["You have Onslaught while on Low Life"]={nil,"You have Onslaught while on Low Life"}c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=4,keywordFlags=0,name="CritChance",type="MORE",value=100}},nil}c["Adds 5 to 8 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={nil,"Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"}c["15% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["When you Kill an Enemy, for each Curse on that Enemy, gain 4%"]={nil,"When you Kill an Enemy, for each Curse on that Enemy, gain 4%"}c["10% increased Radius of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["25% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=25}},nil}c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["70% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["Trigger Commandment of Inferno on Critical Strike 70% increased Global Critical Strike Chance"]={nil,"Trigger Commandment of Inferno on Critical Strike 70% increased Global Critical Strike Chance"}c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={flags=512,keywordFlags=0,name="ElementalDamage",type="INC",value=10}}," per Sextant affecting the "}c["Adds 1 to 65 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=65}},nil}c["Adds 1 to 32 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=32}},nil}c["Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=17,skillId="SupportMinionDamage"}}},nil}c["Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"}c["4% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["26% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=26}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning"}c["+50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block"}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["Grants Summon Harbinger of Focus Skill +80 to maximum Life"]={nil,"Grants Summon Harbinger of Focus Skill +80 to maximum Life"}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped {variant:1}{crafted}+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-2}}," Total for each Corrupted Item Equipped {variant:1}{crafted}+15% to Fire and Chaos Resistances"}c["50% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-50}},nil}c["50% reduced Freeze Duration on You {variant:1}1% of Life Regenerated per Second"]={{},""}c["+45% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=45}},nil}c["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}c["40% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=40}},nil}c["3% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["35% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=35}},nil}c["Take 30 Chaos Damage per Second during Flask effect 25% chance to Poison on Hit during Flask effect"]={nil,"30 Chaos Damage per Second during Flask effect 25% chance to Poison on Hit during Flask effect"}c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam"}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike"}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently"}c["Adds 13 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["Adds 1 to 30 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=30}},nil}c["45% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=45}},nil}c["6% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=6}},nil}c["Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets"]={nil,"Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets"}c["1% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a "}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-50}}," on You"}c["+20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["75% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=75}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=18}},nil}c["Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"]={nil,"Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"}c["+700 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=700}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies"}c["Cannot Block Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}},nil}c["+4% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=15}},nil}c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers for 4 seconds on Block"}c["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["+20% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," Damage"}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["30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality"}c["80% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=80}},nil}c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"}c["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=20}},nil}c["5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=5}},nil}c["Adds 11 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil}c["Adds 335 to 900 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,keywordFlags=0,name="LightningMin",type="BASE",value=335},[2]={flags=1048576,keywordFlags=0,name="LightningMax",type="BASE",value=900}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"}c["Adds 68 to 195 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=68},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=195}},nil}c["120% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=120}},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["800% more Unarmed Physical Damage"]={{[1]={flags=1048576,keywordFlags=0,name="PhysicalDamage",type="MORE",value=800}},nil}c["+5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=5}},nil}c["10% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+48 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=48}},nil}c["60% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=60}},nil}c["Adds 40 to 115 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=115}},nil}c["+8% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=8}},nil}c["20% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Elemental Hit deals 15% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"Elemental Hit deals 15% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"}c["20 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["Your Chaos Damage Poisons Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=100}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=190}},nil}c["+60 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["Arrows always Pierce"]={{[1]={flags=1,keywordFlags=0,name="PierceChance",type="BASE",value=100}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage"}c["Adds 130 to 195 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=130},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=195}},nil}c["Socketed Gems have 25% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}}}},nil}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=225}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies {variant:1}Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={nil,"deal 100 to 200 added Fire Damage to Bleeding Enemies {variant:1}Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"}c["250% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=250}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=15}},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["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["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["+30% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=2}}," to Dodge Attack and Hits per 500 , up to 20%"}c["Adds 36 to 54 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=54}},nil}c["0% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=0}},nil}c["Triggers Level 20 Fire Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FireAegis"}}},nil}c["6% Chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=8}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds"}c["40% increased Damage with Hits against Shocked Enemies 20% increased Lightning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}}," with Hits 20% increased Lightning Damage"}c["2% increased Attack Speed with Maces"]={{[1]={flags=65537,keywordFlags=0,name="Speed",type="INC",value=2}},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["90% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=90}},nil}c["0.8% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.8}},nil}c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun"}c["30% increased Damage when you have no Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield"}c["-10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-10}},nil}c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius"}c["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["4% increased Movement Speed for each Hit you've Blocked Recently 80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}," for each Hit you've Blocked Recently 80% increased Physical Damage "}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.4}},nil}c["Hits deal 30% increased Damage against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=4,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block"}c["100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}}," while you have Avian's Flight"}c["6% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}},nil}c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil}c["+30 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain Phasing for 4 seconds when your is triggered by an Enemy"}c["Minions Leech 0.2% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}}}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block"}c["20% increased Elemental Damage with Attack Skills {variant:1,2,3}100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}}," with Attack Skills {variant:1,2,3}100% increased Armour and Energy Shield"}c["+8 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=8}},nil}c["12% increased Cold Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil}c["100% increased Duration of Curses on you +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you +5% Chance to Block"}c["2% additional Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["You lose all Endurance Charges at maximum Endurance Charges Cannot Block"]={nil,"You lose all Endurance Charges at maximum Endurance Charges Cannot Block"}c["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ColdAegis"}}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill"}c["10% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["20% chance to Block Attacks if you've Blocked a Spell Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["10% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["100% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=100}},nil}c["+30% chance to Block Spell Damage while on Low Life +6% Chance to Block"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=30}}," Damage +6% Chance to Block"}c["+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=30}}," Damage "}c["75% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Duration",type="INC",value=75}}," of Poisons you inflict "}c["30% more Bow Damage at Close Range while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"}c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil}c["+36% chance to Block Spell Damage while on Low Life {variant:4}+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},[2]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=36}}," Damage {variant:4}+30% chance to Block Spell Damage "}c["+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=36}}," Damage "}c["144% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=144}},nil}c["25% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=25}},nil}c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil}c["120% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=120}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=6}},nil}c["Adds 19 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil}c["+18 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["20% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Spreads Tar when you take a Critical Strike"]={nil,"Spreads Tar when you take a Critical Strike"}c["1% of Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["+200 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=200}},nil}c["10 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["30% reduced Spell Damage taken from Blinded Enemies No Block Chance"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=-30}}," from Blinded Enemies No Block Chance"}c["Adds 400 to 600 Physical Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="PhysicalMin",type="BASE",value=400},[2]={flags=2,keywordFlags=0,name="PhysicalMax",type="BASE",value=600}},nil}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels 12% increased Attack Speed"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=3},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=5}}," per 3 Player Levels 12% increased "}c["If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second"]={nil,"If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second"}c["50% chance on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground"}c["100% increased Physical Damage while you have Resolute Technique Elder Item"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique Elder Item"}c["6% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["+2 seconds to Avian's Might Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=2}}," seconds to Avian's Might "}c["15% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"}c["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack"}c["+10% chance to Block Spell Damage +30 to Intelligence"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," Damage +30 to Intelligence"}c["+10% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," Damage"}c["+7% chance to Block Spell Damage {variant:3}+10% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=7}}," Damage {variant:3}+10% chance to Block Spell Damage"}c["+15% chance to Block Spell Damage 60% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=15}}," Damage 60% increased Spell Damage"}c["+18% chance to Block Spell Damage {variant:3}+15% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=18}}," Damage {variant:3}+15% chance to Block Spell Damage"}c["+18% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=18}}," Damage"}c["60% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=60}},nil}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-6}},nil}c["+24 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["+10 Life Gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies"}c["Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"}c["8% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Minions Regenerate 1.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}}},nil}c["10% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["40% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy"}c["+20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"}c["Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill"}c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"}c["12% increased Attack Speed with Bows"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["5% Additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["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["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=5,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["+61% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=61}},nil}c["Spreads Tar when you Block"]={nil,"Spreads Tar when you Block"}c["75% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=75}},nil}c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil}c["8% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.08}},nil}c["+3 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=3}}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}},nil}c["50% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=50}}," to double "}c["You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"You are Shocked for 4 seconds on reaching Maximum Power Charges"}c["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit"}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"}c["1% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=1}},nil}c["+2 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=2}},nil}c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Adds 39 to 60 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=39},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently"}c["6% reduced Damage taken from Bleeding Enemies 30% chance for Attacks to Maim on Hit against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," from Bleeding Enemies 30% chance to Maim on Hit "}c["18% increased Poison Duration"]={{[1]={flags=0,keywordFlags=1048576,name="Duration",type="INC",value=18}},nil}c["25% chance to inflict Brittle Cannot inflict Freeze or Chill"]={{}," to inflict Brittle Cannot inflict Freeze or Chill"}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy"}c["You have Crimson Dance if you have dealt a Critical Strike Recently"]={nil,"You have Crimson Dance if you have dealt a Critical Strike Recently"}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently {variant:2}200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={nil,"400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently {variant:2}200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}c["6% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=6}},nil}c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=-30}}," from Blinded Enemies"}c["13% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Adds 14 to 24 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["8% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=8}},nil}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies 30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=6,keywordFlags=0,name="FireDamage",type="INC",value=30}}," with Hits and Ailments 30% reduced Damage taken from Blinded Enemies"}c["30% increased Fire Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["30% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-30}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{}," that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"}c["+375 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=375}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire"}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies"}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"}c["6% reduced Damage taken if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"}c["+38% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=38}},nil}c["33% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-33}},nil}c["Shock Reflection"]={nil,"Shock Reflection"}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry"}c["8% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry"]={nil,"Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry"}c["8% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=8}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy"}c["+3000 to Armour during Soul Gain Prevention {variant:6}{crafted}+2 to Level of Socketed Support Gems"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}}," during Soul Gain Prevention {variant:6}{crafted}+2 to Level of Socketed Support Gems"}c["You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"]={nil,"You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"}c["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["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage"}c["10% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}},nil}c["Adds 15 to 30 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=30}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered Corrupted"]={{}," to gain an additional Soul per Enemy Shattered Corrupted"}c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Adds 5 to 15 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["16% increased Cast Speed with Curse Skills"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}}," with Curse Skills"}c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=24}},nil}c["Adds 12 to 16 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=16}},nil}c["20% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," with Hits and Ailments "}c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining"}c["2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius +15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},[2]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}," on Allocated Passives in Radius +15 to Maximum Mana on Unallocated Passives in Radius"}c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre"}c["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["You gain Divinity for 10 seconds on reaching maximum Divine Charges Lose all Divine Charges when you gain Divinity"]={nil,"You gain Divinity for 10 seconds on reaching maximum Divine Charges Lose all Divine Charges when you gain Divinity"}c["325% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=325}},nil}c["Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"}c["16% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Adds 60 to 110 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=110}},nil}c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil}c["50% additional Block Chance for 1 second every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil}c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee"}c["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield"}c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently"}c["165% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=165}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding"}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets"}c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=50}},nil}c["Adds 55 to 80 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=80}},nil}c["Adds 21 to 34 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=34}},nil}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=33}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets 20% increased Area of Effect of Area Skills"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 50% less Damage to surrounding targets 20% increased Area of Effect of Area Skills"}c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower"}c["+150 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second Poisons on you expire 50% slower"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=50}}," per Poison on you, up to 250 per second Poisons on you expire 50% slower"}c["+225 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=225}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum "}c["Adds 240 to 325 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=240},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=325}},nil}c["Adds 22 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["20% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=20}},nil}c["100% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask"}c["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," Reflected Gained as Life"}c["Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life"}c["Reflects 1 to 1000 Physical Damage to Attackers on Block"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block"}c["3% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["90% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["110% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=110}},nil}c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil}c["Adds 1 to 40 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=40}},nil}c["25% Increased Warcry Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=25}},nil}c["You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect"]={nil,"You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect"}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry"}c["+43% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=43}},nil}c["+30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=13}},nil}c["40% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=40}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element"}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=200}},nil}c["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"]={nil,"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"}c["+10 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers"}c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=15}},nil}c["+12% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed"]={nil,"Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed"}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=15}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["25% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-25}},nil}c["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.2}},nil}c["32% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=32},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=32},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=32}},nil}c["Adds 10 to 18 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["12% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=12}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["Adds 12 to 20 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["+18 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=18}},nil}c["7 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=7}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath {variant:50}Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=1.5}}," is while affected by{variant:50}Damage Penetrates 15% Lightning Resistance while affected by Wrath"}c["10% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.6}},nil}c["Adds 75 to 358 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=358}},nil}c["+58 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=58}},nil}c["100% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=100}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 8% reduced Damage Taken for 4 seconds after spending 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 8% reduced Damage Taken for 4 seconds after spending 200 Mana"}c["Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"}c["+190 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=190}},nil}c["180% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=180}},nil}c["190% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=190}},nil}c["20% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=60}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil}c["Adds 30 to 50 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=30},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["4% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses"}c["Adds 75 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["Curse Reflection"]={nil,"Curse Reflection"}c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=50}},nil}c["Remove Bleeding on Flask use"]={nil,"Remove Bleeding on Flask use"}c["20% additional Spell Block chance while Cursed"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," while Cursed"}c["Minions deal 12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil}c["Regenerate 100 Life per second while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["10% additional Block chance while not Cursed"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," while not Cursed"}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="FirePenetration",type="BASE",value=8}},nil}c["Grants Level 20 Summon Petrification Statue Skill"]={nil,nil}c["50% reduced Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you"}c["+30 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["+60 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60}},nil}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=12}}," while affected by Purity of Elements"}c["125% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=125}},nil}c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=3}},nil}c["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active Blood Magic"}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["0.5% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=0.5}},nil}c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies"}c["40% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil}c["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeech",type="BASE",value=1}},nil}c["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="AreaOfEffect",type="INC",value=15}},nil}c["Spells have an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"}c["0.5% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Adds 23 to 35 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["Adds 350 to 500 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=350},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=500}},nil}c["Crafted: true"]={nil,"Crafted: true"}c["15% increased Area of Effect of Area Skills if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["You have Phasing while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onlaught"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["Cannot be Stunned if you have at least 10 Crab Barriers"]={nil,"Cannot be Stunned if you have at least 10 Crab Barriers"}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast"}c["Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Pierce"}c["200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles"}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=12}},nil}c["Has 1 Abyssal Socket {variant:2}Has 2 Abyssal Sockets"]={nil,"Has 1 Abyssal Socket {variant:2}Has 2 Abyssal Sockets"}c["+500 to Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil}c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil}c["19% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=19}},nil}c["13% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil}c["80% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration"]={nil,"With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration"}c["-75% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-75}},nil}c["2% increased Physical Damage over time per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=8,keywordFlags=0,name="PhysicalDamage",type="INC",value=2}},nil}c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil}c["25% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks"}c["0.4% of Energy Shield Regenerated per Second for every 10 Intelligence on Allocated Passives in Radius"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.4}}," for every 10 on Allocated Passives in Radius"}c["-10 Physical Damage taken from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks"}c["70% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=70}},nil}c["Enemies Become Chilled as they Unfreeze 5% chance to Freeze 5% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze 5% chance to Freeze 5% chance to Freeze Enemies which are Chilled"}c["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy"}c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=5,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=2}},nil}c["+1 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=1}}},nil}c["15% increased effect of Offering spells"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=15}},nil}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies Your Lightning Damage can Ignite"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="LightningMax",type="BASE",value=70}}," to Hits Your can Ignite"}c["20% increased Movement Speed while you have Cat's Stealth"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," while you have Cat's Stealth"}c["Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 8% of their maximum Life as Fire Damage to"}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ElementalAegis"}}},nil}c["+4% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"}c["Herald of Thunder has 74% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=74}},nil}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage"}c["25% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=25}},nil}c["+5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks"}c["20% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-20}},nil}c["Your Aura Buffs do not affect allies"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasCannotAffectAllies",type="FLAG",value=true}},nil}c["+100 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["Adds 388 to 584 Physical Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="PhysicalMin",type="BASE",value=388},[2]={flags=2,keywordFlags=0,name="PhysicalMax",type="BASE",value=584}},nil}c["Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"]={nil,"Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"}c["Cannot Block 50% increased Warcry Cooldown Recovery Speed"]={nil,"Cannot Block 50% increased Warcry Cooldown Recovery Speed"}c["+4% to Chaos Resistance per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["25% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=25}},nil}c["8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}}," of non-Damaging Ailments per Elder Item Equipped"}c["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second"}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"}c["Adds 15 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill"}c["30% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies"}c["135% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=135}},nil}c["20% increased Mine Laying Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil}c["Adds 14 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=33}},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["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit"}c["Clarity Reserves no Mana {variant:10}Discipline Reserves no Mana"]={nil,"Clarity Reserves no Mana {variant:10}Discipline Reserves no Mana"}c["10% chance to Curse Enemies with Enfeeble on Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit"}c["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["14% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["10% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil}c["10% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges"}c["36% chance to deal Double Damage while Focussed"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=36}}," while Focussed"}c["Adds 10 to 25 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=25}},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["+1500 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block"}c["25% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice"}c["+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," on Unallocated Passives in Radius"}c["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block"}c["15 Life Regenerated per second for each Uncorrupted Item Equipped -2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}}," for each Uncorrupted Item Equipped -2 to Total for each Corrupted Item Equipped"}c["12% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["8% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=8}},nil}c["170% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=170}},nil}c["-10% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=-10}},nil}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"}c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=25}},nil}c["25% of Physical Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsChaos",type="BASE",value=25}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments"}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block"}c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["Enemies near your Totems take 16% increased Physical and Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=16}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=16}}}},nil}c["20% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=20}},nil}c["16% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=16}},nil}c["+1000 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}},nil}c["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block"}c["0.3% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.3}},nil}c["+1500 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1500}},nil}c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"}c["10% increased Skeleton Attack Speed 10% increased Skeleton Cast speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}," Skeleton 10% increased Skeleton Cast speed"}c["You have Onslaught while at maximum Endurance Charges"]={nil,"You have Onslaught while at maximum Endurance Charges"}c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 35 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["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["5% chance to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill"}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["30% increased Damage of each Damage Type for which you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," of each Damage Type for which you"}c["+5 to Maximum number of Crab Barriers"]={{}," Maximum number of Crab Barriers"}c["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},nil}c["150% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=150}},nil}c["40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=40}},nil}c["+15% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=15}}," Damage"}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion {variant:3}Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=29}}," while you have a Bestial Minion {variant:3}Adds 16-25 to Attacks while you have a Bestial Minion"}c["21% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=21}},nil}c["Grants level 30 Reckoning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Reckoning"}}},nil}c["30% slower start of Energy Shield Recharge during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-30}},nil}c["Deal no Non-Elemental Damage Elder Item"]={nil,"Deal no Non-Elemental Damage Elder Item"}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["Your Elemental Damage can Shock Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={nil,"Your Elemental Damage can Shock Gain 300% of Weapon Physical Damage as Extra Damage of an Element"}c["+370 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=370}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={div=5,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5}}," on Equipped Shield"}c["63% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=63}},nil}c["Adds 12 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["25% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},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["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike"}c["250% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=250}},nil}c["You and nearby Allies cannot be Stunned if you've Blocked Recently"]={nil,"You and nearby Allies cannot be Stunned if you've Blocked Recently"}c["75% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["You are Immune to Bleeding while Leeching"]={nil,"You are Immune to Bleeding while Leeching"}c["Enemies you Taunt deal 10% less Damage against other targets"]={nil,"Enemies you Taunt deal 10% less Damage against other targets"}c["Adds 12 to 24 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=24}},nil}c["Your Physical Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true}},nil}c["Deal no Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoFire",type="FLAG",value=true}},nil}c["+2000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}},nil}c["+1 to Minimum Power Charges"]={{}," Minimum Power Charges"}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["500% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=500}},nil}c["+231 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=231}},nil}c["+80 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["+80 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=70}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"}c["Gain 25% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=25}},nil}c["Adds 11 to 23 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={nil,"Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"}c["8% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+305 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=305}},nil}c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike"}c["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"]={nil,"64 to 96 added Fire Damage per Red Socket You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"}c["Adds 110 to 170 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=170}},nil}c["175% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=175}},nil}c["Adds 30 to 45 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=45}},nil}c["Adds 100 to 370 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=370}},nil}c["+1 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby {variant:10}{crafted}Your Critical Strike Chance is Lucky while Focussed"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=120}}," while a Rare or Unique Enemy is Nearby {variant:10}{crafted}Your is Lucky while Focussed"}c["+1 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil}c["Immune to Elemental Status Ailments while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask"}c["+240 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=240}},nil}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["+185 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=185}},nil}c["+1 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=1}}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-30}},nil}c["Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"}c["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies"}c["Adds 475 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=475},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["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["30% chance to Blind Enemies on Critical Strike {variant:1,2}Causes Bleeding on Melee Critical Strike"]={{}," to Blind Enemies {variant:1,2}Causes Bleeding on Critical Strike"}c["Skills which throw Traps have Blood Magic"]={nil,"Skills which throw Traps have Blood Magic"}c["50% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=50}},nil}c["50% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-50}}," Reflected "}c["140% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=140}},nil}c["135% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=135}},nil}c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=22}}," over Time Multiplier"}c["+40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}},nil}c["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["+10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Adds 45 to 100 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=100}},nil}c["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["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you"}c["1% increased Elemental Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=1}},nil}c["+1 Life gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}c["50% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=50}},nil}c["Adds 1 to 2 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="Level"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=2}},nil}c["+35 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=35}},nil}c["Adds 65 to 105 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=105}},nil}c["+45% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=45}},nil}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-18}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["+1 to Level of Active Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active_skill",value=1}}},nil}c["2% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["+25 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["2% increased Experience gain {variant:1}3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}}," Experience gain {variant:1}3% increased "}c["100% more Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=4,keywordFlags=0,name="CritChance",type="MORE",value=100}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["Socketed Melee Gems have 15% increased Area of Effect"]={{[1]={[1]={keyword="melee",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned"}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage"}c["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish"}c["Adds 31 to 100 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=31},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}c["Take 5 Physical Damage when hit by Attacks"]={nil,"5 Physical Damage when hit by Attacks"}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="UniqueAnimateWeapon"}}},nil}c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["+30 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=30}},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["18% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil}c["100% increased Global Armour when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds"}c["50% increased Herald of Thunder Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil}c["20% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20}},nil}c["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=18}},nil}c["8% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-4}}," from Attacks"}c["40% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["19% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=19}},nil}c["0% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=0}},nil}c["10% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill"}c["22% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["55% increased Elemental Damage with Attack Skills Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=55}}," with Attack Skills Adds 1 to 55 Lightning Damage"}c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+20% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=100}},nil}c["Armour received from Body Armour is doubled"]={{[1]={flags=0,keywordFlags=0,name="Unbreakable",type="FLAG",value=true}},nil}c["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["20% increased Elemental Damage with Attack Skills {variant:3}25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}}," with Attack Skills {variant:3}25% increased Elemental Damage with Attack Skills "}c["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage"}c["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true}},nil}c["Adds 34 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=34},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["4% chance to Dodge Attack Hits 50% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=4}}," to Dodge Attack Hits 50% increased "}c["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["8% additional Physical Damage Reduction while affected by Determination {variant:11}You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}}," while affected by{variant:11}You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"}c["80% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=80}},nil}c["10% increased Damage Taken while Energy Shield is Full"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full"}c["Adds 38 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Enemies Become Chilled as they Unfreeze 5% chance to Freeze"]={nil,"Enemies Become Chilled as they Unfreeze 5% chance to Freeze"}c["Adds 50 to 100 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=50},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=100}},nil}c["Armour is increased by Uncapped Fire Resistance"]={{[1]={[1]={div=1,stat="FireResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil}c["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["Cast a Socketed Cold Spell on Melee Critical Strike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"}}},nil}c["+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Gain Arcane Surge when you deal a Critical Strike"]={nil,"Gain Arcane Surge when you deal a Critical Strike"}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments"}c["+2 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["18% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}},nil}c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery",type="BASE",value=100}},nil}c["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},nil}c["+1 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["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["40% increased Cold Damage with Attack Skills 40% increased Rarity of Items Dropped by Frozen Enemies"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}}," with Attack Skills 40% increased Rarity of Items Dropped by Frozen Enemies"}c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item"}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=30}},nil}c["You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 10 seconds on using a Vaal Skill"}c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=260,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Adds 7 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"}c["15% of Physical Attack Damage Added as Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},nil}c["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["20% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=20}},nil}c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=30}},nil}c["Adds 8 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Shocked Enemies"}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 60% increased Damage to Frozen Enemies"}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect"]={nil,"Immune to Freeze, Chill, Curses and Stuns during Flask Effect"}c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-5}},nil}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"}c["30% increased Cold Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element"}c["8% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-8}},nil}c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil}c["You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked"}c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=20}},nil}c["6% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=524288,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Adds 100 to 200 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=200}},nil}c["30% increased Trap Trigger Radius"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger "}c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=55}}," with Attack Skills"}c["50% chance to avoid Freeze, Shock, Ignite and Bleed while using a Flask 4% reduced Elemental Damage taken while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="BASE",value=50}}," to avoid Freeze, Shock, Ignite and Bleed 4% reduced "}c["+1 to Minimum Frenzy Charges {variant:10}{crafted}+1 to Minimum Power Charges"]={{}," MinimumCharges {variant:10}{crafted}+1 to Minimum Power Charges"}c["+1 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"}c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=4,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=5}}}},nil}c["14% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"]={nil,"200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"}c["Minions have +29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}}}},nil}c["Grants level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["Minions deal 25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}}},nil}c["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy"}c["Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline"]={nil,"Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline"}c["Gain Unholy Might during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil}c["Minions have 60% chance to Poison Enemies on Hit Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}}}}," to Pois on Hit Minions Recover 20% of on Killing a Poisoned Enemy"}c["Minions have 60% chance to Poison Enemies on Hit"]={{}," to Pois on Hit"}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["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"}c["Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="LightningSpell"}}},nil}c["20% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=62}}," while you have Avian's Might"}c["Has 1 Abyssal Socket Has 1 Abyssal Socket"]={nil,"Has 1 Abyssal Socket Has 1 Abyssal Socket"}c["+425 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=425}},nil}c["45% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=45}},nil}c["8% additional chance to Block when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements"}c["75% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=75}},nil}c["5% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["Adds 92 to 154 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=92},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=154}},nil}c["Adds 1 to 65 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=65}},nil}c["70% increased Damage with Channelling Skills"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}," with Channelling Skills"}c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of"}c["83% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=83}},nil}c["Adds 1 to 70 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["12% increased Physical Damage with Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Take 100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"]={nil,"100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"}c["+225% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground 25% increased Attack and Cast Speed while on Consecrated Ground"]={nil,"Cannot be affected by Elemental Status Ailments while on Consecrated Ground 4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground 25% increased Attack and Cast Speed while on Consecrated Ground"}c["18% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}c["30% chance to gain an additional Vaal Soul on Kill"]={{}," to gain an additional Soul on Kill"}c["Grants Summon Harbinger of the Arcane Skill Trigger level 20 Storm Cascade when you Attack"]={nil,"Grants Summon Harbinger of the Arcane Skill Trigger level 20 Storm Cascade when you Attack"}c["Grants Summon Harbinger of the Arcane Skill"]={nil,"Grants Summon Harbinger of the Arcane Skill"}c["80% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Adds 80 to 180 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=180}},nil}c["10% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["15% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Adds 94 to 137 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=94},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=137}},nil}c["+2 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["50% reduced Mana Cost of Raise Spectre Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}}," ofSpectres have 1000% increased Critical Strike Chance"}c["30% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=30}},nil}c["+20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},nil}c["Adds 2 to 6 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=6}},nil}c["100% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil}c["10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["You gain 150 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["Adds 24 to 36 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=36}},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}c["Adds 1 to 70 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["Adds 28 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["Adds 28 to 40 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=40}},nil}c["Adds 41 to 123 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=123}},nil}c["You gain 500 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}}," against Enemies on Consecrated Ground "}c["Adds 28 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," of Elemental Ailments "}c["Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect"}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["Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"}c["+33% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=33}},nil}c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy"}c["100% increased Burning Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=8,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["30% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["10% increased Damage Taken while Energy Shield is Full Corrupted"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full Corrupted"}c["Attacks with this Weapon Penetrate 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}},nil}c["+2 to Melee Weapon Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["15% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["0.4% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["6% reduced Damage taken from Blinded Enemies 50% increased Blind duration"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," from Blinded Enemies 50% increased Blind duration"}c["25% increased Physical Damage with Weapons per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=28}},nil}c["Adds 4 to 7 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=7}},nil}c["13% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil}c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=120}},nil}c["+50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=50}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["10% increased Damage taken from Ghosts"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," from Ghosts"}c["298% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=298}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy"}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["18% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=18}},nil}c["Gain 10% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={nil,"Gain Her Embrace for 3 seconds when you Ignite an Enemy While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"}c["Adds 2 to 3 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={[1]={type="Multiplier",var="Level"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=3}},nil}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["120% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=120}},nil}c["+1 to Maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},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["1% increased Bleed Duration per 12 Intelligence"]={{[1]={[1]={div=12,stat="Int",type="PerStat"},flags=0,keywordFlags=2097152,name="Duration",type="INC",value=1}},nil}c["+24 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["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["40% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-40}},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["21% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=21}},nil}c["Attacks with this Weapon Maim on hit"]={nil,"Maim on hit"}c["Purity of Ice Reserves no Mana"]={nil,"Purity of Ice Reserves no Mana"}c["Chance to Block Spell Damage is Unlucky +120 to Strength"]={nil,"Chance to Block Spell Damage is Unlucky +120 to Strength"}c["+3000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["Minions have 10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=10}}}},nil}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["70% increased Damage against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=4,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["10% increased Effect of Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="BuffEffectOnSelf",type="INC",value=10}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={flags=0,keywordFlags=0,name="AlliesAurasCannotAffectSelf",type="FLAG",value=true}},nil}c["5% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-5}},nil}c["95% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=95}},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["+20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["Adds 52 to 79 Chaos Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ChaosMin",type="BASE",value=52},[2]={flags=2,keywordFlags=0,name="ChaosMax",type="BASE",value=79}},nil}c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["Adds 1 to 650 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=650}},nil}c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity"}c["20% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["Adds 1 to 600 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["Iron Reflexes while stationary"]={nil,"Iron Reflexes while stationary"}c["2 additional Projectiles if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["Gain 24% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=24}},nil}c["55% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["+2 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["Adds 5 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}},nil}c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=108}},nil}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block"}c["160% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=160}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield"}c["200% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=200}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy"}c["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=99}},nil}c["66% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=66}},nil}c["+180 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=180}},nil}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={nil,"deal 100 to 200 added Physical Damage to Ignited Enemies"}c["100% increased Physical Damage while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["You gain Onslaught for 2 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill"}c["Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},nil}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."}c["+50% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=50}},nil}c["Uses both hand slots Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},"Uses both hand slots "}c["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite"}c["60% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-60}},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=50}},nil}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=100}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["110% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=110}},nil}c["55% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=55}},nil}c["+33% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=33}},nil}c["Uses both hand slots"]={nil,"Uses both hand slots"}c["18% Increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["45% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=45}},nil}c["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.8}},nil}c["+20 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["+29% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=29}},nil}c["300% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=300}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item"}c["10% reduced Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["60% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["0.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["90% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=90}},nil}c["2% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.15}}}},nil}c["Cannot be inflicted with Bleeding"]={nil,"Cannot be inflicted with Bleeding"}c["140% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=140}},nil}c["9 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=9}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of"}c["Iron Grip"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Grip"}},nil}c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=10}},nil}c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=15}}," for 9 seconds on Throwing a "}c["You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike"}c["2% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill"}c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=73}},nil}c["+200 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=200}},nil}c["Adds 50 to 80 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=80}},nil}c["Adds 40 to 70 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=70}},nil}c["18% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["92% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=92}},nil}c["+475 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=475}},nil}c["+4% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=4},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=4},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=4}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}c["Triggers Level 20 Lightning Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningAegis"}}},nil}c["23% increased Poison Duration"]={{[1]={flags=0,keywordFlags=1048576,name="Duration",type="INC",value=23}},nil}c["Adds 15 to 140 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=15},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=140}},nil}c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}}}},nil}c["Has 2 Abyssal Sockets Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={nil,"Has 2 Abyssal Sockets Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"}c["80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["All bonuses from an equipped Shield apply to your Minions instead of you"]={{},nil}c["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block"}c["Adds 25 to 40 Cold Damage while you have Avian's Might Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}}," while you have Avian's Might Adds 3 to 62 while you have Avian's Might"}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["Adds 115 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=58}},nil}c["Adds 4 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["+13 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13}},nil}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,keywordFlags=8,name="Speed",type="INC",value=15}},nil}c["Adds 6 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["You have Phasing while affected by Haste {variant:24}Unaffected by Temporal Chains while affected by Haste"]={nil,"You have Phasing while affected by Haste {variant:24}Unaffected by Temporal Chains while affected by Haste"}c["15% reduced Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil}c["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["+15 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=15}},nil}c["4% chance to Dodge Attack Hits"]={{}," to Dodge Attack Hits"}c["5% chance to Gain Unholy Might for 4 seconds on Melee Kill"]={{}," to Gain Unholy Might for 4 seconds on Kill"}c["Attacks with this Weapon deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={nil,"deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"}c["+7% chance to Block Spell Damage {variant:1}10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=7}}," Damage {variant:1}10% additional Chance to Block "}c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={nil,"deal 80-120 added Chaos Damage against"}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["+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.8}}," while affected by Hatred"}c["Adds 3 to 52 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=52}},nil}c["Adds 45 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"}c["+650 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=650}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy"}c["+120 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=120}},nil}c["Adds 50 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["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["Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Acrobatics"}},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["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={[1]={div=1,stat="ColdResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"}c["10% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=10}},nil}c["Increases and Reductions to Minion Damage also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true}},nil}c["Adds 13 to 24 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=13},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=24}},nil}c["Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"]={nil,"Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"}c["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["Adds 50 to 125 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=125}},nil}c["Adds 30 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="CritChance",type="INC",value=140}},nil}c["40% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-40}},nil}c["+15 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=15}},nil}c["to surrounding targets"]={nil,"to surrounding targets"}c["+23 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=23}},nil}c["also grant an equal chance to gain a Power Charge on Kill"]={nil,"also grant an equal chance to gain a Power Charge on Kill"}c["20% of Physical Damage gained as Extra Chaos Damage against"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}}," against"}c["Adds 35 to 65 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=65}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike"}c["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFasterAttack"}}},nil}c["8% additional Block Chance if you were Damaged by a Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["+40 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block"}c["+1 to Level of Socketed Dexterity Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="dexterity",value=1}}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=88}},nil}c["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=70}},nil}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit 0.5% of Attack Damage Leeched as Life "}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block"]={{[1]={flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}}," if Equipped Shield has at least 30% Chance to Block"}c["Grace Reserves no Mana {variant:6}Haste Reserves no Mana"]={nil,"Grace Reserves no Mana {variant:6}Haste Reserves no Mana"}c["12% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil}c["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=20}},nil}c["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=8}},nil}c["23% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsLightning",type="BASE",value=100}},nil}c["+38 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=38}},nil}c["Immune to Freeze while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice"}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"}c["Grants Summon Harbinger of Time Skill 15% increased Attack and Cast Speed"]={nil,"Grants Summon Harbinger of Time Skill 15% increased Attack and Cast Speed"}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["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["1% of Damage Leeched as Life if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["+15 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15}},nil}c["Adds 2 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},nil}c["25% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["85% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=85}},nil}c["Adds 20 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["+130 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=130}},nil}c["Right ring slot: You cannot Regenerate Mana"]={nil,"You cannot Regenerate Mana"}c["Point Blank"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Point Blank"}},nil}c["28% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=28}},nil}c["Adds 3 to 72 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=72}},nil}c["+1 to Maximum Life per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," Bow as Extra Damage of an Element"}c["40% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},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["80% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=80}},nil}c["10% chance to Trigger Level 8 Summon Raging Spirit on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=8,skillId="SummonRagingSpirit"}}},nil}c["30% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalProliferation"}}},nil}c["Adds 1 to 6 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=6}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy"}c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Adds 3 to 47 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=47}},nil}c["60 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil}c["Adds 2 to 45 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=45}},nil}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=46}},nil}c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=55}},nil}c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=5}},nil}c["Adds 1 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=3}},nil}c["Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=60}},nil}c["+11% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=11}},nil}c["Adds 175 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=175},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}},nil}c["Adds 1 to 200 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=200}},nil}c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit"}c["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=31}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy"}c["25 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=25}},nil}c["15% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"}c["Uses both hand slots 90% increased Critical Strike Chance"]={nil,"Uses both hand slots 90% increased Critical Strike Chance"}c["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["15 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["You gain 8% increased Area of Effect for each Mine 10% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 10% Chance for Traps to Trigger an additional time"}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=30}},nil}c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["16% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["3% of Damage taken gained as Mana when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=3}}," gained as Mana when Hit"}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["Adds 18 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill"}c["You gain Phasing for 3 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill"}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AbyssalCry"}}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["10% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil}c["110% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=110}},nil}c["+110 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=110}},nil}c["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=44}},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["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["7% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=7}},nil}c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["Adds 190 to 220 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=190},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=220}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies"}c["Enemies you Curse take 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AffectedByCurseMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Nearby Allies have 30% increased Item Rarity {variant:1}Nearby Allies' spells have Culling Strike"]={{}," Item Rarity {variant:1}Nearby Allies' s have Culling Strike"}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You"}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks"}c["+28% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=28}},nil}c["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"]={nil,"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"}c["Your Cold Damage can Ignite but not Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ColdCannotFreeze",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ColdCannotChill",type="FLAG",value=true}},nil}c["+90 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=90},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=90}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies 40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}}," Rarity of Items Dropped by Frozen Enemies 40% increased with Attack Skills"}c["Grants Summon Harbinger of Storms Skill"]={nil,"Grants Summon Harbinger of Storms Skill"}c["230% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=230}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit"}c["50% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["350% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=350}},nil}c["24% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=24}},nil}c["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=245}},nil}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportOnslaughtOnSlayingShockedEnemy"}}},nil}c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=20}}," to be Shocked 30% of is taken from Mana before Life when Hit"}c["+20% chance to be Shocked"]={{}," to be Shocked"}c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=30}},nil}c["10% chance to gain a Power Charge when you Block 6% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain a Power Charge when you Block 6% additional "}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=260}},nil}c["With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"]={nil,"With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=14},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=173}}," while no is Reserved"}c["20% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-20}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={nil,"16 to 144 added Lightning Damage per Blue Socket You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"}c["+4% chance to Block Spell Damage 4% chance to Block Attack Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=4}}," Damage 4% chance to Block Attack Damage"}c["When you Kill an Enemy, for each Curse on that Enemy, gain 4% of Non-Chaos Damage as extra Chaos Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=4},[2]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=4}},nil}c["Can Summon up to 3 additional Golems at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=64},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=107}}," while no is Reserved"}c["8% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=8}},nil}c["100% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=100}},nil}c["Damage Penetrates 15% Fire Resistance while affected by Anger {variant:3}Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}}," while affected by{variant:3}Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=54},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=88}}," while no is Reserved Adds 64 to 107 Fire Damage to s while no Life is Reserved"}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=54},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=88}}," while no is Reserved"}c["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportReducedMana"}}},nil}c["20% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=20}},nil}c["Conduit"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Conduit"}},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["+2 seconds to Avian's Flight Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=2}}," seconds to Avian's Flight "}c["+2 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["Adds 20 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["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["Grants level 1 Icestorm Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IcestormUniqueStaff12"}}},nil}c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," of Shrine Effects on you"}c["75% increased Effect of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"}c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you"}c["10% reduced Damage taken from Traps and Mines"]={{[1]={flags=0,keywordFlags=4096,name="DamageTaken",type="INC",value=-10}}," from s and Mines"}c["You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 3 seconds after being Shocked"}c["Gain 24% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element"}c["250% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=250}},nil}c["+15 Energy Shield gained on Kill 75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill 75% increased Effect of Shrine Buffs on you"}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20% You have Onslaught while not on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=2}}," to Dodge Attack and Hits per 500 , up to 20% You have Onslaught while not on Low Mana"}c["150% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}c["+15 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill"}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonLesserShrine"}}},nil}c["225% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=225}},nil}c["20% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},nil}c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["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["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["Minions have +16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16}}}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"}c["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["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"}c["1% increased Energy Shield per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=1}},nil}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike"}c["+140 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=140}},nil}c["Adds 105 to 253 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=105},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=253}},nil}c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10}},nil}c["50% increased Mine Arming Speed"]={{}," Arming Speed"}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity {variant:8}-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={skillName="Clarity",type="SkillName"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill while affected by{variant:8}-5 to Total Mana Cost of Skills while affected by Clarity"}c["+85 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=85}},nil}c["20% increased Flask Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["15% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-15}},nil}c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil}c["15% increased Damage with Ailments per Elder Item Equipped +6 to Maximum Life per Elder Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}," with Ailments per Elder Item Equipped +6 to Maximum Life per Elder Item Equipped"}c["+23 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=23}},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies Every 8 seconds, gain Avatar of Fire for 4 seconds"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," with Hits and Ailments Every 8 seconds, gain Avatar of Fire for 4 seconds"}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"}c["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["+29% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=29}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds"}c["Enemies you Shock have 20% reduced Movement Speed Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},"Enemies you Shock have 20% reduced Damage "}c["Regenerate 100 Life per second if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["+32% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=32}},nil}c["+300 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=300}},nil}c["+68 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=68}},nil}c["+6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["+12 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=12}},nil}c["3% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=22}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning"}c["Projectiles Pierce 6 additional Targets Implicit Modifier magnitudes are doubled"]={nil,"Projectiles Pierce 6 additional Targets Implicit Modifier magnitudes are doubled"}c["12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"}c["Crimson Dance {variant:8}Eldritch Battery"]={nil,"Crimson Dance {variant:8}Eldritch Battery"}c["Ignites your Skills cause spread to other Enemies within a Radius of 12"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12"}c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block"}c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies"}c["2% increased Minion Movement Speed per 50 Dexterity Minions' Hits can only Kill Ignited Enemies"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}," Minion Minions' Hits can only Kill Ignited Enemies"}c["40% increased Effect of Shock Unaffected by Shock"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Shock Unaffected by Shock"}c["2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}," Minion "}c["2% increased Minion Attack Speed per 50 Dexterity 2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},[2]={div=50,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}}," Minion 2% increased Minion Movement Speed "}c["10% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["2% increased Minion Attack Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}}," Minion "}c["8% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit Cannot Leech Mana"}c["Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"}c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You"}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire {variant:35}Unaffected by Burning Ground while affected by Purity of Fire"]={{[1]={[1]={skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}}," while affected by{variant:35}Unaffected by Burning Ground while affected by Purity of Fire"}c["+25 Energy Shield gained on Kill Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill Grants Malachai's Endurance,and Power for 6 seconds each, in sequence"}c["100% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=100}},nil}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges"}c["Gain Armour equal to your Reserved Mana"]={nil,"Gain Armour equal to your Reserved Mana"}c["6% increased Attack Damage for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the "}c["10% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}},nil}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Flammability"}}},nil}c["+25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["+200 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=200}},nil}c["40% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=40}},nil}c["12% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["+250 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=250}},nil}c["26% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"}c["Intelligence provides no bonus to Maximum Mana +1 to Maximum Life per 2 Intelligence"]={nil,"Intelligence provides no bonus to Maximum Mana +1 to Maximum Life per 2 Intelligence"}c["100% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=100}},nil}c["Strength provides no bonus to Maximum Life Intelligence provides no bonus to Maximum Mana"]={nil,"Strength provides no bonus to Maximum Life Intelligence provides no bonus to Maximum Mana"}c["Strength provides no bonus to Maximum Life"]={nil,"Strength provides no bonus to Maximum Life"}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["+180 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=180}},nil}c["150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=150}}," if you have at least 1500 "}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield 150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{}," if you have at least 1500 "}c["Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15"}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}}," if you have at least 1000 "}c["+8% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=8}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield 100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{}," if you have at least 1000 "}c["50% increased Defences from equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=188},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=262}}," to Bow Attacks"}c["+225 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=225}},nil}c["Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["20% chance to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"}c["Grants level 20 Death Aura Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ChaosDegenAuraUnique"}}},nil}c["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill"}c["Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"}c["Recover 5% of Life when a Spirit Charge expires or is consumed"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed"}c["10% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=10}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge +15% to all Elemental Resistances"]={nil,"Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge +15% to all Elemental Resistances"}c["Adds 18 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={nil,"Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"}c["30% chance to Cast Socketed Spells when you Spend at least 100 Mana to Use a Skill"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=30}}," to Cast Socketed s when you Spend at least 100 to Use a Skill"}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when"}c["Nearby Allies have 2% 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=2},onlyAllies=true}}}," you have"}c["Your Spells are disabled"]={nil,"Your Spells are disabled"}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["Enemies Ignited by an Attack Burn 20% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=20}},nil}c["90% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=90}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil}c["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={nil,"Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=70}},nil}c["15% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=15}},nil}c["Damage Penetrates 25% Fire Resistance if you've"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=25}}," if you've"}c["5% additional Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=25}},nil}c["+5 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=5}}},nil}c["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"]={nil,"56 to 88 added Cold Damage per Green Socket You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"}c["You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={nil,"64 to 96 added Fire Damage per Red Socket"}c["Nearby Enemies have -10% to all Resistances"]={nil,"Nearby Enemies have -10% to all Resistances"}c["25% chance to Sap Enemies"]={{}," to Sap Enemies"}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}}," while you have at least 5 Crab Barriers"}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently"}c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil}c["+9% chance to Block Spell Damage {variant:2}+6% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=9}}," Damage {variant:2}+6% chance to Block Spell Damage"}c["+9% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=9}}," Damage"}c["40% less Weapon Damage"]={{[1]={flags=8388608,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["+52% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=52}},nil}c["80% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=80}},nil}c["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil}c["+10 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["20% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["15% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=15}},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["1% of Damage against Frozen Enemies Leeched as Mana"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil}c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers"}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"}c["8% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["270% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=270}},nil}c["You have Phasing while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack"}c["20% increased Area of Effect for Traps"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=20}},nil}c["Creates a Smoke Cloud on Use"]={{},nil}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["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil}c["4% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more "}c["+1500 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["4% reduced Elemental Damage taken while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-4}},nil}c["6% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=6}},nil}c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy {variant:9}{crafted}13% increased Cast Speed"]={{[1]={[1]={skillName="Blood Rage",type="SkillName"},flags=16,keywordFlags=0,name="Speed",type="BASE",value=10}}," to Trigger Level 1when you Kill an Enemy {variant:9}{crafted}13% increased "}c["You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"]={nil,"You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"}c["-1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["25% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Minions have +325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}}}},nil}c["Minions have +350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}}}},nil}c["+2 seconds to Avian's Flight Duration 100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="BASE",value=2}}," seconds to Avian's Flight 100 Life Regenerated per Second while you have Avian's Flight"}c["Minions have 10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["+21% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=21}},nil}c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["6% increased Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second"]={nil,"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second"}c["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["Mercury Footprints"]={nil,"Mercury Footprints"}c["2 additional Projectiles during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={nil,"Enemies you inflict Bleeding on grant 100% increased Flask Charges"}c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil}c["12% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["+65 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=65}},nil}c["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred {variant:29}12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=40}}," while affected by{variant:29}12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"}c["10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10}},nil}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil}c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil}c["5% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["+3% to all maximum Resistances while Poisoned"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}}," while Poisoned"}c["Cannot Leech when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true},[2]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=50}},nil}c["Adds 10-20 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"}c["250% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=250}},nil}c["Has no Attribute Requirements"]={nil,"Has no Attribute Requirements"}c["Can't use Chest armour {variant:1,2}15% Chance to Block"]={nil,"Can't use Chest armour {variant:1,2}15% Chance to Block"}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"}c["8% chance to Block while affected by Determination"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}}," while affected by Determination"}c["0.2% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage Converted to Cold Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage Converted to Cold Damage"}c["Can't use Chest armour"]={nil,"Can't use Chest armour"}c["Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 50 Energy Shield when your Trap is triggered by an Enemy"}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour"}c["10% chance to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block"}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing"}c["300% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=300}},nil}c["Adds 20 to 30 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["12% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"}c["80% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=80}},nil}c["+24% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=24}}," Damage"}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill"}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 12 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFasterAttack"}}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterAttack"}}},nil}c["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["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["Anger Reserves no Mana"]={nil,"Anger Reserves no Mana"}c["6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6}},nil}c["+25 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["10% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["15% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=15}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons"}c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder "}c["25% chance to Sap Enemies Cannot inflict Shock"]={{}," to Sap Enemies Cannot inflict Shock"}c["+125 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=125}},nil}c["15% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"]={nil,"You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"}c["30% increased Damage if you've killed a Bleeding Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+15 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=15}},nil}c["130% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=130}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire"}c["135% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=135}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit"}c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=2}},nil}c["10% chance to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit"}c["Adds 1 to 80 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredShockedGround"}}},nil}c["Adds 58 to 98 Chaos Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ChaosMin",type="BASE",value=58},[2]={flags=2,keywordFlags=0,name="ChaosMax",type="BASE",value=98}},nil}c["+1000 to Spectre maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}}," Spectre "}c["40% increased Physical Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["Cannot inflict Shock 10% increased Elemental Damage per Sextant affecting the area"]={nil,"Cannot inflict Shock 10% increased Elemental Damage per Sextant affecting the area"}c["125% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=125}},nil}c["5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}}," while you have at least 10 Crab Barriers"}c["Projectiles Pierce an additional Target 10% increased Projectile Damage"]={nil,"Projectiles Pierce an additional Target 10% increased Projectile Damage"}c["50% chance to avoid Bleeding 20% increased Movement Speed while you have Cat's Stealth"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}," to avoid Bleeding 20% increased while you have Cat's Stealth"}c["190% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=190}},nil}c["16% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=16}},nil}c["Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"]={nil,"Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}},nil}c["+2 to Melee Weapon and Unarmed range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["Curse Enemies with Socketed Curse Gem on Hit"]={nil,nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["50% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=50}},nil}c["Cannot inflict Freeze or Chill"]={nil,"Cannot inflict Freeze or Chill"}c["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-50}},nil}c["Socketed Gems are Supported by level 20 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportConcentratedEffect"}}},nil}c["Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits refresh their Duration when they Kill an Ignited Enemy"}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterCast"}}},nil}c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["75% reduced Maximum number of Summoned Raging Spirits"]={{}," Maximum number of Summoned Raging Spirits"}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=4}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil}c["+20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block"}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000%"}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=25}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life"}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["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,keywordFlags=0,name="PhysicalDamage",type="MORE",value=1000}},nil}c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge"}c["45% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=45}},nil}c["8% chance to Block Spells while affected by Discipline {variant:14}30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}}," while affected by{variant:14}30 Energy Shield gained for each Enemy Hit while affected by Discipline"}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["You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"]={nil,"You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"}c["You lose all Spirit Charges when taking a Savage Hit"]={nil,"You lose all Spirit Charges when taking a Savage Hit"}c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"}c["-30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-30}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,keywordFlags=128,name="Duration",type="INC",value=40}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=150}},nil}c["You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"}c["Has 2 Abyssal Sockets 8% increased maximum Life"]={nil,"Has 2 Abyssal Sockets 8% increased maximum Life"}c["25% chance to inflict Brittle"]={{}," to inflict Brittle"}c["35% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=35}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy"}c["260% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=260}},nil}c["Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, remove Curses and Elemental Status Ailments from you You and Allies have 12% increased Attack and Cast Speed while affected by Auras you Cast You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}c["25% chance to Scorch Enemies"]={{}," to Scorch Enemies"}c["Has 1 Abyssal Socket"]={nil,"Has 1 Abyssal Socket"}c["18% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=18}},nil}c["+14% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=14}},nil}c["235% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=235}},nil}c["20% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["-1 Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["Adds 19 to 34 Chaos Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=2,keywordFlags=0,name="ChaosMax",type="BASE",value=34}},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["80% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil}c["10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["+350 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=350}},nil}c["Adds 21 to 36 Chaos Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ChaosMin",type="BASE",value=21},[2]={flags=2,keywordFlags=0,name="ChaosMax",type="BASE",value=36}},nil}c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=7}},nil}c["+60% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=60}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-15}},nil}c["+80 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}},nil}c["Hatred Reserves no Mana"]={nil,"Hatred Reserves no Mana"}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge"}c["40% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil}c["Adds 228 to 280 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=228},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=280}},nil}c["90% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=90}},nil}c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningSpell"}}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage"}c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=35}},nil}c["You and Allies deal 15% increased Damage while affected by Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["+2 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=2}}},nil}c["+1 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=1}}},nil}c["8% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Cannot be Knocked Back {variant:1}+150 to maximum Life"]={nil,"Cannot be Knocked Back {variant:1}+150 to maximum Life"}c["140% increased Duration of Ailments you inflict while Focussed"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=140}}," of Ailments you inflict while Focussed"}c["You and nearby allies gain 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["+15% to Lightning and Chaos Resistances {variant:7}{crafted}+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Lightning and s {variant:7}{crafted}+17 to Strength and Dexterity"}c["+15% to Cold and Chaos Resistances {variant:6}{crafted}+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Cold and s {variant:6}{crafted}+15% to Lightning and Chaos Resistances"}c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=35}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination"}c["+15% to Fire and Chaos Resistances {variant:5}{crafted}+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Fire and s {variant:5}{crafted}+15% to Cold and Chaos Resistances"}c["+18 to Quality {variant:4}{crafted}+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}}," Quality {variant:4}{crafted}+15% to Fire and s"}c["+18 to Quality"]={{}," Quality"}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["1% increased Projectile Attack Damage per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["210% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=210}},nil}c["+280 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=280}},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["+300 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=300}},nil}c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement"}c["Manifested Dancing Dervish disables both weapon slots"]={{},nil}c["10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Reflects 5 Physical Damage to Melee Attackers"]={{},nil}c["25% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["Nearby allies Recover 2% of your maximum Life when you Die"]={nil,"Nearby allies Recover 2% of your maximum Life when you Die"}c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies"}c["70% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Mines cannot be Damaged for 5 seconds after being Placed"}c["13% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=13}},nil}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed"]={{[1]={flags=3,keywordFlags=0,name="Speed",type="BASE",value=25}}," to Trigger a Socketed when you Attack with a Bow 15% increased "}c["10% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Damage Penetrates 5% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["60% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},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["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["18% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil}c["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["+70 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=70}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["Socketed Gems are Supported by Level 25 Blessing"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportAuraDuration"}}},nil}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight 80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=25}}," to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight 80% increased "}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to"}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{}," to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"}c["23% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=23}},nil}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited"}c["Skills used by Traps have 20% increased Area of Effect"]={nil,"Skills used by Traps have 20% increased Area of Effect"}c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant"}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["Gain 15% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"]={{[1]={[1]={type="Condition",varList={[1]="KilledRecently",[2]="TotemsKilledRecently"}},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},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}},nil}c["35% increased Cold Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ColdDamage",type="INC",value=35}},nil}c["You gain 8% increased Damage for each Trap You gain 8% increased Area of Effect for each Mine 10% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each You gain 8% increased Area of Effect for each Mine 10% Chance for Traps to Trigger an additional time"}c["-10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-10}},nil}c["You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill"}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 Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["+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["Cannot be Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["Adds 6 to 12 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=6},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=12}},nil}c["18% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=18}},nil}c["30% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil}c["Minions deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["25% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25}},nil}c["50% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=50}},nil}c["45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["+0.5% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.5}},nil}c["+20% chance to be Pierced by Projectiles {variant:2,3}Projectiles Pierce you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by {variant:2,3}Projectiles Pierce you"}c["-30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-30}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="FireMax",type="BASE",value=25}},nil}c["Adds 90 to 180 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil}c["+120 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=120}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit"}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice {variant:39}Unaffected by Chilled Ground while affected by Purity of Ice"]={{[1]={[1]={skillName="Purity of Ice",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=10}}," while affected by{variant:39}Unaffected by Chilled Ground while affected by Purity of Ice"}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=30}},nil}c["+25 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=25}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=120}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},nil}c["Adds 13 to 31 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=31}},nil}c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["-1 Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["+40 Life gained when you Block {variant:2,3}+48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block {variant:2,3}+48 Life gained when you Block"}c["Adds 1 to 4 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=4}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=6}},nil}c["20% increased Damage if you've Killed a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["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["45% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=45}},nil}c["30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," with Hits against Rare monsters"}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"}c["+188% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=188}},nil}c["Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}},nil}c["305% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=305}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=50}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=125}},nil}c["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["10% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=5}},nil}c["Adds 40 to 60 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"}c["100% increased Critical Strike Chance against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," against Enemies that are affected"}c["25% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportColdPenetration"}}},nil}c["+12% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=12}},nil}c["14% increased Physical Damage with Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}},nil}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenOverTime",type="INC",value=-25}},nil}c["Adds 8 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}c["13% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"}c["You have Onslaught while not on Low Mana Lose 7% of maximum Mana per Second"]={nil,"You have Onslaught while not on Low Mana Lose 7% of maximum Mana per Second"}c["You gain 8% increased Damage for each Trap"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each "}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges"}c["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding"}c["5% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy"}c["Your Physical Damage can Chill"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire"}c["26% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["+6% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["4% chance to Block Attack Damage 10% additional Chance to receive a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}," Attack Damage 10% additional Chance to receive a Critical Strike"}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 to s "}c["25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=4,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["50% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=50}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy"]={{}," to gain a Power Charge on Killing a Frozen Enemy"}c["Adds 1 to 40 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=40}},nil}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}c["+1 Maximum Power Charge"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=45}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["+5 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=90}},nil}c["+10 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently"]={nil,"400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently"}c["Adds 3 to 9 Lightning Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=9}},nil}c["2% additional Chance to Block Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Triggers Level 20 Blinding Aura when Equipped"]={nil,nil}c["Grants Summon Harbinger of Focus Skill"]={nil,"Grants Summon Harbinger of Focus Skill"}c["+65 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=65}},nil}c["4% Chance to Block Attack Damage while wielding a Staff {variant:3}10% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}," Attack Damage {variant:3}10% Chance to Block Attack Damage "}c["17% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=17}},nil}c["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack"}c["40% increased Cold Damage with Attack Skills Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}}," with Attack Skills Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"}c["Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={nil,"Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"}c["+23 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=23}},nil}c["Has 1 Socket"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=1}},nil}c["50% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=3},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=5}}," per 3 Player Levels"}c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=115}},nil}c["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=14}},nil}c["29% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=29}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life"}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}}," when Hitting Cursed Enemies Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"}c["Adds 27 to 86 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=86}},nil}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected "}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter"]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter"}c["+15 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["You gain Onslaught for 3 seconds on Culling Strike"]={nil,"You gain Onslaught for 3 seconds on Culling Strike"}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["Gain 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=15}},nil}c["Golem Skills have 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=92}},nil}c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}," Size Golems Deal 45% less "}c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["When Hit, 30% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=30}},nil}c["30% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=30},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=30}},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["+500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},nil}c["Adds 56 to 84 Chaos Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ChaosMin",type="BASE",value=56},[2]={flags=2,keywordFlags=0,name="ChaosMax",type="BASE",value=84}},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["20% increased Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Minions gain Unholy Might for 5 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill"}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["37% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=37}},nil}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["26% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["+18 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=18}},nil}c["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=3}},nil}c["24% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy"}c["25% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["15% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-15}},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["30% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="LightningDamage",type="INC",value=30}},nil}c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}}," while affected by Vitality"}c["Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FireMin",type="BASE",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FireMax",type="BASE",value=210}}," to Hits "}c["Increases and Reductions to Light Radius also apply to Accuracy Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FireMin",type="BASE",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FireMax",type="BASE",value=210}},"Increases and Reductions to also apply to Accuracy to Hits "}c["+220 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=220}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"}c["250% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=250}},nil}c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["Adds 4 to 10 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}c["18% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=18}},nil}c["+2000 to Zombie maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=2000}}}},nil}c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," Enemies to Flee on hit"}c["Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"}c["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded"}c["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=33}},nil}c["-40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-40}},nil}c["Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},nil}c["19% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=19}},nil}c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill"}c["22% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=22}},nil}c["50% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=50}},nil}c["Adds 6 to 9 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=6},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=9}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=180}},nil}c["+3000 to Armour during Soul Gain Prevention"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}}," during Soul Gain Prevention"}c["+25% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}c["+6% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["+50 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},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["1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius +5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," on Allocated Passives in Radius +5% to Critical Strike Multiplier on Unallocated Passives in Radius"}c["Converted to Cold Damage"]={nil,"Converted to Cold Damage"}c["20% more chance to Evade Attacks while not on full Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="MORE",value=20}},nil}c["6% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["+33 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["+40 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["50% increased Effect of non-Keystone Passive Skills in Radius"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of non-Keystone Passive Skills in Radius"}c["+75 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage"}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"}c["Flasks apply to your Zombies and Spectres"]={{[1]={[1]={skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil}c["Spectres have 100% increased Damage"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=35}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration"}c["80% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-80}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=5}}," per Shaper Item Equipped"}c["3% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"}c["+1 to Minimum Endurance Charges"]={{}," Minimum Endurance Charges"}c["-40 Physical Damage taken from Attacks 40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks 40% increased Armour "}c["Grace has 60% increased Aura Effect"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["20% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Duration",type="INC",value=20}},nil}c["Determination has 60% increased Aura Effect"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["36% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=36}},nil}c["14% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=14}},nil}c["10% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["50% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=50}},nil}c["Nearby Enemies Take 16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=16}}}},nil}c["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["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["1% additional Block Chance while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["8% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["25% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-25}},nil}c["8% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20}},nil}c["30% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-30}},nil}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=30}},nil}c["10% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=10},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=10}},nil}c["Cannot be Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"}c["+10% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="BASE",value=10}},nil}c["30% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life"}c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-40}},nil}c["You lose all Endurance Charges at maximum Endurance Charges"]={nil,"You lose all Endurance Charges at maximum Endurance Charges"}c["Adds 53 to 76 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=76}},nil}c["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"}c["20% more Maximum Physical Attack Damage {variant:2}40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum {variant:2}40% more Maximum Physical Attack Damage"}c["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum "}c["40% less Minimum Physical Attack Damage {variant:1}20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum {variant:1}20% more Maximum Physical Attack Damage"}c["20% less Minimum Physical Attack Damage {variant:2}40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum {variant:2}40% less Minimum Physical Attack Damage"}c["30% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=260,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["60% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["+7% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["10% of Damage taken from Mana before Life while affected by Clarity {variant:6}Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={skillName="Clarity",type="SkillName"},flags=0,keywordFlags=0,name="DamageTakenGainAsEnergyShield",type="BASE",value=10}}," from Mana before Life while affected by{variant:6}Gain 18% of Maximum Mana while affected by Clarity"}c["Adds 6 to 13 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=6},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=13}},nil}c["5% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=5}},nil}c["Adds 25 to 90 Lightning Damage to Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=25},[2]={[1]={type="Condition",var="UsingFlask"},flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=90}},nil}c["Adds 1 to 34 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=34}},nil}c["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=3},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=7}},nil}c["30% of Wand Physical Damage Added as Lightning Damage"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=30}},nil}c["Adds 8 to 16 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=8},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=16}},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["10% chance to gain a Power Charge on Critical Strike +1 to Maximum Power Charges"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=10}}," to gain a Power Charge +1 to "}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun"}c["1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"]={{[1]={[1]={div=300,stat="LowestOfArmourAndEvasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=320}},nil}c["7% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=7}},nil}c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=90}},nil}c["12% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=12}},nil}c["50% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=90}},nil}c["Adds 35 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity {variant:9}8% chance to Block while affected by Determination"]={{[1]={[1]={skillName="Clarity",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}}," Total while affected by{variant:9}8% chance to Block while affected by Determination"}c["Gain 8% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=8}},nil}c["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil}c["33% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["116% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=116}},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}},nil}c["+88 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=88}},nil}c["Adds 19 to 35 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=19},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["+48% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=48}},nil}c["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks"}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="FireDamage",type="INC",value=100}}," with Hits and Ailments "}c["20% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["1% of Damage Leeched as Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil}c["-10% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-10},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=-10},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=-10},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-10}},nil}c["+1 Melee Weapon and Unarmed Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=75}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=16}},nil}c["+15% to Lightning and Chaos Resistances {variant:5}{crafted}+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Lightning and s {variant:5}{crafted}+17 to Strength and Dexterity"}c["+15% to Cold and Chaos Resistances {variant:4}{crafted}+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Cold and s {variant:4}{crafted}+15% to Lightning and Chaos Resistances"}c["Grants Level 22 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="AccuracyAndCritsAura"}}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="INC",value=70}}," with Hits and Ailments "}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["Focus has 25% increased Cooldown Recovery Speed"]={nil,"Focus has 25% increased Cooldown Recovery Speed"}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["+48 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=48}},nil}c["20% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["12 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12}},nil}c["Gain Igniting Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100},[2]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="PhysicalCanIgnite",type="FLAG",value=true},[3]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true},[4]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[5]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true}},nil}c["+48 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=48}},nil}c["When you Kill a Rare monster, you gain its mods for 20 seconds"]={nil,"When you Kill a Rare monster, you gain its mods for 20 seconds"}c["30% increased Damage against Rare monsters"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," against Rare monsters"}c["+55 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=55}},nil}c["+55 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=55}},nil}c["10% chance to Cause Monsters to Flee Enemies you Shock have 30% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="BASE",value=10}}," to Cause Monsters to Flee Enemies you Shock have 30% reduced "}c["82% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=82}},nil}c["-1 Strength per 1 Strength on Allocated Passives in Radius 1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius"]={{[1]={[1]={div=1,stat="Str",type="PerStat"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Str",type="BASE",value=-1}}," on Allocated Passives in Radius 1% additional Physical Damage Reduction on Allocated Passives in Radius"}c["Chaos Damage can Ignite, Chill and Shock"]={nil,"Chaos Damage can Ignite, Chill and Shock"}c["Critical Strikes do not always Freeze"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true}},nil}c["+500 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["6% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Adds 10 to 20 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=20}},nil}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=18}},nil}c["5% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["-80 Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks 200% increased Armour against Projectiles"}c["+231 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=231}},nil}c["15% chance to gain a Power Charge on Throwing a Trap {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap"}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil}c["Golems Deal 45% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-45}}}},nil}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["Adds 6 to 9 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=6},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=9}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill"}c["20% increased Attack Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["35% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["50% increased Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["30% reduced Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=-30}},nil}c["Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Has 2 Abyssal Sockets Triggers level 20 Death Walk when Equipped"]={nil,"Has 2 Abyssal Sockets Triggers level 20 Death Walk when Equipped"}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow"}c["24% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Enemies Ignited by an Attack Burn 35% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=35}},nil}c["+20% to all Elemental Resistances while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["100% increased Spell Damage taken when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana"}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield"}c["Your Flasks grant 10% chance to Shock during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Your Flasks grant 10% chance to Freeze during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["20% chance to create a Smoke Cloud when you place a Mine or throw a Trap 5% increased Damage for each Trap and Mine you have"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="BASE",value=20}}," to create a Smoke Cloud when you place a or throw a Trap 5% increased for each Trap and Mine you have"}c["Your Flasks grant 25% reduced Enemy Stun Threshold during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=0.2}},nil}c["1% of maximum Mana gained on Kill Removes 1% of maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill Removes 1% of maximum Life on Kill"}c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=0.2}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill Conduit"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill Conduit"}c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil}c["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised"}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["25% increased Light Radius during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["Has 2 Abyssal Sockets Socketed Gems are Supported by Level 20 Elemental Penetration"]={nil,"Has 2 Abyssal Sockets Socketed Gems are Supported by Level 20 Elemental Penetration"}c["+350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}},nil}c["Has 1 Abyssal Socket 50% increased Effect of Socketed Jewels"]={nil,"Has 1 Abyssal Socket 50% increased Effect of Socketed Jewels"}c["Stygian Vise League: Abyss"]={nil,"Stygian Vise League: Abyss"}c["10% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["35% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="LightningDamage",type="INC",value=35}},nil}c["+50% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=30}},nil}c["50% Chance to avoid being Stunned during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil}c["200% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=200}},nil}c["Cannot be Ignited if Strength is higher than Dexterity Cannot be Shocked if Intelligence is higher than Strength"]={nil,"Cannot be Ignited if Strength is higher than Dexterity Cannot be Shocked if Intelligence is higher than Strength"}c["Cannot be Ignited if Strength is higher than Dexterity"]={nil,"Cannot be Ignited if Strength is higher than Dexterity"}c["320% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=320}},nil}c["Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"}c["15% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=15}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"}c["You are Cursed with Level 20 Vulnerability"]={nil,"You are Cursed with Level 20 Vulnerability"}c["You count as on Low Life while you are Cursed with Vulnerability"]={nil,"You count as on Low Life while you are Cursed with Vulnerability"}c["+18% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18}},nil}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"}c["Minions gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}}}},nil}c["Rampage 1% increased Rarity of Items found per 15 Rampage Kills"]={nil,"Rampage 1% increased Rarity of Items found per 15 Rampage Kills"}c["5% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=5}},nil}c["Nearby Enemies are Intimidated"]={nil,"Nearby Enemies are Intimidated"}c["You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"]={nil,"You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes"}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"}c["25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}c["10% of Wand Physical Damage Added as Fire Damage"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing"}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["25% increased Elemental Damage with Attack Skills per Power Charge +55 to maximum Mana"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}}," with Attack Skills +55 to maximum Mana"}c["Socketed Gems are Supported by level 10 Knockback"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportKnockback"}}},nil}c["25% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=25}},nil}c["25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}}," with Attack Skills "}c["0.2% of Physical Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["+13% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["Adds 22 to 33 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=33}},nil}c["+78 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=78}},nil}c["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium"}c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-15}},nil}c["15% increased Attack and Movement Speed while you have a Bestial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}}," Attack and while you have a Bestial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"}c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil}c["Adds 60 to 110 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=60},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=110}},nil}c["Grants Perfect Agony during Flask effect"]={nil,"Grants Perfect Agony during Flask effect"}c["Cannot be Blinded 25% chance to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 25% chance to create a Smoke Cloud when Hit 25% chance to Blind Enemies on Hit"}c["1% increased Damage per 8 Strength when in Main Hand"]={{[1]={[1]={div=8,stat="Str",type="PerStat"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil}c["Adds 60 to 110 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=60},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=110}},nil}c["Counts as Dual Wielding"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsDualWielding",value=true}}},nil}c["Projectiles Pierce an additional Target"]={nil,"Projectiles Pierce an additional Target"}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["625% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=625}},nil}c["28% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-28}},nil}c["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={skillName="Vulnerability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredBoneNova"}}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-25}},nil}c["200% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}},nil}c["Adds 375 to 550 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=375},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=550}},nil}c["Elemental Status Ailments are removed when you reach Low Life"]={nil,"Elemental Status Ailments are removed when you reach Low Life"}c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem"}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}}," when Hitting Cursed Enemies"}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-40}},nil}c["Attacks Cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=20}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks"}c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit"}c["Cannot Evade Enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["40% faster start of Energy Shield Recharge while affected by Discipline {variant:17}+8% chance to Evade Attacks while affected by Grace"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}}," while affected by{variant:17}+8% chance to Evade Attacks while affected by Grace"}c["320% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=320}},nil}c["Rampage 2% increased Area of Effect per 25 Rampage Kills"]={nil,"Rampage 2% increased Area of Effect per 25 Rampage Kills"}c["35% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=35}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger {variant:5}10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=40}}," while affected by{variant:5}10% of Damage taken from Mana before Life while affected by Clarity"}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded"}c["10% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["100% increased Damage with Ignites inflicted on Chilled Enemies 25% Chance to Ignite when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}," with Ignites inflicted on Chilled Enemies 25% Chance to Ignite "}c["6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["10% Chance to Block Attack Damage while wielding a Staff 80% increased Critical Strike Chance for Spells"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," Attack Damage 80% increased Critical Strike Chance "}c["4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["+10 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["14% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=14}},nil}c["20% chance to attack with Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=16,skillId="TriggeredMoltenStrike"}}},nil}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy"}c["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},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["100% increased Effect of Buffs granted by your Elemental Golems"]={{[1]={[1]={skillType=62,type="SkillType"},[2]={skillType=33,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100},[2]={[1]={skillType=62,type="SkillType"},[2]={skillType=34,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100},[3]={[1]={skillType=62,type="SkillType"},[2]={skillType=35,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["+18% to Quality {variant:8}{crafted}16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=18}}," Quality {variant:8}{crafted}16% increased "}c["60% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."}c["+35% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=35}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect"}c["Adds 45 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill"]={nil,nil}c["15% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["+23% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}c["+95 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=95}},nil}c["+23 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23}},nil}c["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil}c["Minions have 4% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}}},nil}c["10% increased Damage taken from Skeletons"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," from Skeletons"}c["+15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["0.4% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}},nil}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill"}c["Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"]={nil,"Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies Take 200 Physical Damage when you use a Movement Skill"]={nil,"Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies Take 200 Physical Damage when you use a Movement Skill"}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike"}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"}c["Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"]={nil,"Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"}c["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity"}c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"}c["Has 2 Abyssal Sockets"]={nil,"Has 2 Abyssal Sockets"}c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Causes Bleeding on Melee Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["Adds 10 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}}," while affected by Anger"}c["Attacks have Blood Magic"]={{[1]={flags=1,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine"}c["1.2% of Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["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 14 to 28 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=14},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=28}},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["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["+25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," against Projectiles"}c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=50}},nil}c["Converted to Cold Damage With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"Converted to Cold Damage With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"}c["Gain a Spirit Charge every second"]={nil,"Gain a Spirit Charge every second"}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges"}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["With at least 40 Intelligence in Radius, Spark fires 2 additional Projectiles"]={nil,"With at least 40 Intelligence in Radius, Spark fires 2 additional Projectiles"}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["40% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["8% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-8}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown"}c["Adds 70 to 165 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},nil}c["You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"]={nil,"You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"}c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}," Minion per Skeleton you own"}c["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike"}c["20% less chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=-20}},nil}c["Cannot Leech {variant:3,4}Cannot Leech Life"]={nil,"Cannot Leech {variant:3,4}Cannot Leech Life"}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 7 to 15 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="LightningWarp"}}},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["60% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="INC",value=60}}," with Hits and Ailments "}c["Adds 13 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["+1% to Critical Strike Chance while affected by Aspect of the Cat Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}}," while affected by Aspect of the Cat Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"}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["+6 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=6}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken"}c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["Hits deal 20% increased Damage against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=4,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 15 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["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["360% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=360}},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["20% of Physical Damage gained as Extra Chaos Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Adds 19 to 35 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},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["8% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},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["100% increased Damage with Ignites inflicted on Chilled Enemies"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}," with Ignites inflicted on Chilled Enemies"}c["Enemies Chilled by you take 40% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=40}}}},nil}c["40% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["Adds 285 to 330 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=285},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=330}},nil}c["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["20% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil}c["Adds 285 to 330 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=285},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=330}},nil}c["Adds 237 to 272 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=237},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=272}},nil}c["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={nil,"Hits ignore Enemy Monster Fire Resistance while you are Ignited"}c["Spectres have a Base Duration of 20 seconds"]={nil,"a Base Duration of 20 seconds"}c["50% less Damage to surrounding targets 20% increased Area of Effect of Area Skills"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="MORE",value=-50}}," to surrounding targets 20% increased of Effect of Area Skills"}c["Golems have 45% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil}c["Adds 10 to 23 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=23}},nil}c["Minions have 60% chance to Poison Enemies on Hit Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=4,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=60}}}}," to Pois on Hit Minions Leech 5% of "}c["10% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},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["5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["15% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=15}},nil}c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Gain a Frenzy Charge if an Attack Ignites an Enemy"}c["With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy {variant:2,3}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 deals 2% increased Damage with Hits and Poison for each Poison on the Enemy {variant:2,3}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 a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"]={nil,"With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"}c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled"}c["+1 to Minimum Power Charges {variant:11}{crafted}+1 to Minimum Endurance Charges"]={{}," Minimum Power Charges {variant:11}{crafted}+1 to Minimum Endurance Charges"}c["Projectile Critical Strike Chance increased by Arrow Pierce Chance"]={{[1]={[1]={div=1,stat="PierceChance",type="PerStat"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["+30 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}},nil}c["Adds 40 to 60 Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=50}}," Chilled Enemies"}c["Temporal Chains has 100% reduced Mana Reservation"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportMeleePhysicalDamage"}}},nil}c["17% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=17}},nil}c["30% increased Effect of non-Damaging Ailments on Enemies {variant:8}{crafted}Shock nearby Enemies for 4 Seconds when you Focus"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}}," of non-Damaging Ailments {variant:8}{crafted}Shock nearby Enemies for 4 Seconds when you Focus"}c["30% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}}," of non-Damaging Ailments "}c["200% increased Armour and Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=200}},nil}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life"}c["Grants Summon Harbinger of Directions Skill"]={nil,"Grants Summon Harbinger of Directions Skill"}c["+17 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["100% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=100}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"}c["+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17}},nil}c["+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Lightning and s"}c["1% of Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=1}},nil}c["+15% to Cold and Chaos Resistances {variant:3}{crafted}+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Cold and s {variant:3}{crafted}+15% to Lightning and Chaos Resistances"}c["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=900}}}},nil}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20}},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["30% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=10}},nil}c["15 Life Regenerated per second for each Uncorrupted Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}}," for each Uncorrupted Item Equipped"}c["Adds 80 to 375 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=375}},nil}c["+300 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=300}},nil}c["+600 Strength and Intelligence Requirement +10 to maximum Divine Charges"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=600},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=600}}," Requirement +10 to maximum Divine Charges"}c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges"}c["+13% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=13}},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="TriggeredSummonSpider"}}},nil}c["16% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=16}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds"}c["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life"}c["40% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask 20% chance to Freeze, Shock and Ignite while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask 40% increased Elemental Damage while using a Flask 20% chance to Freeze, Shock and Ignite while using a Flask"}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack"}c["30% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=30}},nil}c["Unaffected by Temporal Chains"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Chain +1 times"}c["Your Curses can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="CursesIgnoreHexproof",type="FLAG",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["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=50}},nil}c["Adds 10 to 20 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=20}},nil}c["50% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["Chaos Damage does not bypass Energy Shield"]={nil,"Chaos Damage does not bypass Energy Shield"}c["+13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}},nil}c["+3 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil}c["Enemies you Curse have -15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="AffectedByCurseMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-15}}}},nil}c["20% increased Attack Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," while affected by Discipline"}c["Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther Projectile Critical Strike Chance increased by Arrow Pierce Chance"]={nil,"Attack Projectiles Return to You after hitting targets Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther Projectile Critical Strike Chance increased by Arrow Pierce Chance"}c["1% of Damage is taken from Mana before Life per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=1}},nil}c["15% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15}},nil}c["6% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=60}},nil}c["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=30}},nil}c["50% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil}c["Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances"]={nil,"Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances"}c["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=18}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}}," while affected by Hatred"}c["200% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"}c["Projectiles Pierce 6 additional Targets"]={nil,"Projectiles Pierce 6 additional Targets"}c["3% increased Attack Speed with Daggers"]={{[1]={flags=32769,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Can't use other Rings"]={nil,"Can't use other Rings"}c["+12 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["You and Allies affected by your Auras have +20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}c["0.5% of Energy Shield Regenerated per second for each Enemy you've Killed Recently Cannot Be Stunned while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.5}}," for each Enemy you've Killed Recently Cannot Be Stunned "}c["+250 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=250}},nil}c["Adds 9 to 18 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=18}},nil}c["20% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=50}},nil}c["Grants Summon Harbinger of Time Skill"]={nil,"Grants Summon Harbinger of Time Skill"}c["+15% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["+47 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=47}},nil}c["70% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=70}},nil}c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use"}c["30% increased Elemental Damage with Attack Skills {variant:1}+15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}}," with Attack Skills {variant:1}+15% to all Elemental Resistances"}c["10% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}},nil}c["+4% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=4},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=4}},nil}c["+25% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 10 seconds on Kill"}c["2 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"]={nil,"Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use"}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MerveilWarp"}}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies 20% chance to Maim on Hit"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}}," against Maimed Enemies 20% chance to Maim on Hit"}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=43}},nil}c["Your Lightning Damage can Ignite"]={nil,"Your Lightning Damage can Ignite"}c["6% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently"}c["Right ring slot: Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce"}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["Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells cannot Fork"}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["Skills Chain +1 times"]={{[1]={flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["4% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["2% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=22}}," while a Rare or Unique Enemy is Nearby"}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["Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells Fork"}c["Left ring slot: Projectiles from Spells cannot Chain {variant:2}Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells cannot Chain {variant:2}Left ring slot: Projectiles from Spells Fork"}c["Left ring slot: Projectiles from Spells cannot Chain"]={nil,"Projectiles from Spells cannot Chain"}c["Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life 20% chance to double Stun Duration"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life 20% chance to double Stun Duration"}c["Gain 24% of Physical Damage as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets"}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["+75 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=75},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["+2 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=2}}},nil}c["+40% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken"}c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected "}c["10% chance to Dodge Spell Damage while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=50}},nil}c["Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=28}},nil}c["275% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=275}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-40}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level"}c["Left ring slot: 40 Mana Regenerated per second"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=40}},nil}c["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}}," per Siphoning Charge"}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: 3% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil}c["Adds 25 to 36 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=36}},nil}c["Right ring slot: 4% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil}c["Right ring slot: You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second"]={nil,"You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second"}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["+2 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=2}}},nil}c["210% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=210}},nil}c["Socketed Gems are Supported by level 12 Lesser Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportLesserMultipleProjectiles"}}},nil}c["Adds 12 to 30 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=30}},nil}c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill"}c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil}c["Purity of Ice Reserves no Mana {variant:9}Clarity Reserves no Mana"]={nil,"Purity of Ice Reserves no Mana {variant:9}Clarity Reserves no Mana"}c["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"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}}," of non-Damaging Ailments per Elder Item Equipped Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-20}},nil}c["350% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=350}},nil}c["18% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-6}},nil}c["8% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=8}}," gained as Mana over 4 seconds when Hit"}c["6 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=6}},nil}c["Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=100}},nil}c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=55}},nil}c["70% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=70}},nil}c["2% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}},nil}c["+100 to Maximum Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"]={nil,"30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"}c["+50% to all Elemental Resistances during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["160% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=160}},nil}c["24% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=24}},nil}c["Regenerate 8 Life over 1 second for each Spell you Cast"]={nil,"Regenerate 8 Life over 1 second for each Spell you Cast"}c["+13% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},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["+30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["2% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["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["12% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil}c["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect"}c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},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["15% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-15}},nil}c["+18% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=18}},nil}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonVoidSphere"}}},nil}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-10},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-10},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-10}},nil}c["Every 10 seconds, gain 100% increased Elemental Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestruction"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item"}c["80% increased Spell Damage if your other Ring is an Elder Item Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=80}}," if your other Ring is an Elder Item Cannot be Stunned by Spells if your other Ring is a Shaper Item"}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=150}},nil}c["80% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=80}}," if your other Ring is an Elder Item"}c["+100 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["6% increased Maximum Life for each Equipped Corrupted Item Corrupted"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}}," for each Equipped Corrupted Item Corrupted"}c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=12},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=12}},nil}c["Minions have 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["28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry"}c["2 Additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["25% chance to create Consecrated Ground when Hit, lasting 8 seconds"]={{}," to create Consecrated Ground when Hit, lasting 8 seconds"}c["Adds 29 to 45 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=29},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=45}},nil}c["25% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["Adds 4 to 12 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},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["Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item"}c["40% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=40}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=80}}," if your other Ring is a Shaper Item Cannot be Stunned by Attacks if your other Ring is an Elder Item"}c["Mana Reservation of Herald Skills is always 45%"]={nil,"Mana Reservation of Herald Skills is always 45%"}c["Adds 32 to 48 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=32},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=48}},nil}c["Adds 4 to 14 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}}}," Elemental Equilibrium "}c["Can Allocate Passives from the Witch's starting point"]={{},nil}c["100% reduced Conductivity Mana Reservation"]={{[1]={[1]={skillName="Conductivity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{}," Maximum Siphoning Charges per Elder or Shaper Item Equipped"}c["Socketed Gems have Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect"]={nil,"Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect"}c["6% chance to Dodge Attacks while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["+50 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=50}}," Total "}c["All Sockets are White"]={nil,"All Sockets are White"}c["14% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"}c["+100% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem All Sockets are White"}c["Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit"}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["+100% to Fire Resistance when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"}c["+1% Chance to Block Attack Damage per 50 Strength"]={{[1]={[1]={div=50,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}," Attack Damage "}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["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["-25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-25}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies"}c["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you"}c["8% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["40% increased Energy Shield from equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Adds 70 to 350 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=350}},nil}c["20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 36 to 360 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=360}},nil}c["25% increased Attack and Cast Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Adds 84 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=84},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Adds 75 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["270% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=270}},nil}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-20}},nil}c["1 Life Regenerated per second per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=1}},nil}c["4% increased Attack Speed with Claws"]={{[1]={flags=16385,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 50 Cold Damage to Melee Attackers"}c["0.4% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["100% increased Mine Arming Speed"]={{}," Arming Speed"}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems"}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["13 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=13}},nil}c["18% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=18}},nil}c["5% increased Damage for each Trap and Mine you have Damage Penetrates 6% Elemental Resistances if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=4096,name="Damage",type="INC",value=5}}," for each and Mine you have Damage Penetrates 6% Elemental Resistances "}c["6% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},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["Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},nil}c["Poison Cursed Enemies on hit"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 75 to 225 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=75},[2]={[1]={type="Condition",var="Unarmed"},flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=225}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=25}},nil}c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=33}},nil}c["40% increased Cold Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["Golems have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil}c["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["50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"}c["Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"}c["Adds an additional Arrow"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["40% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=40}},nil}c["8% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil}c["400% increased Energy Shield Recharge Rate during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=400}},nil}c["Socketed Gems Reserve No Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-100}},nil}c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil}c["80% less Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="MORE",value=-80}},nil}c["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true}},nil}c["Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"}c["Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"}c["Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently {variant:2}200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"]={nil,"400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently {variant:2}200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"}c["Socketed Gems are Supported by level 30 Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportMulticast"}}},nil}c["+50 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=50}},nil}c["Socketed Gems fire an additional Projectile"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}}}},nil}c["+280 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=280}},nil}c["15% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=15}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=325}},nil}c["Adds 35 to 130 Lightning Damage to Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=35},[2]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=130}},nil}c["You have Phasing while affected by Haste"]={nil,"You have Phasing while affected by Haste"}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill"}c["20% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+135 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=135}},nil}c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=40}},nil}c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="vaal",value=2}}},nil}c["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TentacleSmash"}}},nil}c["Cannot be Stunned if you've Killed Recently"]={nil,"Cannot be Stunned if you've Killed Recently"}c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers"}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportConcentratedEffect"}}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["Socketed Golem Skills have 5% Life Regenerated per second"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["Adds 14 to 28 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=14},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=28}},nil}c["20% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["8% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=8}},nil}c["Warcries Knock Enemies Back in an Area"]={nil,"Warcries Knock Enemies Back in an Area"}c["You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect"}c["75% reduced Effect of Chill on You {variant:1}100% increased Ignite Duration on You"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-75}}," of Chill on You {variant:1}100% increased Ignite Duration on You"}c["Adds 10 to 20 Fire Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="FireMax",type="BASE",value=20}},nil}c["25% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["+20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["Chaos Damage does not bypass Energy Shield during effect"]={nil,"Chaos Damage does not bypass Energy Shield during effect"}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil}c["Adds 30 to 95 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=95}},nil}c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="BASE",value=40}}," taken reflected to Attacker"}c["45% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=45}},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["Melee Attacks cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["24% increased Elemental Damage with Attack Skills {variant:2,3,4}Adds 12 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}}," with Attack Skills {variant:2,3,4}Adds 12 to 20 Physical Damage"}c["Adds 15 to 30 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=30}},nil}c["50% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality"}c["Adds 1 to 4 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["50% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["28% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=28}},nil}c["Adds 23 to 40 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=40}},nil}c["+5 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5}},nil}c["Recover 1% of Maximum Life on Kill"]={nil,"Recover 1% of Maximum Life on Kill"}c["+14% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=14}},nil}c["20% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["150% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=150}},nil}c["Gain a Void Charge every 0.5 seconds Elder Item"]={nil,"Gain a Void Charge every 0.5 seconds Elder Item"}c["Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["50% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=40}},nil}c["Adds 25 to 50 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=50}},nil}c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil}c["+35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=35}},nil}c["Adds 1 to 90 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=90}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Adds 1 to 60 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=60}},nil}c["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["28% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=28}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=20}},nil}c["1% of Damage against Shocked Enemies Leeched as Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["When hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["0.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["300% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=300}},nil}c["Adds 1 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["24% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=24}},nil}c["+25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you"}c["Projectiles have 100% additional chance to Pierce targets at the start of their movement, losing this chance as the projectile travels farther"]={{[1]={[1]={ramp={[1]={[1]=10,[2]=1},[2]={[1]=120,[2]=0}},type="DistanceRamp"},flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=100}},nil}c["13% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=13}},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["11% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=11}},nil}c["165% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=165}},nil}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=60}}," with Hits and Ailments against Enemies affected by 3 Spider's Webs"}c["Flasks gain a Charge every 3 seconds"]={nil,"Flasks gain a Charge every 3 seconds"}c["+85 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=85}},nil}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=220}},nil}c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=400}},nil}c["20% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=20}},nil}c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=140}},nil}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers"}c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+53 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=53}},nil}c["+70 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=70}},nil}c["+1 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=1}}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time"}c["10% chance to Fortify on Melee hit 20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify 20% chance to Taunt on Hit You and nearby Allies have 15% increased "}c["45% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["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["+470 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=470}},nil}c["50% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}},nil}c["8% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=8}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-40}}," Reflected "}c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," Attackers for 4 seconds on Block"}c["Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"]={nil,"Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"}c["14% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=14}},nil}c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["20% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["50% chance to avoid Freeze, Shock, Ignite and Bleed while using a Flask"]={{}," to avoid Freeze, Shock, Ignite and Bleed "}c["and your Totems to each gain an Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge"}c["Your Elemental Golems are Immune to Elemental Damage"]={nil,"Your Elemental Golems are Immune to Elemental Damage"}c["Adds 6 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["50% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-50}},nil}c["10% chance to Fortify on Melee hit"]={{}," to Fortify "}c["5% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=5}},nil}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect"}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 35 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["Minions deal 48 to 72 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=48}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=72}}}},nil}c["120% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["-4% to all Resistances for each Equipped Corrupted Item 8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-4},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-4}}," for each Equipped Corrupted Item 8% increased Maximum Energy Shield for each Equipped Corrupted Item"}c["Minions deal 51 to 78 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=51}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}}}},nil}c["Adds 185 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=185},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["30% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=1048576,keywordFlags=0,name="CritChance",type="BASE",value=7}},nil}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse 140% increased Spell Damage"]={nil,"Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse 140% increased Spell Damage"}c["Grants level 15 Vengeance Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Vengeance"}}},nil}c["+100 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=100}},nil}c["Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Elemental Weakness on Blocking a Spell"}c["100% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["+20 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["+18% to Quality"]={{}," Quality"}c["+35% to Cold Damage over Time Multiplier 10% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=35}}," over Time Multiplier 10% increased Attack Speed"}c["70% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=70}},nil}c["+2 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=2}}},nil}c["36% increased Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=16,keywordFlags=0,name="Speed",type="INC",value=36}},nil}c["20% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=140}},nil}c["Adds 1 to 75 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=75}},nil}c["You have Phasing while you have Cat's Stealth"]={nil,"You have Phasing while you have Cat's Stealth"}c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time"}c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=35}}," over Time Multiplier"}c["You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit"}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["Minions have 7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=7}}}},nil}c["22% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=22}},nil}c["4% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},nil}c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil}c["Adds 450 to 575 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=450},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=575}},nil}c["25% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=25}},nil}c["+25 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}},nil}c["100% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=100}},nil}c["Adds 1 to 4 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["50% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["160% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=160}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block"}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil}c["Stun Threshold is based on 500% of your Mana instead of Life"]={nil,"Stun Threshold is based on 500% of your Mana instead of Life"}c["+25% chance to be Poisoned +3% to all maximum Resistances while Poisoned"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=25},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=25}}," to be Poisoned +3% to while Poisoned"}c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["4% increased Cast Speed with Chaos Skills"]={{[1]={flags=16,keywordFlags=128,name="Speed",type="INC",value=4}},nil}c["Socketed Gems are Supported by Level 10 Lesser Poison"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLesserPoison"}}},nil}c["Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="Ignited"},[2]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},"Immune and Chill Damage "}c["10% reduced Character Size"]={{}," Character Size"}c["100% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={nil,"Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"}c["Adds 250 to 350 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=250},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=350}},nil}c["20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify 4% reduced Damage taken from Taunted Enemies"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=20}}," to Taunt on Hit You and nearby Allies have 15% increased 4% reduced Damage taken from Taunted Enemies"}c["Adds 150 to 250 Fire Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=150},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=250}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"}c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge if you Knock an Enemy Back with "}c["Adds 190 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["+3% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["+16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16}},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["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={nil,"You cannot Recharge or Regenerate Energy Shield"}c["30% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="Unknown"}}},nil}c["12 Mana Regenerated per Second while you have Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=12}}," while you have Avian's Flight"}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["50% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-50}},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["10% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-10}},nil}c["+73 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=73}},nil}c["12% increased Minion Damage per Spectre you own"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}," Minion per Spectre you own"}c["40% increased Elemental Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour"}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=20},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["25% increased Poison Duration"]={{[1]={flags=0,keywordFlags=1048576,name="Duration",type="INC",value=25}},nil}c["2% increased Minion Duration per Zombie you own 12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," Minion per you own 12% increased Minion Damage per Spectre you own"}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["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit"}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["70% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=70}},nil}c["50% increased Damage if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Nearby Enemies have 18% increased Effect of Curses on them"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=18}}}},nil}c["+6% chance to Block Spell Damage 180% increased Armour and Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=6}}," Damage 180% increased Armour and Energy Shield"}c["15% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["120% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportControlledDestruction"}}},nil}c["4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}," Attack Damage "}c["20% Chance to Block Attack Damage while wielding a Staff {variant:1,2}4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," Attack Damage {variant:1,2}4% Chance to Block Attack Damage "}c["Has an additional Implicit Mod"]={nil,"Has an additional Implicit Mod"}c["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"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}}," per Siphoning Charge Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"}c["0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}}," per Siphoning Charge"}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge 0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReductionLifeLeech",type="BASE",value=1}}," from Hits per Siphoning Charge 0.2% of Damage per Siphoning Charge"}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," from Hits per Siphoning Charge"}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageGainAsChaos",type="BASE",value=4}}," Non- per Siphoning Charge"}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}}," per Siphoning Charge Gain 4% of Non- as extra Chaos Damage per Siphoning Charge"}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={flags=2,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain a Siphoning Charge when you use a Skill Adds 14 to 16 to Attacks and s per Siphoning Charge"}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill"}c["20% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=20}},nil}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 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"}c["Socketed Gems are Supported by level 10 Remote Mine"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRemoteMine"}}},nil}c["Trigger level 20 Storm Cascade when you Attack"]={nil,"Trigger level 20 Storm Cascade when you Attack"}c["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage"}c["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of"}c["Enemies you kill are Shocked"]={nil,"Enemies you kill are Shocked"}c["-1 Dexterity per 1 Dexterity on Allocated Passives in Radius +15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"]={{[1]={[1]={div=1,stat="Dex",type="PerStat"},[2]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=-1}}," on Allocated Passives in Radius +15 to Maximum Mana on Unallocated Passives in Radius"}c["260% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=260}},nil}c["10% increased Accuracy Rating with Bows"]={{[1]={flags=8192,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Socketed Gems are Supported by level 15 Increased Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportMinionLife"}}},nil}c["+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["5% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}}," against Maimed Enemies"}c["+1 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=1}}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance"}c["18% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=160}},nil}c["50% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil}c["50% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["Projectiles Pierce while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=100}},nil}c["You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenOverTime",type="INC",value=-10}},nil}c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee"}c["100 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Nearby Allies have 4% increased Defences per 100 Strength you have Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Str",type="PerStat"},[2]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Defences",type="INC",value=4},onlyAllies=true}}}," you have Nearby Allies have +7% to Critical Strike Multiplier you have"}c["125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=125}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil}c["300% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=300}},nil}c["10% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=10}},nil}c["40% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Adds 90 to 240 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=90},[2]={[1]={type="Condition",var="Unarmed"},flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=240}},nil}c["Damage Penetrates 25% Lightning Resistance if you've"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=25}}," if you've"}c["+40 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=40}},nil}c["20% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=20}},nil}c["+2 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},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["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=15}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=30}},nil}c["Cannot be Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100}},nil}c["14% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web 50% increased Aspect of the Spider Debuff Duration"]={nil,"Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web 50% increased Aspect of the Spider Debuff Duration"}c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={nil,"Aspect of the Spider can inflict Spider's Web on Enemies an additional time"}c["+28% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=28}},nil}c["Lose 7% of maximum Mana per Second"]={nil,"Lose 7% of maximum Mana per Second"}c["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant"}c["+1 to Melee Weapon and Unarmed range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire"}c["Lose 40 Mana per Second"]={nil,"Lose 40 Mana per Second"}c["4% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=4}},nil}c["+1 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=1}}},nil}c["+8% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["+25% chance to be Ignited 125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to be Ignited 125 Regenerated per second "}c["+500 to Accuracy against Bleeding Enemies Attacks always inflict Bleeding while you have Cat's Stealth"]={{}," Accuracy Attacks always inflict Bleeding while you have Cat's Stealth"}c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies"}c["+325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["23% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=23}},nil}c["+140 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=140}},nil}c["Totems are Immune to Fire Damage"]={nil,"Totems are Immune to Fire Damage"}c["13% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=13}},nil}c["Projectiles Fork"]={nil,"Projectiles Fork"}c["every 10 Intelligence on Allocated Passives in Radius"]={nil,"every 10 Intelligence on Allocated Passives in Radius"}c["Adds 25 to 50 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=55}},nil}c["25% increased effect of Fortify on You"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=25}},nil}c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["You can't deal Damage with Skills yourself"]={nil,"You can't deal Damage with Skills yourself"}c["100% reduced Arctic Armour Mana Reservation"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Socketed Gems are Supported by level 13 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=13,skillId="SupportFasterAttack"}}},nil}c["60% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=60}},nil}c["50% increased Elemental Ailment Duration on You You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You You are Immune to Bleeding"}c["3% of Life Regenerated per second during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You"}c["3% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus"}c["+2 Life Gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["You have Fortify"]={{[1]={flags=0,keywordFlags=0,name="Condition:Fortify",type="FLAG",value=true}},nil}c["Adds 1 to 80 Chaos Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=80}},nil}c["100 Life Regenerated per Second while you have Avian's Flight 12 Mana Regenerated per Second while you have Avian's Flight"]={{}," while you have Avian's Flight"}c["30% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["8% increased Accuracy Rating with Staves"]={{[1]={flags=131072,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["Adds 28 to 45 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=28},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=45}},nil}c["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportDebilitate"}}},nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath {variant:52}40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}}," while affected by{variant:52}40% of Physical Damage Converted to Lightning Damage while affected by Wrath"}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground"}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["12% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Unaffected by Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["+50% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["40% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=40}},nil}c["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["Adds 18 to 28 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=18},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=28}},nil}c["1% increased Damage per 5 of your lowest Attribute"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}," per 5 of your lowest Attribute"}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength +20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}}," to Avoid interruption from Stuns while Casting +20 to +20 to Dexterity"}c["50% increased Mine Arming Speed Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={{}," Arming Speed Skills which Place Mines place up to 1 additional Mine "}c["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["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["Adds 35 to 70 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=70}},nil}c["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["16% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=13}},nil}c["4% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["220% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=220}},nil}c["+1 second to Summon Skeleton Cooldown"]={{}," second to Summon Skeleton Cooldown"}c["Enemy you've Killed Recently"]={nil,"Enemy you've Killed Recently"}c["12 to 14 Cold Damage per Frenzy Charge"]={nil,"12 to 14 Cold Damage per Frenzy Charge"}c["+45% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified"}c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil}c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["+35% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["Cannot be Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.2}},nil}c["2% of Life Regenerated Per Second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["275% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=275}},nil}c["25% chance to gain a Power Charge on Critical Strike 6% reduced Mana Reserved"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ManaReserved",type="BASE",value=25}}," to gain a Power Charge 6% reduced "}c["Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"}c["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge"}c["+120 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=120}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=13}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["2% of Energy Shield regenerated per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil}c["+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}}," while you do not have Avatar of Fire"}c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas"}c["15% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=15}},nil}c["140 Life Regenerated per Second while affected by Vitality"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=140}}," while affected by Vitality"}c["You gain an Endurance Charge on use {variant:1}100% increased Charges used"]={nil,"You gain an Endurance Charge on use {variant:1}100% increased Charges used"}c["35% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=35}},nil}c["23% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=23}},nil}c["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["+6% chance to Block Spell Damage {variant:1,2}+100 to maximum Mana"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=6}}," Damage {variant:1,2}+100 to maximum Mana"}c["8% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=8}},nil}c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted"}c["25% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=25}},nil}c["7% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},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}},nil}c["+180 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=180}},nil}c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"}c["+100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}},nil}c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to"}c["+13 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=13}},nil}c["+25 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}}," while affected by Wrath"}c["You and nearby allies have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["+45% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}}," against Enemies that are affected"}c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil}c["8% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=8}},nil}c["20% chance to gain an Endurance Charge when you are Hit +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=20}}," to gain an Endurance Charge when you are Hit +1 to "}c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireResistAura"}}},nil}c["140 Life Regenerated per Second while affected by Vitality {variant:47}30 Life gained for each Enemy Hit while affected by Vitality"]={{[1]={[1]={skillName="Vitality",type="SkillName"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=140}}," while affected by{variant:47}30 gained for each Enemy Hit while affected by Vitality"}c["Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"}c["20% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits is "}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"}c["Trigger Level 20 Glimpse of Eternity when Hit"]={nil,nil}c["10% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap"}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill while affected by Clarity"}c["6% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=4,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=110}},nil}c["Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge"]={nil,"Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge"}c["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["0.5% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=-3}},nil}c["150% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=150}},nil}c["8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=15}},nil}c["+200 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=200}},nil}c["20% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped"}c["65% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=65}},nil}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}}," Character Size 6% increased "}c["+26% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=26}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=18}},nil}c["Damage Penetrates 15% Cold Resistance while affected by Hatred {variant:28}40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15}}," while affected by{variant:28}40% of Physical Damage Converted to Cold Damage while affected by Hatred"}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=9}},nil}c["+175 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=175}},nil}c["Cannot Be Slowed to Below Base Speed"]={{[1]={flags=0,keywordFlags=0,name="ActionSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["Fire Skills have 20% chance to Poison on Hit"]={nil,"Fire Skills have 20% chance to Poison on Hit"}c["1% increased Movement Speed per 600 Evasion Rating, up to 75% -40 Physical Damage taken when hit by Animals"]={{[1]={[1]={div=600,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}}," , up to 75% -40 Physical Damage taken when hit by Animals"}c["15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["3% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["15% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["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["+20 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=20}},nil}c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="ColdResistAura"}}},nil}c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"}c["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+2 seconds to Cat's Stealth Duration Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="BASE",value=2}}," seconds to Cat's Stealth Gain up to your maximum number ofand Power Charges when you gain Cat's Stealth"}c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-65}},nil}c["Adds 2 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-30}},nil}c["15% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=15}},nil}c["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["-4% to all Resistances for each Equipped Corrupted Item"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-4},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-4}}," for each Equipped Corrupted Item"}c["40% increased Damage when not on Low Life"]={{[1]={[1]={neg=true,type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.2}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"}c["8% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["Skills from your Helmet Penetrate 20% Elemental Resistances"]={{[1]={[1]={slotName="Helmet",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=20}}}},nil}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["170% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=170}},nil}c["6% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=20}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["20% increased Poison Duration"]={{[1]={flags=0,keywordFlags=1048576,name="Duration",type="INC",value=20}},nil}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill"}c["+40 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil}c["20% chance to create a Smoke Cloud when you place a Mine or throw a Trap 5% increased Damage for each Trap and Mine you have Damage Penetrates 6% Elemental Resistances if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="Damage",type="BASE",value=20}}," to create a Smoke Cloud when you place a or throw a Trap 5% increased for each Trap and Mine you have Damage Penetrates 6% Elemental Resistances "}c["Adds 90 to 345 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=345}},nil}c["Cannot Knock Enemies Back"]={{[1]={flags=0,keywordFlags=0,name="CannotKnockback",type="FLAG",value=true}},nil}c["10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect"]={nil,"Your Critical Strikes do not deal extra Damage during Flask effect"}c["3% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=3}},nil}c["5% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}c["Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Enemies Ignited by you during Flask Effect take 10% increased Damage"}c["Traps and Mines deal 5 to 15 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=15}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=12}},nil}c["+40 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["12% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={nil,"Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"}c["10% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=10}},nil}c["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Your Cold Damage can Poison {variant:3}Your Lightning Damage can Poison"]={nil,"Your Cold Damage can Poison {variant:3}Your Lightning Damage can Poison"}c["20% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Gain a Power Charge after spending a total of 200 Mana"]={nil,"Gain a Power Charge after spending a total of 200 Mana"}c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+50 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["100% increased Ignite Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You"}c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={nil,"150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level"}c["+24% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=24}},nil}c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=100}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["80% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-80}},nil}c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Gain a Void Charge every 0.5 seconds"]={nil,"Gain a Void Charge every 0.5 seconds"}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=100}},"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["250% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=250}},nil}c["Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={nil,"Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges"}c["Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage Enemies you Curse take 10% increased Damage"]={nil,"Cursed Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage Enemies you Curse take 10% increased Damage"}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your"}c["Adds 15 to 33 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=33}},nil}c["500% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=500},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=500},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=500}},nil}c["170% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=170}},nil}c["Gain 100 Life when an Endurance Charge expires or is consumed"]={nil,"Gain 100 Life when an Endurance Charge expires or is consumed"}c["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit"}c["3% increased Attack Speed with Claws"]={{[1]={flags=16385,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=5}}," per Shaper Item Equipped Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"}c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"}c["50% reduced Reflected Physical Damage taken 20% more Damage if you've Killed Recently 15% increased Area of Effect of Area Skills if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Condition",var="KilledRecently"},flags=512,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-50}}," Reflected 20% more Damage 15% increased of Effect of Area Skills "}c["50% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["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["Curses on Slain Enemies are transferred to a nearby Enemy"]={nil,"Curses on Slain Enemies are transferred to a nearby Enemy"}c["Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"}c["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen"}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["16% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["120% increased Critical Strike Chance against Enemies affected by Elemental Status Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=4,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["15% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=15},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=15}},nil}c["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["Spell Skills deal no Damage"]={nil,"Spell Skills deal no Damage"}c["Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Green Sockets have +10% to Quality"}c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}}," for each Equipped Corrupted Item"}c["Vaal Skills deal 100% increased Damage during effect"]={nil,"Vaal Skills deal 100% increased Damage during effect"}c["Never deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}},nil}c["Elemental Status Effects caused by your Skills spread to other nearby Enemies Radius: 12"]={nil,"Elemental Status Effects caused by your Skills spread to other nearby Enemies Radius: 12"}c["6% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=6}},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["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["+500 to Accuracy against Bleeding Enemies"]={{}," Accuracy "}c["15% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit"}c["10% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+20 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["20% more chance to Evade while on full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="MORE",value=20}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Reflects 4 Physical Damage to Melee Attackers"]={{},nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial"}c["Take 8% reduced Elemental Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-8}},nil}c["Socketed Gems have Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain: Marauder: Melee Skills have 15% increased Area of Effect"]={nil,"While your Passive Skill Tree connects to a class' Starting location, you gain: Marauder: Melee Skills have 15% increased Area of Effect"}c["75% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=75}},nil}c["50% increased Herald of Ice Damage"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["15% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["100% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=100}},nil}c["22% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=22}},nil}c["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike"}c["Adds 2 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["Grace Reserves no Mana"]={nil,"Grace Reserves no Mana"}c["30% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=30}},nil}c["30% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["8% chance to Dodge Spells while affected by Haste {variant:22}You gain Onslaught for 4 seconds on Kill while affected by Haste"]={{[1]={[1]={skillName="Haste",type="SkillName"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}}," while affected by{variant:22}You gain Onslaught for 4 seconds on Kill while affected by Haste"}c["+10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}},nil}c["10% chance to Fortify on Melee hit 20% chance to Taunt on Hit You and nearby Allies have 15% increased damage while you have Fortify 4% reduced Damage taken from Taunted Enemies"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify 20% chance to Taunt on Hit You and nearby Allies have 15% increased 4% reduced Damage taken from Taunted Enemies"}c["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=8192,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["Minions have 8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}}}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy"}c["Adds 7 to 25 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["20% chance to Avoid Projectiles while Phasing You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="Phasing"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid You have Phasing "}c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=4,keywordFlags=0,name="Damage",type="INC",value=80}}," with Hits and Ailments "}c["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["You have Onslaught while not on Low Mana"]={nil,"You have Onslaught while not on Low Mana"}c["You have Resolute Technique while you do not have Elemental Overload"]={nil,"You have Resolute Technique while you do not have Elemental Overload"}c["Adds 5 to 12 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["50% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-50}},nil}c["5% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=5}},nil}c["7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level"]={nil,"7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level"}c["Adds 13 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=10}},nil}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["Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"}c["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["Adds 12 to 15 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=15}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["13% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-13}},nil}c["14% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=14}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy"}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline {variant:16}40% faster start of Energy Shield Recharge while affected by Discipline"]={{}," while affected by{variant:16}40% faster while affected by Discipline"}c["+20 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=20}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life"}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use"}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"}c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention"}c["Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 100% of Energy Shield"}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Adds 56 to 78 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}},nil}c["10% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}c["Adds 10 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["16% increased Physical Weapon Damage per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun"}c["70% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=70}},nil}c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["Leech applies instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit"}c["18% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["14% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=14}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit"}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect {variant:3}{crafted}30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits is {variant:3}{crafted}30% increased Rarity of Items found "}c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil}c["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=5}},nil}c["No Life Recovery Applies during Flask effect"]={nil,"No Life Recovery Applies during Flask effect"}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"}c["8% reduced Damage Taken for 4 seconds after spending 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," for 4 seconds after spending 200 Mana"}c["50% less Damage to surrounding targets"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-50}}," to surrounding targets"}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["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect"}c["20% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}},nil}c["Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of"}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=280}},nil}c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil}c["You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken"}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=120}},nil}c["45% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["13% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-13}},nil}c["+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["+50 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=50}},nil}c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil}c["+175 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=175}},nil}c["Iron Reflexes"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred {variant:26}+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}}," while affected by{variant:26}+1.8% to while affected by Hatred"}c["Projectiles Pierce 5 additional Targets while you have Phasing Celestial Footprints"]={nil,"Projectiles Pierce 5 additional Targets while you have Phasing Celestial Footprints"}c["Attacks always inflict Bleeding while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Bleeding Enemies"]={nil,"Attacks always inflict Bleeding while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Bleeding Enemies"}c["You have Onslaught while on full Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=25}}," when on Low Mana"}c["+10 Life Gained on Killing Ignited Enemies 25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies 25% reduced Ignite Duration "}c["5% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=5}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=460}},nil}c["140% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=140}},nil}c["Adds 23 to 83 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=83}},nil}c["+20 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["8% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil}c["15% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil}c["Gain Chilling Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[3]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[4]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil}c["24% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Debuffs on you expire 20% faster"]={nil,"Debuffs on you expire 20% faster"}c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage"}c["90% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=90}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["12% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["30% increased Damage against Rare and Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=4,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["4% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=4},[2]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil}c["Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"]={nil,"Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil}c["+30% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["25% chance to Poison on Hit against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use"}c["30% increased Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},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["15% increased Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies"}c["Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy"}c["12% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["12% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=12}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=29}}," while you have a Bestial Minion"}c["Adds 10 to 23 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=23}},nil}c["30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["5% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["10% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["80% increased Critical Strike Chance during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"}c["Cannot be Frozen if Dexterity is higher than Intelligence Cannot be Ignited if Strength is higher than Dexterity"]={nil,"Cannot be Frozen if Dexterity is higher than Intelligence Cannot be Ignited if Strength is higher than Dexterity"}c["Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you have a matching Golem"]={nil,"Gain Elemental Conflux for 4 seconds when you Kill a Rare or Unique Enemy 30% increased Damage of each Damage Type for which you have a matching Golem"}c["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Arrows Pierce all Targets"]={nil,"Arrows Pierce all Targets"}c["1% increased Fire Damage per 20 Strength"]={{[1]={[1]={div=20,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=1}},nil}c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-10}},nil}c["You are Shocked during Flask effect"]={nil,"You are Shocked during Flask effect"}c["10% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back"}c["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedChaosDamage"}}},nil}c["+23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"}c["20% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=20}},nil}c["Adds 22 to 35 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["+30 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=30}},nil}c["10% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time"}c["Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Enemies cannot deal Critical Strikes"}c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Minions have +5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=5}}}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"}c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil}c["15% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"]={nil,"2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"}c["92% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=92}},nil}c["-5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5}},nil}c["15% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["30% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["+24 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["+100 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100}},nil}c["+45% to Critical Strike Multiplier against Enemies that are affected by Elemental Status Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=3}},nil}c["1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=1}}," per Abyss Jewel affecting you"}c["50% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=50}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}},nil}c["+6% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=6}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=20}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},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["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage."}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked"}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={nil,"400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}c["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use"}c["No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered"]={nil,"No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered"}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies"}c["30% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-30}},nil}c["+1 Energy Shield gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill "}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit {variant:1}Attacks Cause Bleeding when Hitting Cursed Enemies"]={{}," to Curse Enemies with level 10on Hit {variant:1}Attacks Cause Bleeding when Hitting Cursed Enemies"}c["60% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["40% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=40}},nil}c["15% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=15}},nil}c["Counts as all One Handed Melee Weapon Types"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsAll1H",value=true}}},nil}c["+2 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=2}}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"}c["Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire"}c["Damage Penetrates 2% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=2}},nil}c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=40}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["10% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike"}c["Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"}c["Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}}," while affected by Anger"}c["650% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=650}},nil}c["4% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-4}},nil}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=340}},nil}c["8 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},nil}c["Adds 7 to 15 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=15}},nil}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=6}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"}c["+10 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=65}},nil}c["24% increased Elemental Damage with Attack Skills {variant:1,2,3,4}Adds 40 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}}," with Attack Skills {variant:1,2,3,4}Adds 40 to 60 Cold Damage"}c["35% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=35}},nil}c["Grants all bonuses of Unallocated Small Passive Skills in Radius"]={nil,"Grants all bonuses of Unallocated Small Passive Skills in Radius"}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=180}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies"}c["4% increased Damage per Enemy Killed by you or your Totems Recently"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=4}}," per Enemy Killed by you or your s Recently"}c["60% reduced Mana Cost of Totem Skills that cast an Aura Corrupted"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," of Skills that cast an Aura Corrupted"}c["160% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=160}},nil}c["240% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=240}},nil}c["Enemies affected by at least 5 Poisons"]={nil,"Enemies affected by at least 5 Poisons"}c["Flasks gain a Charge every 3 seconds 20% chance for your Flasks to not consume Charges"]={nil,"Flasks gain a Charge every 3 seconds 20% chance for your Flasks to not consume Charges"}c["25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit"}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["Auras you Cast grant 0.2% of Maximum Life Regenerated per second to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}},nil}c["Skills from your Boots Leech 2% of Damage as Life"]={{[1]={[1]={slotName="Boots",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=2}}}},nil}c["10% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["Cannot inflict Ignite"]={nil,"Cannot inflict Ignite"}c["12% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["15% chance to gain a Frenzy Charge when you Stun an Enemy"]={{}," to gain aCharge when you Stun an Enemy"}c["4% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=4096,name="ElementalPenetration",type="BASE",value=10}},nil}c["Grants Summon Harbinger of Brutality Skill 5% Chance to Block"]={nil,"Grants Summon Harbinger of Brutality Skill 5% Chance to Block"}c["50% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=50}},nil}c["Socketed Gems are Supported by Level 20 Greater Volley"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="UniqueSupportGreaterVolley"}}},nil}c["20% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+15% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={nil,"deal 100 to 200 added Fire Damage to Bleeding Enemies"}c["Golems have 20% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}c["20% increased Onslaught duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Onslaught "}c["2% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=2}},nil}c["+500 to Zombie maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}}}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=10}}," to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased "}c["+12% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["30% increased Zombie Resistances 25% increased Zombie Size"]={{}," Resistances 25% increased Zombie Size"}c["Adds 80 to 180 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=180}},nil}c["3% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["Gain 25% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=25}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken"}c["You can't deal Damage with Skills yourself Can have up to 1 additional Totem summoned at a time"]={nil,"You can't deal Damage with Skills yourself Can have up to 1 additional Totem summoned at a time"}c["0.5% of Attack Damage Leeched as Mana against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=5,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.5}},nil}c["200 Cold Damage taken per second per Frenzy Charge while moving Elder Item"]={nil,"200 Cold Damage taken per second per Frenzy Charge while moving Elder Item"}c["Purity of Elements Reserves no Mana {variant:12}Purity of Lightning Reserves no Mana"]={nil,"Purity of Elements Reserves no Mana {variant:12}Purity of Lightning Reserves no Mana"}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["30% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=30}},nil}c["24% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["17 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=17}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill"}c["Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"]={nil,"Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"}c["Adds 40 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["Creates Consecrated Ground on Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike"}c["+45% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["40% increased Damage if you've taken no Damage from Hits Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use"}c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}}," and Energy Shield"}c["15% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-15}},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=25}},nil}c["Blood Magic"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Blood Magic"}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Full Life 100% increased Stun Duration against Enemies that are on Low Life"}c["Arrow Dancing"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arrow Dancing"}},nil}c["25% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Adds 53 to 76 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=76}},nil}c["15% increased Physical Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["+100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem"}c["25% increased Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["50% reduced Duration of Curses on you {variant:3}10% additional Block chance while not Cursed"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you {variant:3}10% additional Block chance while not Cursed"}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element"}c["+400 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=400}},nil}c["+170 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=170}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=0}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}c["Raging Spirits' Hits always Ignite"]={nil,"Raging Spirits' Hits always Ignite"}c["100% increased Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you"}c["8% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Enemy you've Killed Recently Cannot Be Stunned while on Full Energy Shield"]={nil,"Enemy you've Killed Recently Cannot Be Stunned while on Full Energy Shield"}c["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently 2% increased Attack and Cast Speed for each corpse consumed recently"]={nil,"Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently 2% increased Attack and Cast Speed for each corpse consumed recently"}c["6% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["12% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["70% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["50% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=65536,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil}c["80% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["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["8% chance to Block while affected by Determination {variant:10}8% additional Physical Damage Reduction while affected by Determination"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}}," while affected by{variant:10}8% additional Physical Damage Reduction while affected by Determination"}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike"}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=225}},nil}c["Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Energy Shield on Kill"}c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["1.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.2}},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["Purity of Lightning Reserves no Mana {variant:13}Wrath Reserves no Mana"]={nil,"Purity of Lightning Reserves no Mana {variant:13}Wrath Reserves no Mana"}c["Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets Skills fire an additional Projectile"]={nil,"Projectiles gain Damage as they travel further, dealing up to 30% increased Damage to targets Skills fire an additional Projectile"}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=60}}," with Hits and Ailments against Enemies affected by 3 Spider's Webs Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"}c["Nearby Allies' Damage with Hits is Lucky"]={nil,"Nearby Allies' Damage with Hits is Lucky"}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["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}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["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["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"}c["50% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=50}},nil}c["20% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["20% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=20}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies"}c["+36% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=36}},nil}c["+600 Strength and Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=600},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=600}}," Requirement"}c["5% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=1,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=1,keywordFlags=0,name="FireMax",type="BASE",value=7}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}},nil}c["Immunity to Ignite during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["8% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}c["30% increased Elemental Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["8% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=20}}," to double "}c["35% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["Adds 173 to 213 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=173},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=213}},nil}c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil}c["24% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["You Cannot Be Shocked While Frozen"]={nil,"You Cannot Be Shocked While Frozen"}c["18% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=18}},nil}c["4% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=18}},nil}c["+10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=12}}," while affected by Purity of Elements"}c["You and your Minions have 4% Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}}},nil}c["100% of Block Chance applied to Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=100}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill"}c["100% increased Stun Duration against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=4,keywordFlags=0,name="EnemyStunDuration",type="INC",value=100}},nil}c["+17 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=250}},nil}c["Left ring slot: Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times"}c["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ClawAttackSpeedAppliesToUnarmed",type="FLAG",value=true}},nil}c["235% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=235}},nil}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=8}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"}c["You can apply an additional Curse"]={nil,"You can apply an additional Curse"}c["Adds 36 to 50 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=36},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["30% increased Physical Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["10% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill "}c["20% increased Arrow Speed"]={{[1]={flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["Cannot be Blinded 25% chance to create a Smoke Cloud when Hit"]={nil,"Cannot be Blinded 25% chance to create a Smoke Cloud when Hit"}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["+190 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=190}},nil}c["Recover 60 Life when you Ignite an Enemy"]={nil,"Recover 60 Life when you Ignite an Enemy"}c["+10 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit"]={nil,"Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit"}c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill is "}c["25% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks {variant:1}120% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=188},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=262}}," to Bow Attacks {variant:1}120% increased "}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire"}c["Auras you Cast grant +1% Physical Damage Reduction to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}}},nil}c["+1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["Cannot be Poisoned"]={nil,"Cannot be Poisoned"}c["130% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="CritChance",type="INC",value=130}},nil}c["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=15}},nil}c["10% increased Scorching Ray beam length"]={{},"beam length"}c["30% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=30}},nil}c["20% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=20}},nil}c["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"}c["Projectiles from Attacks have 20% 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"]={nil,"Projectiles from Attacks have 20% 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"}c["Cannot be Stunned while Leeching"]={nil,"Cannot be Stunned while Leeching"}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["Golems have 100% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["113% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=113}},nil}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."}c["30% chance to Avoid being Frozen during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death"}c["+120 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=120}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield +5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={div=5,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," per 5 Armour on Equipped Shield +5 to Armour on Equipped Shield"}c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Hits with this Weapon always inflict Elemental Ailments"]={nil,"Hits with this Weapon always inflict Elemental Ailments"}c["Your Lightning Damage can Freeze but not Shock"]={{[1]={flags=0,keywordFlags=0,name="LightningCanFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="LightningCannotShock",type="FLAG",value=true}},nil}c["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["Culling Strike 30% increased Damage against Rare and Unique Enemies"]={nil,"Culling Strike 30% increased Damage against Rare and Unique Enemies"}c["Trigger a Socketed Spell when you Use a Skill"]={nil,"Trigger a Socketed Spell when you Use a Skill"}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["Enemies on Consecrated Ground you create during Effect take 10% increased Damage"]={nil,"Enemies on Consecrated Ground you create during Effect take 10% increased Damage"}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={nil,"Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"}c["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["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["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"]={nil,"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"}c["+18% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=18}},nil}c["Totems gain +10% to all Elemental Resistances"]={nil,"Totems gain +10% to all Elemental Resistances"}c["50% chance to be inflicted with Bleeding when Hit by an Attack Gore Footprints"]={{}," to be inflicted with Bleeding when Hit by an Attack Gore Footprints"}c["Adds 1 to 53 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=53}},nil}c["25% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=25}},nil}c["Your Hits can't be Evaded by Blinded Enemies Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="FirePenetration",type="BASE",value=10}},"Your Hits can't be Evaded by Blinded Enemies "}c["+15 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you"}c["Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}}," while you have a Bestial Minion"}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["8% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["15% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["25% chance on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground"}c["30% increased Damage when you have no Energy Shield {variant:2}100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield {variant:2}100% increased Armour when you have no Energy Shield"}c["3% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["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["12% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil}c["Grants level 20 Summon Bestial Ursa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialUrsa"}}},nil}c["Minions deal 1% increased Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}}},nil}c["Purity of Fire Reserves no Mana"]={nil,"Purity of Fire Reserves no Mana"}c["15% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["3% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike 30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}," to gain a Flask Charge when you deal a Critical Strike 30% increased "}c["Life Regeneration is applied to Energy Shield instead"]={{[1]={flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["20% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["Minions have 100% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["15% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["Perfect Agony"]={nil,"Perfect Agony"}c["7% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=7},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=7},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect"}c["+80 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=80}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby {variant:3}{crafted}6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=22}}," while a Rare or Unique Enemy is Nearby {variant:3}{crafted}6% increased Damage "}c["30% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10}},nil}c["You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each "}c["100% increased Accuracy Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,nil}c["12% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=12}},nil}c["3% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["20% increased Mana Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=20}},nil}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,keywordFlags=0,name="PhysicalDamage",type="MORE",value=700}},nil}c["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["You cannot be Hindered"]={nil,"You cannot be Hindered"}c["Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=15}}," for each Spider's Web on the Enemy"}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire"}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect"}c["25% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=25}}," to Taunt on Hit 6% reduced "}c["15% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Recover 20% of your Maximum Life on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage"}c["Minion Instability"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Minion Instability"}},nil}c["20% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["+40% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["75% chance to cause Enemies to Flee on use {variant:1}100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="BASE",value=75}}," to cause Enemies to Flee on use {variant:1}100% increased "}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"}c["Adds 260 to 285 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=260},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=285}},nil}c["+15 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}},nil}c["Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice"]={nil,"Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice"}c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["1% increased Maximum Life per Abyss Jewel affecting you"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=1}}," per Abyss Jewel affecting you"}c["259% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=259}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed"}c["Minions have 2% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}}}},nil}c["Minions deal 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=15}},nil}c["Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire"}c["+5% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="BASE",value=5}},nil}c["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil}c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit"}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["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more 10% reduced Physical Damage taken while at maximum Endurance Charges"}c["Adds 12 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["When used in the Synthesiser, the new item will have an additional Herald Modifier"]={nil,"When used in the Synthesiser, the new item will have an additional Herald Modifier"}c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["Wrath Reserves no Mana {variant:14}Envy Reserves no Mana"]={nil,"Wrath Reserves no Mana {variant:14}Envy Reserves no Mana"}c["50% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently"]={nil,"Desecrate creates 2 additional Corpses 40% increased Damage if you have consumed a corpse recently"}c["+20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["22% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=22}},nil}c["14% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["+30 to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["Items and Gems have 50% increased Attribute Requirements Chaos Damage can Ignite, Chill and Shock"]={nil,"Items and Gems have 50% increased Attribute Requirements Chaos Damage can Ignite, Chill and Shock"}c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="BloodOffering"}}},nil}c["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=10}},nil}c["26% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=26}},nil}c["8% increased Physical Damage for each Hit you've Blocked Recently"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each Hit you've Blocked Recently"}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom"}c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Chilled Ground"}c["Adds 16 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["25% chance to Poison on Hit during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["Gain 14% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=14}},nil}c["+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Cold and s"}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=40}},nil}c["10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["12% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=12}},nil}c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["5% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=5}},nil}c["Adds 15 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=40}},nil}c["+90 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=90}},nil}c["28% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=28}},nil}c["+4% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=4}}," Damage"}c["200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire"}c["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["60% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["+25 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=25}},nil}c["20% reduced Mana Cost of Skills during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},nil}c["35% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=35}},nil}c["Your Golems are aggressive"]={nil,"Your Golems are aggressive"}c["90% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=90}},nil}c["Your Lightning Damage can Poison"]={nil,"Your Lightning Damage can Poison"}c["70 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=70}},nil}c["Attack Projectiles Return to You after hitting targets"]={nil,"Attack Projectiles Return to You after hitting targets"}c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["Damage Penetrates 3% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=3}},nil}c["60% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=60}},nil}c["32% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=32}},nil}c["Adds 20 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=30}},nil}c["13% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=13}},nil}c["Adds 21 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=33}},nil}c["30% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={actor="enemy",type="ActorCondition",var="Maimed"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["220% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=220}},nil}c["80% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=80}},nil}c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageConvertToFire",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=50}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil}c["+6% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=6},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=6},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=6}},nil}c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=18},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=56}},nil}c["20% increased Physical Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["+8 Mana gained when you Block 4% additional Chance to Block with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block 4% additional Chance to Block "}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["Adds 85 to 160 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=160}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=14}},nil}c["8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}},nil}c["40% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["Adds 1 to 13 Lightning Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=13}},nil}c["13% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["7% Global chance to Blind Enemies on hit"]={nil,"7% Global chance to Blind Enemies on hit"}c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-25}},nil}c["Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems"]={nil,"Your Elemental Golems are Immune to Elemental Damage 100% increased Effect of Buffs granted by your Elemental Golems"}c["Adds 55 to 75 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=55},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=75}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["Reflects 44 Physical Damage to Attackers on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block"}c["10% increased Skeleton Cast speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}," Skeleton "}c["All Attacks with this Weapon are Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="CritChance",value=100}}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"}c["50% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=50}},nil}c["10% chance to gain a Power Charge on Hit against Enemies that are on Full Life"]={{}," to gain a Power Charge on Hit "}c["No Block Chance"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type="LIST",value={key="BlockChance",value=0}}},nil}c["8% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=8}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You"}c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true}},nil}c["Socketed Gems have 10% increased Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}}}},nil}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems"}c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-30}},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["60% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["50% chance on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground"}c["Damage Penetrates 2% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=2}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use"}c["60% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=12}},nil}c["-15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-15}},nil}c["50% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=50}},nil}c["Adds 10 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=35}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill"}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends"}c["Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"}c["Minions have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["18% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=18}},nil}c["Adds 30 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy"}c["-25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-25}},nil}c["30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark"}c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=180}},nil}c["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil}c["30% increased Elemental Damage with Attack Skills 12% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}}," with Attack Skills 12% increased Dexterity"}c["Socketed Gems are Supported by level 10 Cast When Stunned"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCastOnStunned"}}},nil}c["Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"]={nil,"Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"}c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},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["10% of Wand Physical Damage Added as Cold Damage"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["125% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=125}},nil}c["180% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=180}},nil}c["+12% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12}},nil}c["Melee Critical Strikes cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["+125 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=125}},nil}c["10% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"}c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}c["5% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["25% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={nil,"Projectile Attack Skills have 60% increased Critical Strike Chance"}c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil}c["+21 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=21},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=21}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}}," while there is a Rare or Unique Enemy Nearby"}c["50% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=30}},nil}c["+6 to Maximum Life per Elder Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=6}}," per Elder Item Equipped"}c["-10 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-10}},nil}c["9% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["10% increased Accuracy Rating with Maces"]={{[1]={flags=65536,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["25% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-25}},nil}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground"}c["20% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["Minions deal 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["30% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=30}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=6}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-40}},nil}c["Adds 36 to 102 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=102}},nil}c["Adds 103 to 245 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=103},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=245}},nil}c["8% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["100% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["1% increased Attack Speed per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=100}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["50% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-50}}," Maximum Recovery per Leech"}c["20% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["15% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=15}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=45}},nil}c["100% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life"}c["5% increased Damage for each Trap and Mine you have"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=5}}," for each and Mine you have"}c["18% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=18}},nil}c["+5 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=5}},nil}c["Hatred Reserves no Mana {variant:8}Purity of Ice Reserves no Mana"]={nil,"Hatred Reserves no Mana {variant:8}Purity of Ice Reserves no Mana"}c["+7% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=7}}," Damage"}c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=200},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block"}c["With at least 40 Intelligence in Radius, Magma Orb"]={nil,"With at least 40 Intelligence in Radius, Magma Orb"}c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["+450 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=450}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=32}},nil}c["Minions' Attacks deal 8 to 16 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=8}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}}}},nil}c["6% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["2% of Damage Leeched as Life and Mana if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="DamageLeech",type="BASE",value=2}},nil}c["6% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["13% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=13}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["Life Leech from Hits with this Weapon applies instantly"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["+15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}c["380% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=380}},nil}c["-1 Intelligence per 1 Intelligence on Allocated Passives in Radius"]={{[1]={[1]={div=1,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Int",type="BASE",value=-1}}," on Allocated Passives in Radius"}c["+36% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=36}},nil}c["1% reduced Elemental Damage taken when Hit per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageTakenWhenHit",type="INC",value=-1}},nil}c["-60% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-60}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds"}c["90% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=90}},nil}c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"}c["20% increased Damage while not on full Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 15% chance to Gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain an Endurance Charge when you gain a Power Charge 15% chance to Gain a Power Charge if you or your s kill an Enemy"}c["Trigger a Socketed Lightning Spell on Hit Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={nil,"Trigger a Socketed Lightning Spell on Hit Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"}c["40% increased Lightning Damage with Attack Skills +200 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}}," with Attack Skills +200 Strength Requirement"}c["12% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["+100 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}}," on Unallocated Passives in Radius"}c["25% increased Attack and Cast Speed while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}}," with Attack Skills"}c["20% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["Attacks have 30% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}c["Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently"}c["25% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=25}},nil}c["3% increased Attack Speed with Bows"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 65 to 155 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=155}},nil}c["While at Maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=5,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"}c["Nearby Enemies have -20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-20}}}},nil}c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["+10 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["Auras you Cast grant 5% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["Elemental Resistances are Zero"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}},nil}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Minions have 30% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=30}}}},nil}c["15% increased Character Size Spell Skills deal no Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}}," Character Size Skills deal no "}c["50% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},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["-7 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-7}}," from Attacks"}c["50% increased Damage if you have Shocked an Enemy Recently 40% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," if you have Shocked an Enemy Recently 40% increased Effect of Shock"}c["40% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Shock"}c["50% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="INC",value=50}}," with Hits and Ailments "}c["Herald of Agony has 79% increased Buff Effect Herald of Agony has 38% reduced Mana Reservation"]={nil,"Herald of Agony has 79% increased Buff Effect Herald of Agony has 38% reduced Mana Reservation"}c["50% less Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-50}},nil}c["Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"]={nil,"Enemies you Kill that are affected by Elemental Status Ailments grant 100% increased Flask Charges"}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={nil,"Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges per Abyss Jewel affecting you"}c["25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}},nil}c["Socketed Gems have 20% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-20}}}},nil}c["160% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=160}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["began Recently"]={nil,"began Recently"}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use"}c["10% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+80 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=80}},nil}c["Minions have 6% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}}}},nil}c["+50 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 8% of their maximum Life as Fire Damage to nearby Enemies when Hit"}c["Primordial"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:PrimordialItem",type="BASE",value=1}},nil}c["16% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=16}},nil}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["30% increased Damage of each Damage Type for which you have a matching Golem"]={{[1]={[1]={type="Condition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30},[2]={[1]={type="Condition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=30},[3]={[1]={type="Condition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30},[4]={[1]={type="Condition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30},[5]={[1]={type="Condition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=30}},nil}c["140% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=140}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"}c["1% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["10% increased Movement Speed while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["10% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}c["Vaal Skills deal 100% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills deal 100% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"}c["30% increased Life Recovery Rate while affected by Vitality {variant:49}1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={[1]={skillName="Vitality",type="SkillName"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}}," while affected by{variant:49}1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"}c["180% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=180}},nil}c["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VoidGaze"}}},nil}c["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["+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["1.5% of Maximum Life Regenerated per second while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}c["Gain Life and Mana from Leech instantly on Critical Strike"]={nil,"Gain Life and Mana from Leech instantly on Critical Strike"}c["Minions have 6% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}}}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["187% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=187}},nil}c["33% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=33}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=15}},nil}c["5% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you"}c["10% chance to gain a Power Charge on Hit against Enemies that are on Full Life Your Critical Strikes with Attacks Maim Enemies"]={{}," to gain a Power Charge on Hit Your Critical Strikes Maim Enemies"}c["100% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil}c["+1 Mana gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil}c["5% increased Experience gain {variant:2,3}3% increased Experience gain"]={{}," Experience gain {variant:2,3}3% increased Experience gain"}c["20% increased Elemental Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"}c["No Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["2% additional Block Chance while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Gain 5% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=5}},nil}c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["Socketed Gems have 30% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}}}},nil}c["2% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=2}},nil}c["+1 to Minimum Frenzy Charges"]={{}," MinimumCharges"}c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={nil,"Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"}c["30% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=30}},nil}c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage"}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="SummonRockGolem"}}},nil}c["+3 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=3}}},nil}c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=4,keywordFlags=0,name="Damage",type="INC",value=10}},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["Skills used during Flask effect grant 800% of Mana Cost as Life"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life"}c["20% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["12% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies {variant:2}100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},[3]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to inflict Bleeding {variant:2}100% increased with Hits and Ailments "}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Adds 75 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["13% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil}c["10% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}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["+5 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5}},nil}c["10% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=10}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"}c["+33 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}," Fire and s"}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee on Hit"}c["+1 to maximum number of Zombies per 300 Strength"]={{[1]={[1]={div=300,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["You cannot be Stunned while at maximum Endurance Charges"]={nil,"You cannot be Stunned while at maximum Endurance Charges"}c["12% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=12}},nil}c["Cannot be Frozen if Dexterity is higher than Intelligence"]={nil,"Cannot be Frozen if Dexterity is higher than Intelligence"}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike"}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used"}c["+160 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=160}},nil}c["to 30% increased Damage to targets"]={nil,"to 30% increased Damage to targets"}c["220% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=220}},nil}c["28% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["+25 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},nil}c["Allocated Small Passive Skills in Radius grant nothing"]={nil,"Allocated Small Passive Skills in Radius grant nothing"}c["30% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"}c["+290 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=290}},nil}c["Golems have +900 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=900}}}},nil}c["22% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=22}},nil}c["Passives in Radius can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="intuitiveLeap",value=true}}},nil}c["120% of Block Chance applied to Spells when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="BlockChanceConv",type="BASE",value=120}},nil}c["20% chance to Block Spells if you've Blocked an Attack Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["90% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=90}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"]={{}," Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"}c["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death"}c["Adds 33 to 47 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=33},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=47}},nil}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=3}},nil}c["Melee Attacks have 8% chance to cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=8}},nil}c["50% increased Stun Duration on you 4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you 4% increased Damage "}c["+10 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}},nil}c["Take 30 Chaos Damage per Second during Flask effect"]={nil,"30 Chaos Damage per Second during Flask effect"}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 15% of your Reserved Mana to"}c["3% increased Attack Speed with Maces"]={{[1]={flags=65537,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-2}}," Total for each Corrupted Item Equipped"}c["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by "}c["16% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["20% chance to gain a Frenzy Charge on Kill {variant:22}20% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill {variant:22}20% chance to gain a Power Charge on Kill"}c["Minions deal 40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["+50% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["+8 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["Minions deal 35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}},nil}c["+2 to Level of Socketed Movement Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="movement",value=2}}},nil}c["30% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=30}},nil}c["20% chance to gain a Power Charge when you place a Totem"]={{}," to gain a Power Charge when you place a "}c["15% increased Attack Speed with Claws"]={{[1]={flags=16385,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken"}c["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedFireDamage"}}},nil}c["Socketed Gems are Supported by level 10 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportColdToFire"}}},nil}c["30% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["You can apply an additional Curse 16% increased Cast Speed with Curse Skills"]={nil,"You can apply an additional Curse 16% increased Cast Speed with Curse Skills"}c["4% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=4}},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["8% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed"}c["9% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy"]={nil,"With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy"}c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil}c["You have Onslaught while not on Low Mana Lose 40 Mana per Second"]={nil,"You have Onslaught while not on Low Mana Lose 40 Mana per Second"}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy"}c["5% increased Experience gain"]={{}," Experience gain"}c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=1}},nil}c["Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed"}c["Attacks have 60% chance to Poison while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["+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["30% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"}c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Adds 21 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=140}},nil}c["1% reduced Mana Reserved per 250 total attributes"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-1}}," per 250 total attributes"}c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=150}},nil}c["Gain Unholy Might for 3 seconds on Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage"}c["Cannot be inflicted with Bleeding +5 to Maximum number of Crab Barriers"]={nil,"Cannot be inflicted with Bleeding +5 to Maximum number of Crab Barriers"}c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=135}},nil}c["Socketed Curse Gems have 12% reduced Mana Reservation"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-12}}}},nil}c["+6 to Maximum Life per Elder Item Equipped 8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=6}}," per Elder Item Equipped 8% increased Effect of non-Damaging Ailments per Elder Item Equipped"}c["Damage Penetrates 10% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=10}},nil}c["Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 30 Chaos Damage to Melee Attackers"}c["Reflects 20 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers"}c["Adds 250 to 300 Cold Damage to Counterattacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}}," to Counterattacks"}c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"}c["20% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritChance",type="INC",value=20}},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}c["23% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["+7 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=7}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage"}c["+11 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=11},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=11}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=60}},nil}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have an additional 2% chance to receive a Critical Strike"}c["10% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=10}}," Overkill is "}c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block"}c["13% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=13}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect"}c["35% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=35}},nil}c["50% reduced Experience gain 0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=-50}}," Experience gain 0.4% of Leeched as Mana"}c["10% additional Block chance while not Cursed {variant:3}20% additional Spell Block chance while Cursed"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," while not Cursed {variant:3}20% additional Block chance while Cursed"}c["20% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-20}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"}c["15% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=15}},nil}c["5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=5}},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["Traps and Mines deal 4 to 13 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=13}},nil}c["16% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=16}},nil}c["Adds 19 to 30 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=30}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges"}c["Arrows that Pierce cause Bleeding"]={{[1]={flags=0,keywordFlags=0,name="ArrowsThatPierceCauseBleeding",type="FLAG",value=true}},nil}c["110% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=110}},nil}c["+100 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=100}},nil}c["2% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members"}c["20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"}c["With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"}c["Anger Reserves no Mana {variant:2}Determination Reserves no Mana"]={nil,"Anger Reserves no Mana {variant:2}Determination Reserves no Mana"}c["Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy"}c["170% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=170}},nil}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies"}c["+6% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=6}}," Damage"}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting"}c["Gain 75 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+45% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=45}},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},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["Discipline Reserves no Mana {variant:11}Purity of Elements Reserves no Mana"]={nil,"Discipline Reserves no Mana {variant:11}Purity of Elements Reserves no Mana"}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["+160 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=160}},nil}c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=1}}," per 15 Rampage Kills"}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning"}c["14% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds"}c["22% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=22}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=22}},nil}c["36% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=36}},nil}c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"]={nil,"You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"}c["Recover 100% of your maximum Life on use"]={nil,"Recover 100% of your maximum Life on use"}c["70% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["35% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=35}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage"}c["Golem Skills have 25% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil}c["+30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["Damage Penetrates 3% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=3}},nil}c["Unaffected by Temporal Chains while affected by Haste {variant:25}Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},"Unaffected bywhile affected by Haste {variant:25} while affected by Hatred"}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["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"}c["16% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["40% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=10},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=20}},nil}c["0.4% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.4}},nil}c["You and nearby allies have 15% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}},[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=15}}}},nil}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you"}c["4% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}," Attack Damage"}c["Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=25}},nil}c["+18% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=18}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Bow"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=8192,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["8% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger {variant:4}40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}}," while affected by{variant:4}40% of Physical Damage Converted to Fire Damage while affected by Anger"}c["35% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=35}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned"}c["8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={level=21,skillId="Despair"}}},nil}c["5% increased Skeleton Movement Speed 10% increased Skeleton Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}," Skeleton 10% increased Skeleton Attack Speed"}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"}c["+35 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=35}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity {variant:7}15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={[1]={skillName="Clarity",type="SkillName"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=18}}," while affected by{variant:7}15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"}c["Socketed Gems are Supported by level 11 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=11,skillId="SupportTrap"}}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=20}}," while your Off Hand is empty"}c["8% additional Physical Damage Reduction while affected by Determination"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}}," while affected by Determination"}c["6% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=6}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=40}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline {variant:15}2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," while affected by Discipline"}c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3}}," Character Size 6% increased "}c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}}," while affected by Discipline"}c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.15}},nil}c["15% increased Movement Speed while affected by Grace"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}}," while affected by Grace"}c["25% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=25}},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["8% chance to Dodge Spells while affected by Haste"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}}," while affected by Haste"}c["200% increased Critical Strike Chance while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"}c["+1.8% to Critical Strike Chance while affected by Hatred {variant:27}Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.8}}," while affected by{variant:27}Damage Penetrates 15% Cold Resistance while affected by Hatred"}c["25% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," of Shock"}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=40}}," while affected by Hatred"}c["10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-25}},nil}c["24% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["15% more maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=15}},nil}c["30% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=30}},nil}c["14% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=14}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice"}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["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["Poison you inflict with Critical Strikes deals 100% more Damage"]={{[1]={flags=0,keywordFlags=0,name="PoisonDamageOnCrit",type="MORE",value=100}},nil}c["Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"}c["17% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=17}},nil}c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=18}},nil}c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="BASE",value=10}}," to gain a Power Charge on Kill 5% increased "}c["Skills used by Traps have 20% increased Area of Effect Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={nil,"Skills used by Traps have 20% increased Area of Effect Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=1.5}}," is while affected by Wrath"}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use"}c["10% chance to Dodge Attacks while affected by Grace"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}}," while affected by Grace"}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["40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=40}}," while affected by Wrath"}c["Elemental Hit deals 15% increased Damage"]={nil,"Elemental Hit deals 15% increased Damage"}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"}c["32% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=32}},nil}c["4% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=4}},nil}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["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["You gain 8% increased Damage for each Trap You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each You gain 8% increased Area of Effect for each Mine"}c["10% chance to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit"}c["+1 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=1}}},nil}c["2% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-2}},nil}c["45% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=45}},nil}c["13% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"]={nil,"Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"}c["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"]={nil,"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"}c["Nearby Allies have 4% 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=4},onlyAllies=true}}}," you have"}c["38% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=38}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty 100% increased Cold Damage while your Off Hand is empty"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=20}}," while your Off Hand is empty 100% increased Cold Damage while your Off Hand is empty"}c["15% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["70% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["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["15% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=15}},nil}c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"}c["+2 to Level of Socketed Chaos Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="chaos",value=2}}},nil}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets"]={nil,"With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets"}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy"}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["16% increased Physical Damage with Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["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"]={nil,"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"}c["Gain 15 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"]={nil,"Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"}c["Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground"}c["12% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+30% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil}c["25% increased Burning Damage"]={{[1]={flags=8,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova {variant:1}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 {variant:1}With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles"}c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["+145 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=145}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=210}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=10}},nil}c["60% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=60}},nil}c["Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Forking"}c["25% chance to avoid Fire Damage when Hit {variant:2}You always Ignite while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit {variant:2}You always Ignite while Burning"}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"}c["With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"}c["Adds 2 to 4 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=1,keywordFlags=0,name="FireMin",type="BASE",value=2},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=1,keywordFlags=0,name="FireMax",type="BASE",value=4}},nil}c["15% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=15}},nil}c["60% reduced Mana Cost of Totem Skills that cast an Aura"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," of Skills that cast an Aura"}c["Melee Attacks have 15% chance to cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered"}c["30% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=30}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=100}},nil}c["Cold-only Splash Damage to surrounding targets"]={nil,"Cold-only Splash Damage to surrounding targets"}c["75% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=75}},nil}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted"}c["Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining"}c["An additional Curse can be applied to you"]={nil,"An additional Curse can be applied to you"}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["15% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% increased effect of Fortify on You"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=10}},nil}c["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"]={nil,"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"}c["18% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=18}},nil}c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=10}},nil}c["You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"]={nil,"You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"}c["You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique"]={nil,"You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique"}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=3}}," Character Size 5% 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["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill"}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike {variant:14}20% increased Global Defences"]={nil,"Nearby Enemies have an additional 2% chance to receive a Critical Strike {variant:14}20% increased Global Defences"}c["Enemies Ignited by you during Flask Effect take 10% increased Damage Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Enemies Ignited by you during Flask Effect take 10% increased Damage Recover 3% of Life when you Kill an Enemy during Flask Effect"}c["+60% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=60}},nil}c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["2% additional Chance to Block Spells with Shields"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield +20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={[1]={div=5,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5}}," on Equipped Shield +20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"}c["Elemental Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Equilibrium"}},nil}c["Adds 55 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eldritch Battery"}},nil}c["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste"]={nil,"Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste"}c["Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Resolute Technique"}},nil}c["Adds 96 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=96},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-10}},nil}c["+35% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=35}},nil}c["8% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=8}},nil}c["204% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=204}},nil}c["+4 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=4}},nil}c["Adds 2 to 5 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=5}},nil}c["50% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["Elemental Hit deals 15% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"Elemental Hit deals 15% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"}c["Adds 85 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.6}},nil}c["600% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=600}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=263}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},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["18% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=18}},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["Adds 3 to 30 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=30}},nil}c["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["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=1}},nil}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies {variant:2}100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=0,name="FireDamage",type="INC",value=100}}," with Hits and Ailments {variant:2}100% increased Physical Damage with Hits and Ailments "}c["40% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-40}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire"}c["280% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=280}},nil}c["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["60% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={stat="ManaReserved",threshold=0,type="StatThreshold",upper=true},flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"]={nil,"Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"}c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=4,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["30% increased Elemental Damage with Attack Skills while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}}," with Attack Skills "}c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=145}},nil}c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Cannot be Stunned if you've Killed Recently 25% increased Attack Speed if you haven't Killed Recently"]={nil,"Cannot be Stunned if you've Killed Recently 25% increased Attack Speed if you haven't Killed Recently"}c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=100}}," while your Off Hand is empty"}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance "}c["+14 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=14}},nil}c["Adds 25 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["10% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["Adds 70 to 210 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=210}},nil}c["40% increased Defences from equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil}c["25% chance to avoid Fire Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit"}c["Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-10}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use"}c["180% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=180}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks {variant:1}{crafted}+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}}," to Maim Enemies {variant:1}{crafted}+45% while there is a Rare or Unique Enemy Nearby"}c["+22% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=22}},nil}c["For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["15% increased Cast Speed for Curses"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=15}},nil}c["400% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=400}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={nil,"Your Chaos Damage has 60% chance to Poison Enemies"}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"]={{}," to Trigger Level 1when you Kill an Enemy"}c["12% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=12}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{}," to gain Arcane Surge when you Kill an Enemy"}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["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={flags=2,keywordFlags=0,name="FireMin",type="BASE",value=64},[2]={flags=2,keywordFlags=0,name="FireMax",type="BASE",value=107}}," while no is Reserved Adds 14 to 173 Lightning Damage to s while no Life is Reserved"}c["16% increased Cast Speed with Curse Skills 0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={flags=18,keywordFlags=0,name="Speed",type="INC",value=16}}," with Curse Skills 0.2% of Damage Leeched as Energy Shield for each Curse on Enemy"}c["Adds 110 to 158 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="PhysicalMax",type="BASE",value=158}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=8}},nil}c["Gain a Divine Charge on Hit"]={nil,"Gain a Divine Charge on Hit"}c["Your hits can't be Evaded"]={{[1]={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["Adds 20 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="ChaosMax",type="BASE",value=3}},nil}c["80% increased Damage against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=4,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=100},[2]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=100},[3]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=100}},nil}c["160% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=160}},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["When Hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["10% increased Fortify duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=10}},nil}c["+24 Mana gained when you Block {variant:1}20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block {variant:1}20% reduced Movement Speed"}c["200 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"200 Cold Damage taken per second per Frenzy Charge while moving"}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CrabAspect"}}},nil}c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-20}},nil}c["Cannot Leech Life"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["118% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=118}},nil}c["13% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=13}},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}c["+250 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}},nil}c["+120 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=120}},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["20% increased Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFirePenetration"}}},nil}c["25% increased Zombie Size"]={{}," Size"}c["Adds 9 to 26 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you"}c["30% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=30}},nil}c["Adds 53 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["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["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on Hit"}c["With at least 40 Dexterity in Radius, Burning"]={nil,"With at least 40 Dexterity in Radius, Burning"}c["20% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil}c["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill"}c["3 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=3}},nil}c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true}},nil}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=120}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={nil,"30 Energy Shield gained for each Enemy Hit while affected by Discipline"}c["110% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=110}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}}," with Attack Skills"}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["Adds 20 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["50% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}},nil}c["25% increased Physical Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill"}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportGenerosity"}}},nil}c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems"}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 1 to 85 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=85}},nil}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=4}},nil}c["100% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=100}},nil}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 on Hit "}c["Adds 1 to 325 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=325}},nil}c["10% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Crimson Dance"]={nil,"Crimson Dance"}c["Adds 1 to 300 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=300}},nil}c["+50 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=50}},nil}c["+70 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil}c["Adds 1 to 150 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=150}},nil}c["24% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=24}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["+500 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies"}c["+30 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30}},nil}c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=45}},nil}c["Adds 1 to 30 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=1},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=30}},nil}c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil}c["400 Cold Damage taken per second per Frenzy Charge while moving {variant:2}200 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving {variant:2}200 Cold Damage taken per second per Frenzy Charge while moving"}c["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill"}c["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,keywordFlags=1,name="AreaOfEffect",type="INC",value=20}},nil}c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you"}c["15% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes"}c["50% increased Damage with Hits and Ailments against Bleeding Enemies You have Crimson Dance while you have Cat's Stealth"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=4,keywordFlags=0,name="Damage",type="INC",value=50}}," with Hits and Ailments You have Crimson Dance while you have Cat's Stealth"}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius"}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil}c["6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["10% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Your Cold Damage can Poison"]={nil,"Your Cold Damage can Poison"}c["100% increased Physical Damage while you have Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique"}c["Gore Footprints"]={nil,"Gore Footprints"}c["15% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=15}},nil}c["Found Magic Items drop Identified"]={nil,"Found Magic Items drop Identified"}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["Cannot Leech"]={nil,"Cannot Leech"}c["100% increased Aspect of the Avian Buff Effect Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}}," Aspect of the Avian Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"}c["25% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=130}},nil}c["40% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=40}},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["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"}c["+2 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=2}}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby {variant:2}{crafted}22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}}," while there is a Rare or Unique Enemy Nearby {variant:2}{crafted}22% increased Attack Speed while a Rare or Unique Enemy is Nearby"}c["+8% chance to Evade Attacks while affected by Grace"]={{}," to Evade Attacks while affected by Grace"}c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=15}},nil}c["Adds 12 to 23 Cold Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={flags=1,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["+90 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90}},nil}c["80% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["8% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Chance to Block Spell Damage is Unlucky"]={nil,"Chance to Block Spell Damage is Unlucky"}c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=30}},nil}c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks"}c["15% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}}," Attack and while you have a Bestial Minion"}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["12% increased Melee Physical Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={{}," to gain aCharge on Killing a Frozen Enemy Skills Chain an additional time "}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements {variant:31}12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={skillName="Purity of Elements",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=12}}," while affected by{variant:31}12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage "}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["Grants level 10 Gluttony of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VaalAuraElementalDamageHealing"}}},nil}c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=4,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["Your Critical Strike Chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["10% Chance to Cast level 18 Summon Spectral Wolf on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=18,skillId="SummonRigwaldsPack"}}},nil}c["15% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["145% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=145}},nil}c["Adds 20 to 30 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=30}},nil}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5}},nil}c["1% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["Curse Enemies with level 10 Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="Flammability"}}},nil}c["20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=400}},nil}c["1% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},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["Has an additional Implicit Mod +30 to all Attributes"]={nil,"Has an additional Implicit Mod +30 to all Attributes"}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}},nil}c["+350 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=350}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=130}},nil}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"}c["20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{}," when Placing s to Place an additional Mine 100% increased Mine Arming Speed"}c["135% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=135}},nil}c["+2 to Level of Socketed Herald Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="herald",value=2}}},nil}c["Knocks Back Enemies in an Area on Flask use"]={nil,"Knocks Back Enemies in an Area on Flask use"}c["10% chance to grant a Power Charge to nearby Allies on Kill 5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant a Power Charge to nearby Allies on Kill 5% chance to grant aCharge to nearby Allies on Hit"}c["Minions have 15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}c["+250 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=250}},nil}c["Adds 3 to 6 Cold Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="ColdMin",type="BASE",value=3},[2]={flags=2,keywordFlags=0,name="ColdMax",type="BASE",value=6}},nil}c["30% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=30}},nil}c["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour"}c["50% less Weapon Damage"]={{[1]={flags=8388608,keywordFlags=0,name="Damage",type="MORE",value=-50}},nil}c["2% of Life Regenerated per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Herald of Agony has 79% increased Buff Effect"]={nil,"Herald of Agony has 79% increased Buff Effect"}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportBlasphemy"}}},nil}c["+60 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60}},nil}c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"}c["+110 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=110}},nil}c["Adds 60 to 90 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=90}},nil}c["Enemies affected by your Spider's Webs have -10% to All Resistances 70% increased Aspect of the Spider Area of Effect"]={nil,"Enemies affected by your Spider's Webs have -10% to All Resistances 70% increased Aspect of the Spider Area of Effect"}c["30% chance to Avoid being Chilled during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["Adds 4 to 8 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={flags=8192,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"}c["2% of Life Regenerated per second with at least 400 Strength"]={{[1]={[1]={stat="Str",threshold=400,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius"}c["Adds 16 to 53 Lightning Damage to Spells"]={{[1]={flags=2,keywordFlags=0,name="LightningMin",type="BASE",value=16},[2]={flags=2,keywordFlags=0,name="LightningMax",type="BASE",value=53}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted"}c["Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Shocks you inflict spread to other Enemies within a Radius of 15"}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=90}},nil}c["40% increased Duration of Ailments on Enemies +4% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}}," of Ailments +4% Chance to Block"}c["Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"}c["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds"}c["+2 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=2}}},nil}c["0.3% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil}c["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TouchOfGod"}}},nil}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances"}c["23% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=18}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=30}},nil}c["Half of your Strength is added to your Minions +1 to maximum number of Zombies per 300 Strength"]={nil,"Half of your Strength is added to your Minions +1 to maximum number of Zombies per 300 Strength"}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["Immune to Elemental Status Ailments while Phasing 10% chance to Dodge Spell Damage while Phasing"]={nil,"Immune to Elemental Status Ailments while Phasing 10% chance to Dodge Spell Damage while Phasing"}c["+67 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=67}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil}c["Adds 1 to 25 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=25}},nil}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies {variant:1}Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={nil,"deal 100 to 200 added Physical Damage to Ignited Enemies {variant:1}Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"}c["30% chance for Attacks to Maim on Hit against Bleeding Enemies"]={{}," to Maim on Hit "}c["35% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=35}},nil}c["+30% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil}c["2% increased Attack and Cast Speed for each corpse consumed recently"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}," for each corpse consumed recently"}c["75% reduced Maximum number of Summoned Raging Spirits Raging Spirits' Hits always Ignite"]={{}," Maximum number of Summoned Raging Spirits Raging Spirits' Hits always Ignite"}c["+30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30}},nil}c["4% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil}c["20% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["4% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit"}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect"}c["350% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=350}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=22}},nil}c["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes"}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=16384,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Shocks you cause are reflected back to you 60% increased Damage while Shocked"]={nil,"Shocks you cause are reflected back to you 60% increased Damage while Shocked"}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=30}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks"}c["+2 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=30}},nil}c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["30% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["10% chance to gain a Frenzy Charge on Kill You have Onslaught while on full Frenzy Charges"]={{}," to gain aCharge on Kill You have Onslaught while on full Frenzy Charges"}c["+35 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=35}},nil}c["+75 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=75}},nil}c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil}c["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="TemporalChains"}}},nil}c["Cannot Block Spells Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={nil,"Cannot Block Spells Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"}c["20% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=20}}," of Chill"}c["Adds 15 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently {variant:1}60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently {variant:1}60% increased Damage for each 200 total Mana you have Spent Recently"}c["Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"}c["400 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving"}c["Adds 98 to 121 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=121}},nil}c["20% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Adds 27 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["12% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["7% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["+24 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=24}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["Has 6 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=6}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles"}c["+150 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["Consecrated Ground you create grants 40% increased Damage to you and Allies"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["25% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["100% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=100}},nil}c["Extra Gore"]={nil,"Extra Gore"}c["+16 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=16}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=5}},nil}c["12% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["50% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life"}c["+3% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}},nil}c["+16 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=16},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=16}},nil}c["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50}},nil}c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Duration",type="INC",value=25}},nil}c["60% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil}c["15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is Detonated targeting an Enemy"}c["18% increased Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of"}c["15% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["1% increased Movement Speed per 600 Evasion Rating, up to 75%"]={{[1]={[1]={div=600,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}}," , up to 75%"}c["40% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["+50 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["30% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=30}},nil}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance {variant:1}Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={nil,"Projectile Attack Skills have 60% increased Critical Strike Chance {variant:1}Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"}c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike"}c["10% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="PierceChance",type="BASE",value=10}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=40}}," while affected by Anger"}c["420% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=420}},nil}c["10% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=120}}," while a Rare or Unique Enemy is Nearby"}c["+22% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=22}},nil}c["2% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike"}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item 6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}}," for each Equipped Corrupted Item 6% increased Maximum Life for each Equipped Corrupted Item"}c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["60% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=60},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=60},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=60}},nil}c["100% of Damage Leeched as Life if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=100}},nil}c["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["9% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=9}},nil}c["10% increased Skeleton Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}," Skeleton "}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=115}},nil}c["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=30}},nil}c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil}c["Adds 5 to 12 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=1,keywordFlags=0,name="FireMax",type="BASE",value=12}},nil}c["Adds 6 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["23% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-23}},nil}c["20% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportManaLeech"}}},nil}c["Minions have 10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["135% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=135}},nil}c["Prefix: LocalIncreasedArmourAndEnergyShield5"]={nil,"Prefix: LocalIncreasedArmourAndEnergyShield5"}c["20% additional Spell Block chance while Cursed Curse Reflection"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," while Cursed Curse Reflection"}c["Gain 10% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element"}c["You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil}c["20% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=20}},nil}c["Ancestral Bond"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ancestral Bond"}},nil}c["10% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["60% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["+30 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=30}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={nil,"While your Passive Skill Tree connects to a class' Starting location, you gain:"}c["Adds 11 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Your Lightning Damage can Poison {variant:1}Fire Skills have 20% chance to Poison on Hit"]={nil,"Your Lightning Damage can Poison {variant:1}Fire Skills have 20% chance to Poison on Hit"}c["+1% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},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["+100 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements {variant:32}Unaffected by Elemental Weakness while affected by Purity of Elements"]={{[1]={[1]={skillName="Purity of Elements",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=12}}," while affected by{variant:32}Unaffected by Elemental Weakness while affected by Purity of Elements"}c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery"}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalPenetration"}}},nil}c["Haste Reserves no Mana"]={nil,"Haste Reserves no Mana"}c["Haste Reserves no Mana {variant:7}Hatred Reserves no Mana"]={nil,"Haste Reserves no Mana {variant:7}Hatred Reserves no Mana"}c["+28% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["+24 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges"}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius"}c["Adds 6 to 13 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=13}},nil}c["Adds 10 to 20 Physical Damage to Attacks"]={{[1]={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=24}},nil}c["Trigger level 20 Storm Cascade when you Attack 90% increased Spell Damage"]={nil,"Trigger level 20 Storm Cascade when you Attack 90% increased Spell Damage"}c["88% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=88}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="BASE",value=55}}," Non-Ailment over Time Multiplier"}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["24% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=24}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=4}},nil}c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=100}},nil}c["Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}},nil}c["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}},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["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"}c["9% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=9}},nil}c["Damage Penetrates 25% Lightning Resistance if you've used a Cold Skill in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsedColdSkillInPast10Sec"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=25}},nil}c["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="BASE",value=15}}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased "}c["10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["-1 Dexterity per 1 Dexterity on Allocated Passives in Radius"]={{[1]={[1]={div=1,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=-1}}," on Allocated Passives in Radius"}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},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["33% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=33}},nil}c["+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["10% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil}c["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=40}},nil}c["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["10% increased Elemental Damage with Attack Skills {variant:1}Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}}," with Attack Skills {variant:1}Adds 4 to 8 Fire Damage to Attacks"}c["16% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil}c["15% chance to gain a Frenzy Charge on Kill +1 to Maximum Frenzy Charges"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=15}}," to gain aCharge on Kill +1 to "}c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"Gain an Endurance Charge when a Power Charge expires or is consumed"}c["175% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=175}},nil} \ No newline at end of file diff --git a/Data/2_6/SkillStatMap.lua b/Data/2_6/SkillStatMap.lua index 7f56ca2dc..ae690892d 100644 --- a/Data/2_6/SkillStatMap.lua +++ b/Data/2_6/SkillStatMap.lua @@ -134,13 +134,13 @@ return { skill("totemLevel", nil), }, ["spell_uncastable_if_triggerable"] = { - skill("triggered", true, { type = "SkillType", skillType = SkillType.TriggerableSpell }), + skill("triggered", true, { type = "SkillType", skillType = SkillType.Triggerable }), }, ["unique_mjolner_lightning_spells_triggered"] = { - skill("triggered", true, { type = "SkillType", skillType = SkillType.TriggerableSpell }), + skill("triggered", true, { type = "SkillType", skillType = SkillType.Triggerable }), }, ["unique_cospris_malice_cold_spells_triggered"] = { - skill("triggered", true, { type = "SkillType", skillType = SkillType.TriggerableSpell }), + skill("triggered", true, { type = "SkillType", skillType = SkillType.Triggerable }), }, ["skill_double_hits_when_dual_wielding"] = { skill("doubleHitsWhenDualWielding", true), diff --git a/Data/3_0/Gems.lua b/Data/3_0/Gems.lua index f6b0ac699..72cd76033 100644 --- a/Data/3_0/Gems.lua +++ b/Data/3_0/Gems.lua @@ -2019,9 +2019,10 @@ return { tags = { strength = true, support = true, + spell = true, totem = true, }, - tagString = "Support, Totem", + tagString = "Support, Spell, Totem", reqStr = 60, reqDex = 0, reqInt = 40, @@ -2322,9 +2323,8 @@ return { strength = true, support = true, totem = true, - attack = true, }, - tagString = "Bow, Projectile, Support, Totem, Attack", + tagString = "Bow, Projectile, Support, Totem", reqStr = 60, reqDex = 40, reqInt = 0, @@ -2662,9 +2662,8 @@ return { dexterity = true, support = true, spell = true, - trigger = true, }, - tagString = "Support, Spell, Trigger", + tagString = "Support, Spell", reqStr = 0, reqDex = 60, reqInt = 40, @@ -2678,9 +2677,8 @@ return { melee = true, attack = true, spell = true, - trigger = true, }, - tagString = "Support, Melee, Attack, Spell, Trigger", + tagString = "Support, Melee, Attack, Spell", reqStr = 60, reqDex = 0, reqInt = 40, @@ -2868,9 +2866,8 @@ return { dexterity = true, support = true, spell = true, - trigger = true, }, - tagString = "Support, Spell, Trigger", + tagString = "Support, Spell", reqStr = 0, reqDex = 60, reqInt = 40, @@ -2882,9 +2879,8 @@ return { strength = true, support = true, spell = true, - trigger = true, }, - tagString = "Support, Spell, Trigger", + tagString = "Support, Spell", reqStr = 60, reqDex = 0, reqInt = 40, @@ -2896,9 +2892,8 @@ return { intelligence = true, support = true, spell = true, - trigger = true, }, - tagString = "Support, Spell, Trigger", + tagString = "Support, Spell", reqStr = 0, reqDex = 40, reqInt = 60, @@ -4336,9 +4331,8 @@ return { support = true, channelling = true, spell = true, - trigger = true, }, - tagString = "Support, Channelling, Spell, Trigger", + tagString = "Support, Channelling, Spell", reqStr = 0, reqDex = 40, reqInt = 60, diff --git a/Data/3_0/ModCache.lua b/Data/3_0/ModCache.lua index 3d131facc..4aeadddbc 100644 --- a/Data/3_0/ModCache.lua +++ b/Data/3_0/ModCache.lua @@ -1 +1 @@ -local c=...c["20% Chance to Block"]={{[1]={flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["16% increased Mine Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=8192}},nil}c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={type="PerStat",stat="Life",div=1},flags=0,type="BASE",value=0.15,name="ChaosDegen",keywordFlags=0}},nil}c["10% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=10,name="PowerChargesDuration",keywordFlags=0}},nil}c["Inflicts a random level 20 Curse on you when your Totems die"]={nil,"Inflicts a random level 20 Curse on you when your Totems die "}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets "}c["10% reduced Enemy Stun Threshold with Bows"]={{[1]={flags=8192,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["30% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=262144}}," against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds "}c["You have Far Shot while you do not have Iron Reflexes"]={nil,"You have Far Shot while you do not have Iron Reflexes "}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["Adds 18 to 32 Chaos Damage to Attacks"]={{[1]={flags=0,type="BASE",value=18,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=32,name="ChaosMax",keywordFlags=65536}},nil}c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["+21 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=21,name="LifeOnHit",keywordFlags=0}},nil}c["12% increased Brand Activation frequency"]={{[1]={flags=0,type="INC",value=12,name="BrandActivationFrequency",keywordFlags=0}},nil}c["25% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=2097152}},nil}c["14% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=14,name="ElementalDamage",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 seconds on Kill "}c["Adds 1 to 30 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="FireMax",keywordFlags=65536}},nil}c["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=3,name="AuraEffect",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks "}c["Non-critical strikes deal 25% Damage"]={{[1]={[1]={type="Condition",neg=true,var="CriticalStrike"},flags=4,type="MORE",value=-75,name="Damage",keywordFlags=0}},nil}c["15% more Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=15,name="Damage",keywordFlags=2097152}},nil}c["40% increased Spell Damage"]={{[1]={flags=2,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["30% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike "}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFrenzyChargeOnSlayingFrozenEnemy",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["40% increased Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=40,name="AreaOfEffect",keywordFlags=2}},nil}c["The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IronGrip",flags=0}},nil}c["-5% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="ChaosResist",keywordFlags=0}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0% 5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},[2]={limit=2,limitTotal=true,type="Multiplier",var="PoisonStack",actor="enemy"},flags=1,type="BASE",keywordFlags=262144,name="CritChance",value=50}}," to Maim on Hit +0.1% to 5% increased Poison Duration for each Poison you have inflicted Recently "}c["8% increased maximum Mana"]={{[1]={flags=0,type="INC",value=8,name="Mana",keywordFlags=0}},nil}c["Your Hits can't be Evaded by Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["24% increased Spell Damage"]={{[1]={flags=2,type="INC",value=24,name="Damage",keywordFlags=0}},nil}c["3% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",keywordFlags=262144,name="Damage",value=3}},nil}c["5% increased Effect of Fortify on you"]={{[1]={flags=0,type="INC",value=5,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["20% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=20,name="LightningDamage",keywordFlags=0}},nil}c["Gain Onslaught for 10 seconds on Kill"]={nil,"Gain Onslaught for 10 seconds on Kill "}c["Adds Knockback to Melee Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=256}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=28,name="CritChance",keywordFlags=0}},nil}c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="fire",value=1},name="GemProperty",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=-30,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["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"]={nil,"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 "}c["+27% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=27,name="ChaosResist",keywordFlags=0}},nil}c["Minions have 10% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Channelling Skills have -3 to Total Mana Cost"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="BASE",value=-3,name="ManaCost",keywordFlags=0}},nil}c["50% chance to inflict Bleeding on Critical Strike with Attacks"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=65536}},nil}c["20% chance to Maim on Hit"]={{}," to Maim on Hit "}c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=40,name="CritMultiplier",keywordFlags=0}},nil}c["20% increased Flask Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["+5% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=5,name="ColdResistMax",keywordFlags=0}},nil}c["25% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=6.25,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["+3% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=3,name="SpellBlockChance",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{[1]={flags=0,type="LIST",value={skillId="ShadeForm",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,type="INC",value=5,name="AuraEffect",keywordFlags=0}},nil}c["16% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=16,name="Evasion",keywordFlags=0}},nil}c["40% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=40,name="Evasion",keywordFlags=0}},nil}c["16% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["0.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Reflects 260 Physical Damage to Melee Attackers"]={{},nil}c["+15% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=15,name="FireResist",keywordFlags=0}},nil}c["200 Energy Shield Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=200,name="EnergyShieldRegen",keywordFlags=0}},nil}c["Minions deal 15% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently "}c["13% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},nil}c["1% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=256,type="INC",value=1,name="PhysicalDamage",keywordFlags=0}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"]={nil,nil}c["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius "}c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=125,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["144% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=144,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=32,name="EnergyShield",keywordFlags=0}},nil}c["35% less Mine Damage"]={{[1]={flags=0,type="MORE",value=-35,name="Damage",keywordFlags=8192}},nil}c["10% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=10,name="ChaosDamage",keywordFlags=0}},nil}c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members "}c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems "}c["+173 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=173,name="Evasion",keywordFlags=0}},nil}c["Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["+40 to all Attributes"]={{[1]={flags=0,type="BASE",value=40,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=40,name="Int",keywordFlags=0}},nil}c["Adds 35 to 105 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=35,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=105,name="LightningMax",keywordFlags=131072}},nil}c["62% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=62,name="ChaosDamage",keywordFlags=0}},nil}c["Lose Souls gained from Soul Eater on Flask Use"]={nil,"Lose Souls gained from Soul Eater on Flask Use "}c["Cannot be Ignited while on Low Life"]={nil,"Cannot be Ignited while on Low Life "}c["+100% to Fire Resistance when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,type="BASE",value=100,name="FireResist",keywordFlags=0}}," when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem "}c["+15% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Spend Energy Shield before Mana for Skill Costs"]={{},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=786432}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",value=10,name="PowerChargesDuration",keywordFlags=0}}," to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance,and "}c["20% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["25% chance to Ignite"]={{[1]={flags=0,type="BASE",value=25,name="EnemyIgniteChance",keywordFlags=0}},nil}c["40% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,type="INC",value=40,name="Damage",keywordFlags=65536}},nil}c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=3,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="AvoidIgnite",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial "}c["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["You gain a Power Charge on use You gain a Frenzy Charge on use"]={nil,"You gain a Power Charge on use You gain a Frenzy Charge on use "}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["+25% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={type="StatThreshold",stat="Str",threshold=200},flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{}," "}c["Nearby Allies gain 40% increased Mana Regeneration Rate"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="INC",value=40,name="ManaRegen",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyChillDuration",keywordFlags=0}},nil}c["10% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["Aspect of the Cat Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="CatAspect"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Gain a Power or Frenzy Charge each second while Channelling"]={nil,"Gain a Power or Frenzy Charge each second while Channelling "}c["3% increased Attack Speed with Staves"]={{[1]={flags=131073,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating "}c["-20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=-20,name="LightningResist",keywordFlags=0}},nil}c["10% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["2 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=2,name="ManaRegen",keywordFlags=0}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=38,name="ColdResist",keywordFlags=0}},nil}c["100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Armour",keywordFlags=0}}," when you have no Energy Shield "}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["Adds 17 to 37 Chaos Damage"]={{[1]={flags=0,type="BASE",value=17,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=37,name="ChaosMax",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals "}c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["10% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-10,name="Speed",keywordFlags=0}},nil}c["10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},flags=0,type="INC",value=-10,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies"]={{[1]={value={skillId="MinionInstability"},type="LIST",keywordFlags=0,name="ExtraMinionSkill",flags=0}},nil}c["Knockback direction is reversed"]={nil,"Knockback direction is reversed "}c["+3% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=3,name="BlockChanceMax",keywordFlags=0}},nil}c["Your Critical Strikes have Culling Strike"]={nil,"Your Critical Strikes have Culling Strike "}c["13% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=13,name="PhysicalDamage",keywordFlags=0}},nil}c["+10 to maximum Life"]={{[1]={flags=0,type="BASE",value=10,name="Life",keywordFlags=0}},nil}c["10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}c["You Regenerate 0.5% of Mana per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem "}c["Adds 6 to 14 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=6,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=14,name="ColdMax",keywordFlags=65536}},nil}c["Skills that would Summon a Totem Summon two Totems instead"]={nil,"Skills that would Summon a Totem Summon two Totems instead "}c["20% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Arctic Armour"},flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}},nil}c["10% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["+45 to maximum Mana"]={{[1]={flags=0,type="BASE",value=45,name="Mana",keywordFlags=0}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies "}c["Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["30% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=30,name="Damage",keywordFlags=786432}},nil}c["80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}c["Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={nil,"Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield "}c["Minions Regenerate 2.5% Life per Second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2.5,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["18% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 110 to 150 Physical Damage"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies "}c["8% increased Damage"]={{[1]={flags=0,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=25,name="ManaRegen",keywordFlags=0}},nil}c["You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies"]={nil,"You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies "}c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=20,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-20,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 20 Greater Volley"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="UniqueSupportGreaterVolley",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 16 to 29 Chaos Damage to Attacks"]={{[1]={flags=0,type="BASE",value=16,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=65536}},nil}c["8% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Cannot inflict Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotShock",flags=0}},nil}c["30% increased Armour"]={{[1]={flags=0,type="INC",value=30,name="Armour",keywordFlags=0}},nil}c["Movement Speed cannot be modified to below base value"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MovementSpeedCannotBeBelowBase",flags=0}},nil}c["26% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",keywordFlags=65536}},nil}c["+28 to maximum Mana"]={{[1]={flags=0,type="BASE",value=28,name="Mana",keywordFlags=0}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["Adds 9 to 13 Fire Damage"]={{[1]={flags=0,type="BASE",value=9,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=13,name="FireMax",keywordFlags=0}},nil}c["40% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=40,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% "}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life "}c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]={type="SkillName",skillName="Blight"},flags=0,type="INC",value=30,name="Duration",keywordFlags=0}}," Hinder You cannot be Hindered "}c["Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding "}c["Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage "}c["30% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["40% reduced Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=-40,name="MovementSpeed",keywordFlags=0}},nil}c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["15% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=15,name="CritChance",keywordFlags=0}},nil}c["Attacks have 60% chance to Poison while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=1,type="BASE",value=60,name="PoisonChance",keywordFlags=0}},nil}c["Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"]={nil,"Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial "}c["5% increased Intelligence"]={{[1]={flags=0,type="INC",value=5,name="Int",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"},actor="enemy"},flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Gain 5% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="FireDamageGainAsChaos",keywordFlags=0}},nil}c["Adds 35 to 65 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=35,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=65,name="LightningMax",keywordFlags=131072}},nil}c["4% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=4,name="Damage",keywordFlags=0}},nil}c["6% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,type="INC",value=6,name="AuraEffect",keywordFlags=0}},nil}c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=60,name="LightningDamageConvertToChaos",keywordFlags=0}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds"]={{[1]={flags=0,type="INC",value=12,name="Speed",keywordFlags=0}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds "}c["Adds 60 to 80 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=60,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=80,name="ColdMax",keywordFlags=65536}},nil}c["10% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["60% increased Attack Damage"]={{[1]={flags=1,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=200},flags=0,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["4% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["The Effect of Chill on you is reversed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SelfChillEffectIsReversed",flags=0}},nil}c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=-15,name="ManaRegen",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 4 seconds on Kill 25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="BASE",value=10,name="Damage",keywordFlags=65536}}," to gain Onslaught for 4 seconds on Kill 25% increased "}c["Auras from your Skills grant 3% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=3,name="Speed",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect "}c["10% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=10,name="StunRecovery",keywordFlags=0}},nil}c["5% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=5,name="CurseEffect",keywordFlags=0}},nil}c["10% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Triggers level 20 Death Walk when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="DeathWalk",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=50,name="CritMultiplier",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand"]={{}," to gain aCharge on Kill "}c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["20% of Physical Damage Converted to Lightning during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["10% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation "}c["Cannot be Chilled while you have Onslaught"]={nil,"Cannot be Chilled while you have Onslaught "}c["Every 8 seconds, gain Avatar of Fire for 4 seconds"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds "}c["30% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["+4% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=4,name="SpellBlockChance",keywordFlags=0}},nil}c["Creates Consecrated Ground on Use"]={{},nil}c["You have no Life Regeneration"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoLifeRegen",flags=0}},nil}c["Damage from your Critical Strikes cannot be Reflected"]={nil,"Damage from your Critical Strikes cannot be Reflected "}c["16% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=16,name="CritChance",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 4 seconds on Kill"]={{}," to gain Onslaught for 4 seconds on Kill "}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning "}c["138% increased Energy Shield"]={{[1]={flags=0,type="INC",value=138,name="EnergyShield",keywordFlags=0}},nil}c["30% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["+25 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=25,name="EnergyShield",keywordFlags=0}},nil}c["5% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=5,name="EnemyChillEffect",keywordFlags=0}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline {variant:15}2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," "}c["1% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}},nil}c["You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"]={nil,"You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life "}c["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=4096}},nil}c["15% reduced Mana Cost of Minion Skills"]={{[1]={flags=0,type="INC",value=-15,name="ManaCost",keywordFlags=0}}," Minion Skills "}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield "}c["20% chance to gain an Endurance Charge when you Block Extra gore"]={{}," to gain an Endurance Charge when you Block Extra gore "}c["225% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=225,name="ArmourAndEvasion",keywordFlags=0}},nil}c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,type="INC",keywordFlags=0,name="Speed",value=12}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances "}c["4% increased Attack Speed"]={{[1]={flags=1,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Phase Acrobatics"]={{[1]={value="Phase Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["40% more Damage"]={{[1]={flags=0,type="MORE",value=40,name="Damage",keywordFlags=0}},nil}c["+48 Life gained when you Block {variant:1}+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=48,name="Life",keywordFlags=0}}," gained when you Block {variant:1}+20 Mana gained when you Block "}c["+900 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=900,name="Accuracy",keywordFlags=0}},nil}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,type="BASE",value=25,name="Life",keywordFlags=0}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full You and nearby Allies have 8% increased Movement Speed "}c["+24 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["100% increased Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=0}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={[1]={type="PerStat",stat="ArmourOnWeapon 2",div=5},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}},nil}c["Adds 6 to 13 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=13,name="PhysicalMax",keywordFlags=0}},nil}c["6% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["You have Consecrated Ground around you while stationary"]={nil,"You have Consecrated Ground around you while stationary "}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={{[1]={value={skillId="BeaconZombieCausticCloud",minionList={[1]="RaisedZombie"}},type="LIST",keywordFlags=0,name="ExtraMinionSkill",flags=0}},nil}c["50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=50,name="LifeRecoveryRate",keywordFlags=0},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=50,name="ManaRecoveryRate",keywordFlags=0},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=50,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life"]={nil,"Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life "}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsCold",keywordFlags=0}},nil}c["+240 to maximum Life"]={{[1]={flags=0,type="BASE",value=240,name="Life",keywordFlags=0}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="LIST",value={skillId="Despair",level=21},name="ExtraCurse",keywordFlags=0}},nil}c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["+140 to Armour"]={{[1]={flags=0,type="BASE",value=140,name="Armour",keywordFlags=0}},nil}c["Cannot Evade enemy Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotEvade",flags=0}},nil}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="ElementalDamageTakenAsChaos",keywordFlags=0}},nil}c["Gain an Endurance Charge every second if you've been Hit Recently"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently "}c["You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited "}c["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes "}c["+13% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=13,name="LightningResist",keywordFlags=0}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=10,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["15% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=15,name="SpellBlockChance",keywordFlags=0}},nil}c["Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield "}c["Ignore all Movement Penalties from Armour"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:IgnoreMovementPenalties",flags=0}},nil}c["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=200,name="LifeAsChaos",keywordFlags=0}}," Leech applies to enemies 15% increased Movement Speed "}c["Purity of Elements Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Purity"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Golems have 40% less Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-40,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% increased Movement Speed"]={{[1]={flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=0}},nil}c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=0,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=8192}},nil}c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["+60 to Dexterity"]={{[1]={flags=0,type="BASE",value=60,name="Dex",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing"]={nil,"With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing "}c["75% chance to cause Enemies to Flee on use"]={{}," to cause Enemies to Flee on use "}c["25% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["Unaffected by Burning Ground while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire "}c["Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike "}c["24% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=24,name="ElementalDamage",keywordFlags=0}},nil}c["15% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=15,name="StunRecovery",keywordFlags=0}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill "}c["-2 Physical Damage taken from Attacks 40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks 40% of Physical Damage taken reflected to Attacker "}c["20% increased Accuracy Rating with Daggers"]={{[1]={flags=32768,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["330% increased Physical Damage"]={{[1]={flags=0,type="INC",value=330,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges "}c["Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage "}c["115% increased Physical Damage"]={{[1]={flags=0,type="INC",value=115,name="PhysicalDamage",keywordFlags=0}},nil}c["+28% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=28,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=28,name="ColdResist",keywordFlags=0}},nil}c["Spell Skills have 10% increased Area of Effect"]={{[1]={flags=2,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["12% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",upper=true,threshold=0},flags=0,type="INC",value=12,name="Life",keywordFlags=0}},nil}c["Life Regeneration has no effect."]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoLifeRegen",flags=0}},nil}c["275% increased Physical Damage"]={{[1]={flags=0,type="INC",value=275,name="PhysicalDamage",keywordFlags=0}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["+20 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=20,name="LifeOnHit",keywordFlags=0}},nil}c["6% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["24% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}},nil}c["18% increased Spell Damage"]={{[1]={flags=2,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["15% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=2097152}},nil}c["9% chance to Freeze"]={{[1]={flags=0,type="BASE",value=9,name="EnemyFreezeChance",keywordFlags=0}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances 15% chance for your Flasks to not consume Charges"]={{[1]={flags=0,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},"Flasks gain 3 Charges every 3 seconds 15% chance for your Flasks to not consume Charges "}c["90 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=90,name="EnergyShieldRegen",keywordFlags=0}},nil}c["Zombies deal 100% more Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=100,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% chance to gain a Power Charge when you Block +6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," to gain a Power Charge when you Block +6% Chance "}c["3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,type="INC",value=3,name="Int",keywordFlags=0}},nil}c["Cannot Block"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockAttacks",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockSpells",flags=0}},nil}c["+25 to maximum Life"]={{[1]={flags=0,type="BASE",value=25,name="Life",keywordFlags=0}},nil}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage "}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill Conduit"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill Conduit "}c["+9% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=9,name="ChaosResist",keywordFlags=0}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},[2]={type="StatThreshold",stat="PowerCharges",threshold=1},flags=0,type="BASE",keywordFlags=16384,name="ElementalDamageTaken",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["22% increased Spell Damage"]={{[1]={flags=2,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,type="INC",value=16,name="Damage",keywordFlags=65536}},nil}c["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second "}c["Minions Leech 0.6% of Damage as Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.6,name="DamageLifeLeech",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% increased Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="BlockRecovery",keywordFlags=0}},nil}c["50% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=50,name="LightningDamage",keywordFlags=0}},nil}c["Cannot Block Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockAttacks",flags=0}},nil}c["8% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=80,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Take 200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"]={nil,"200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield "}c["Adds 35 to 90 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=35,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=90,name="ColdMax",keywordFlags=65536}},nil}c["4% increased Skeleton Movement Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=1,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["8% increased Cold Damage"]={{[1]={flags=0,type="INC",value=8,name="ColdDamage",keywordFlags=0}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,type="INC",value=14,name="Damage",keywordFlags=65536}},nil}c["+36 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=36,name="Evasion",keywordFlags=0}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalDamage",keywordFlags=0}}," Bow as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element "}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "}c["+20 to Strength"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill "}c["-10% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-10,name="FireResist",keywordFlags=0}},nil}c["+60% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=60,name="CritMultiplier",keywordFlags=0}},nil}c["20% chance to gain a Endurance Charge on Kill {variant:24}4% of Life Regenerated per second"]={{}," "}c["50% increased Effect of Curses on you"]={{[1]={flags=0,type="INC",value=50,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["10% of Physical Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill "}c["2% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["0.7% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.7,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["20% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Your Critical Strike Chance is Lucky while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},value=true,type="FLAG",keywordFlags=0,name="CritChanceLucky",flags=0}},nil}c["Adds 12 to 22 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["All Sockets are White"]={nil,"All Sockets are White "}c["Bow Attacks have 10% chance to cause Bleeding"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=512}},nil}c["111% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=111,name="EnemyShockDuration",keywordFlags=0},[2]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=111,name="EnemyFreezeDuration",keywordFlags=0},[3]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=111,name="EnemyChillDuration",keywordFlags=0},[4]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=111,name="EnemyIgniteDuration",keywordFlags=0},[5]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=111,name="EnemyPoisonDuration",keywordFlags=0},[6]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=111,name="EnemyBleedDuration",keywordFlags=0}},nil}c["2% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=256,type="INC",value=2,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=20,name="LifeLeechRate",keywordFlags=0}},nil}c["20% chance to Avoid Projectiles while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to Avoid "}c["Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges"]={nil,"Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges "}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={{[1]={flags=8388608,type="BASE",value=300,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of an Element "}c["10% chance to Curse Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit "}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=2,type="BASE",value=0.2,name="DamageEnergyShieldLeech",keywordFlags=0}},nil}c["Adds 98 to 178 Physical Damage"]={{[1]={flags=0,type="BASE",value=98,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=178,name="PhysicalMax",keywordFlags=0}},nil}c["Your Critical Strikes do not deal extra Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoCritMultiplier",flags=0}},nil}c["+12 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=12,name="EnergyShield",keywordFlags=0}},nil}c["+33 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=33,name="EnergyShield",keywordFlags=0}},nil}c["Minions Recover 1% of their Maximum Life when they Block"]={nil,"Recover 1% of their Maximum Life when they Block "}c["60% increased Defences from Equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=60,name="Defences",keywordFlags=0}},nil}c["Adds 8 to 13 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=13,name="PhysicalMax",keywordFlags=65536}},nil}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["Adds 10 to 120 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=10,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=120,name="LightningMax",keywordFlags=131072}},nil}c["+96 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=96,name="EnergyShield",keywordFlags=0}},nil}c["+1000 Armour while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}}," while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire "}c["Your Chaos Damage can Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ChaosCanShock",flags=0}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention "}c["20% less Lightning Damage taken"]={{[1]={flags=0,type="MORE",value=-20,name="LightningDamageTaken",keywordFlags=0}},nil}c["200% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["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."]={nil,"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. "}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use "}c["13% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="MagicItem",threshold=1},flags=0,type="INC",value=13,name="LootQuantity",keywordFlags=0}},nil}c["Adds 75 to 358 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=358,name="PhysicalMax",keywordFlags=0}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=30,name="EnduranceChargesMax",keywordFlags=0}}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["40% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["+100 to maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["Burning Hoofprints"]={nil,"Burning Hoofprints "}c["15% increased Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyChillDuration",keywordFlags=0}},nil}c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked Enemies "}c["Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["+10 to Armour"]={{[1]={flags=0,type="BASE",value=10,name="Armour",keywordFlags=0}},nil}c["16% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["8% increased Impale Effect"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}}," Impale "}c["+175 to maximum Mana"]={{[1]={flags=0,type="BASE",value=175,name="Mana",keywordFlags=0}},nil}c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=70,name="EnemyStunDuration",keywordFlags=0}},nil}c["20% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-20,name="Speed",keywordFlags=0}},nil}c["You gain Unholy Might for 10 seconds on Block"]={nil,"You gain Unholy Might for 10 seconds on Block "}c["2% increased Attack Speed with Staves"]={{[1]={flags=131073,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["30% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}c["15% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-15,name="Mana",keywordFlags=0}},nil}c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,type="INC",value=-8,name="FireDamageTaken",keywordFlags=0},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,type="INC",value=-8,name="ColdDamageTaken",keywordFlags=0},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,type="INC",value=-8,name="LightningDamageTaken",keywordFlags=0}},nil}c["+13 to maximum Life"]={{[1]={flags=0,type="BASE",value=13,name="Life",keywordFlags=0}},nil}c["10% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=0}},nil}c["20% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["12% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["8% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["+113% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=113,name="CritMultiplier",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIncreasedAreaOfEffect",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill "}c["Lose 15 Life for each Enemy hit by your Spells"]={nil,"Lose 15 Life for each Enemy hit by your Spells "}c["16% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["320% increased Physical Damage"]={{[1]={flags=0,type="INC",value=320,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 25 to 36 Physical Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="PhysicalMax",keywordFlags=0}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["Trigger Commandment of Inferno on Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="EnchantmentOfInfernoOnKill4",level=1,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,type="BASE",value=110,name="PhysicalDamageGainAsLightning",keywordFlags=0},[2]={flags=8192,type="BASE",value=110,name="PhysicalDamageGainAsCold",keywordFlags=0},[3]={flags=8192,type="BASE",value=110,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Phasing"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["15% reduced Flask Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}c["33% increased Spell Damage"]={{[1]={flags=2,type="INC",value=33,name="Damage",keywordFlags=0}},nil}c["40% chance to Chill Attackers for 4 seconds on Block 40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,type="BASE",value=40,name="EnemyShockChance",keywordFlags=0}}," to Chill Attackers for 4 seconds on Block 40% chance Attackers for 4 seconds on Block "}c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=262144}},nil}c["80% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=80,name="OnslaughtEffect",keywordFlags=0}},nil}c["Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["19% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=19,name="ManaRegen",keywordFlags=0}},nil}c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use "}c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy "}c["Vaal Pact"]={{[1]={value="Vaal Pact",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["+1 to Level of Socketed Melee Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="melee",value=1},name="GemProperty",keywordFlags=0}},nil}c["+48 Life gained when you Block"]={{[1]={flags=0,type="BASE",value=48,name="Life",keywordFlags=0}}," gained when you Block "}c["Grants level 22 Blight Skill"]={{[1]={flags=0,type="LIST",value={skillId="Blight",level=22},name="ExtraSkill",keywordFlags=0}},nil}c["12% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=2097152}},nil}c["80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},flags=0,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["Minions have +5% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="ElementalResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["21% increased Spell Damage"]={{[1]={flags=2,type="INC",value=21,name="Damage",keywordFlags=0}},nil}c["74% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=74,name="ArmourAndEvasion",keywordFlags=0}},nil}c["8% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=56,name="ColdMin",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=88,name="ColdMax",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy "}c["+30 to maximum Life"]={{[1]={flags=0,type="BASE",value=30,name="Life",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy "}c["50% increased Armour"]={{[1]={flags=0,type="INC",value=50,name="Armour",keywordFlags=0}},nil}c["6% increased Armour"]={{[1]={flags=0,type="INC",value=6,name="Armour",keywordFlags=0}},nil}c["10% chance to Knock Enemies Back on hit"]={{[1]={flags=0,type="BASE",value=10,name="EnemyKnockbackChance",keywordFlags=0}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies "}c["Gain 5% of Lightning Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="LightningDamageGainAsChaos",keywordFlags=0}},nil}c["Enemies Ignited by an Attack Burn 20% faster"]={{[1]={flags=1,type="INC",value=20,name="IgniteBurnFaster",keywordFlags=0}},nil}c["Adds 38 to 50 Cold Damage"]={{[1]={flags=0,type="BASE",value=38,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={nil,"Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets "}c["0.5% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["100% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Accuracy",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions "}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=340,name="Defences",keywordFlags=0}},nil}c["+3 to Level of Socketed Warcry Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="warcry",value=3},name="GemProperty",keywordFlags=0}},nil}c["Critical Strikes have Culling Strike"]={nil,"Critical Strikes have Culling Strike "}c["50% increased Effect of Socketed Jewels"]={{[1]={flags=0,type="INC",value=50,name="SocketedJewelEffect",keywordFlags=0}},nil}c["Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning"]={nil,"Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning "}c["You have no Armour or Energy Shield"]={{[1]={value=-100,type="MORE",keywordFlags=0,name="Armour",flags=0},[2]={value=-100,type="MORE",keywordFlags=0,name="EnergyShield",flags=0}},nil}c["12% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["100% increased total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=100,name="LifeLeechRate",keywordFlags=0}},nil}c["20% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded "}c["10% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["+70 to Strength"]={{[1]={flags=0,type="BASE",value=70,name="Str",keywordFlags=0}},nil}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["Immune to Shock while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning "}c["Adds 1 to 4 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=4,name="LightningMax",keywordFlags=65536}},nil}c["5% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=5,name="ElementalDamage",keywordFlags=0}}," Experience gain 20% increased "}c["14% increased maximum Life"]={{[1]={flags=0,type="INC",value=14,name="Life",keywordFlags=0}},nil}c["Curse Enemies with Temporal Chains on Hit"]={{[1]={flags=0,type="LIST",value={skillId="TemporalChains",level=1,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["90% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=90,name="LootRarity",keywordFlags=0}},nil}c["+13 to Strength"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0}},nil}c["10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Cold-only Splash Damage to surrounding targets"]={nil,"Cold-only Splash Damage to surrounding targets "}c["Regenerate 35 Mana per second if all Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="NonCorruptedItem",upper=true,threshold=0},flags=0,type="BASE",value=35,name="ManaRegen",keywordFlags=0}},nil}c["20% Chance for Energy Shield Recharge to Start when you Block"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}}," for Recharge to Start when you Block "}c["+1% to Chaos Resistance per Poison on you"]={{[1]={[1]={type="Multiplier",var="PoisonStack"},flags=0,type="BASE",value=1,name="ChaosResist",keywordFlags=0}},nil}c["30% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=10,name="CooldownRecovery",keywordFlags=4096}},nil}c["25% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Culling Strike Life Leech effects are not removed at Full Life"]={nil,"Culling Strike Life Leech effects are not removed at Full Life "}c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}},nil}c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=155,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Cannot be Shocked if Intelligence is higher than Strength"]={{[1]={[1]={type="Condition",var="IntHigherThanStr"},value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}c["+150 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=150,name="Evasion",keywordFlags=0}},nil}c["+1 to maximum number of Summoned Totems"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTotemLimit",keywordFlags=0}},nil}c["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block "}c["Adds 6 to 12 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=65536}},nil}c["+1 Energy Shield gained on Kill per Level {variant:3,4}+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},[2]={type="Multiplier",var="Level"},flags=0,type="BASE",keywordFlags=0,name="EnergyShield",value=1}}," gained on Kill {variant:3,4}+1 to maximum Life "}c["50% increased Duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=2,name="ElementalDamage",keywordFlags=0}}," to Avoid when Hit "}c["Adds 13 to 23 Fire Damage"]={{[1]={flags=0,type="BASE",value=13,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="FireMax",keywordFlags=0}},nil}c["Adds 24 to 36 Chaos Damage"]={{[1]={flags=0,type="BASE",value=24,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="ChaosMax",keywordFlags=0}},nil}c["100% increased Spell Damage taken when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,type="INC",value=100,name="DamageTaken",keywordFlags=0}}," when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana "}c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-40,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["5% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Discipline Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Discipline"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["30% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}c["20% reduced Chill Duration on You"]={{[1]={flags=0,type="INC",value=-20,name="EnemyChillDuration",keywordFlags=0}}," on You "}c["+65 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=65,name="Accuracy",keywordFlags=0}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyChillDuration",keywordFlags=0}},nil}c["20% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["Adds 2 to 3 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=2,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=3,name="ColdMax",keywordFlags=65536}},nil}c["-5% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=-5,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=-5,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=-5,name="ChaosResistMax",keywordFlags=0}},nil}c["1% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="INC",value=1,name="LightningDamage",keywordFlags=0}},nil}c["30% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["+12% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=12,name="LightningResist",keywordFlags=0}},nil}c["+12% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="LightningResist",keywordFlags=0}},nil}c["25% chance to Scorch Enemies Cannot inflict Ignite"]={{}," to Scorch Enemies Cannot inflict Ignite "}c["+2 to Maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["30% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block"]={{}," to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block "}c["10% increased Brand Attachment range"]={{}," Brand Attachment range "}c["30% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=30,name="Damage",keywordFlags=65536}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill "}c["Socketed Gems are supported by level 25 Melee Splash"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMeleeSplash",level=25},name="ExtraSupport",keywordFlags=0}},nil}c["Gain 5% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,type="INC",value=3,name="Speed",keywordFlags=0}}," for each Map Item Modifier affecting the "}c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level "}c["You cannot Recharge Energy Shield"]={nil,"You cannot Recharge Energy Shield "}c["10% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=3,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["190% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"]={nil,"You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill "}c["+60 to maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["2% additional Chance to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced Stun and Block Recovery"]={{[1]={flags=0,type="BASE",value=2,name="StunRecovery",keywordFlags=0}}," to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced "}c["Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently"]={{[1]={[1]={type="Condition",varList={[1]="KilledRecently",[2]="MinionsKilledRecently"}},flags=0,type="LIST",value={mod={flags=0,type="INC",value=12,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Gain Chilling, Shocking and Igniting Conflux for 2 seconds"]={{},nil}c["20% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["25% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",keywordFlags=0}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["Curse Enemies with level 5 Vulnerability on Block"]={{[1]={flags=0,type="LIST",value={skillId="Vulnerability",level=5,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen "}c["+100% to Cold Resistance when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,type="BASE",value=100,name="ColdResist",keywordFlags=0}}," when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem "}c["Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="EnduranceChargeOnMeleeStun",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,type="INC",value=310,name="PhysicalDamage",keywordFlags=0}},nil}c["40% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="PoisonChance",keywordFlags=0}},nil}c["230% increased Physical Damage"]={{[1]={flags=0,type="INC",value=230,name="PhysicalDamage",keywordFlags=0}},nil}c["Spell Skills have 5% increased Area of Effect"]={{[1]={flags=2,type="INC",value=5,name="AreaOfEffect",keywordFlags=0}},nil}c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Zombies deal 90% more Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=90,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Your Cold Damage can Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ColdCanIgnite",flags=0}},nil}c["+15% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["10% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=262144}},nil}c["25% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="LootQuantity",keywordFlags=0}},nil}c["Golems have +1000 to Armour"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit "}c["175% increased Physical Damage"]={{[1]={flags=0,type="INC",value=175,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 2 to 3 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=2,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=3,name="FireMax",keywordFlags=65536}},nil}c["4% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=4,name="Duration",keywordFlags=0}},nil}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=63,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Herald of Purity has 40% increased Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Herald of Purity"},flags=0,type="INC",value=40,name="BuffEffect",keywordFlags=0}},nil}c["Attacks always inflict Bleeding while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=1}},nil}c["30% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=30,name="AvoidChilled",keywordFlags=0}},nil}c["75% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=75,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["16% increased Spell Damage"]={{[1]={flags=2,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value "}c["Enemies you Kill that are affected by Elemental Ailments"]={nil,"Enemies you Kill that are affected by Elemental Ailments "}c["10% increased Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=29,name="ChaosResist",keywordFlags=0}},nil}c["+28 to maximum Life"]={{[1]={flags=0,type="BASE",value=28,name="Life",keywordFlags=0}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["10% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,type="INC",value=10,name="AuraEffect",keywordFlags=0}},nil}c["Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use "}c["Spectres have 100% increased maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["2% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["50% chance to avoid Bleeding"]={{[1]={flags=0,type="BASE",value=50,name="AvoidBleed",keywordFlags=0}},nil}c["15% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=100,name="ManaRegen",keywordFlags=0}},nil}c["40% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}},nil}c["50% increased Block Recovery"]={{[1]={flags=0,type="INC",value=50,name="BlockRecovery",keywordFlags=0}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed "}c["+600 to Armour"]={{[1]={flags=0,type="BASE",value=600,name="Armour",keywordFlags=0}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Staff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=131072}},nil}c["25% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-25,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Adds 25 to 50 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="FireMax",keywordFlags=0}},nil}c["+220 to Armour"]={{[1]={flags=0,type="BASE",value=220,name="Armour",keywordFlags=0}},nil}c["+3% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=3,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=262144}},nil}c["Channelling Skills have 5% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["20% increased Damage over Time"]={{[1]={flags=8,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life "}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",keywordFlags=262144,name="Damage",value=60}},nil}c["25% increased Zombie Size {variant:1,2,3}Zombies deal 100% increased Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Size {variant:1,2,3}Zombies deal 100% increased "}c["+2 to Level of Socketed Herald Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="herald",value=2},name="GemProperty",keywordFlags=0}},nil}c["12% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=12,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Recover 5% of Maximum Life on Kill"]={nil,"Recover 5% of Maximum Life on Kill "}c["+40 to Strength"]={{[1]={flags=0,type="BASE",value=40,name="Str",keywordFlags=0}},nil}c["20% of Fire Damage taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["Socketed Curse Skills ignore Curse Limit +40 to Intelligence"]={nil,"Socketed Curse Skills ignore Curse Limit +40 to Intelligence "}c["25% increased maximum Life"]={{[1]={flags=0,type="INC",value=25,name="Life",keywordFlags=0}},nil}c["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"]={nil,"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 "}c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds "}c["+30 Life gained on Killing Ignited Enemies"]={{[1]={flags=0,type="BASE",value=30,name="LifeOnKill",keywordFlags=0}}," ing Ignited Enemies "}c["Recover 75% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use "}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=120,name="PhysicalMin",keywordFlags=262144},[2]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=165,name="PhysicalMax",keywordFlags=262144}},"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["+1% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=1,name="ColdResistMax",keywordFlags=0}},nil}c["3% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry "}c["Adds an additional Arrow"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=1}},nil}c["-1 to maximum number of Summoned Totems."]={{[1]={flags=0,type="BASE",value=-1,name="ActiveTotemLimit",keywordFlags=0}},nil}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item "}c["0.4% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.4,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Adds 19-43 Chaos Damage to Attacks"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=43,name="ChaosMax",keywordFlags=65536}},nil}c["+100 to Maximum Mana per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["+1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}}," for each time you've Blocked in the past 10 seconds "}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,type="BASE",value=15,name="LightningPenetration",keywordFlags=0}},nil}c["13% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=13,name="CooldownRecovery",keywordFlags=4096}},nil}c["Socketed Gems deal 63 to 94 additional Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=63,name="FireMin",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0},[2]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=94,name="FireMax",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Enemies Chilled by you take 100% increased Burning Damage"]={{[1]={[1]={type="ActorCondition",var="Chilled",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="FireDamageTakenOverTime",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 3% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=3,name="ElementalPenetration",keywordFlags=0}},nil}c["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=16,name="SpellDodgeChance",keywordFlags=0}},nil}c["30% increased Damage against Rare monsters {variant:2}30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=262144}}," against Rare monsters {variant:2}30% increased Damage against Rare monsters "}c["200% of Life Leech applies to enemies as Chaos Damage"]={{[1]={flags=0,type="BASE",value=200,name="LifeAsChaos",keywordFlags=0}}," Leech applies to enemies "}c["Energy Shield protects Mana instead of Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="EnergyShieldProtectsMana",flags=0}},nil}c["Adds 5 to 11 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=11,name="PhysicalMax",keywordFlags=65536}},nil}c["0.3% of Physical Attack Damage Leeched as Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=1,type="BASE",value=0.3,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Adds 6 to 14 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=6,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=14,name="ColdMax",keywordFlags=196608}},nil}c["Anger has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Anger"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination "}c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,type="LIST",value={skillId="SpiderAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 140 to 210 Cold Damage"]={{[1]={flags=0,type="BASE",value=140,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=210,name="ColdMax",keywordFlags=0}},nil}c["10% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%"]={{[1]={[1]={type="Multiplier",limit=100,var="SkillUsedRecently",limitTotal=true},flags=0,type="INC",value=10,name="TailwindEffectOnSelf",keywordFlags=0}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill "}c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,type="INC",value=65,name="IgniteBurnSlower",keywordFlags=0}},nil}c["You cannot have non-Golem Minions 25% reduced Golem Size"]={nil,"You cannot have non-Golem Minions 25% reduced Golem Size "}c["10% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["5% chance to Avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=5,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=5,name="AvoidIgnite",keywordFlags=0}},nil}c["10% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}c["Enemies can have 1 additional Curse"]={{[1]={value=1,type="BASE",keywordFlags=0,name="EnemyCurseLimit",flags=0}},nil}c["165% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=165,name="Evasion",keywordFlags=0}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy "}c["+23% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={type="StatThreshold",stat="Str",threshold=200},flags=0,type="BASE",value=23,name="ElementalResist",keywordFlags=0}},nil}c["20% more Damage with Ignite"]={{[1]={flags=0,type="MORE",value=20,name="Damage",keywordFlags=4194304}},nil}c["40% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-40,name="PhysicalDamage",keywordFlags=0}}," Minimum "}c["Adds 22 to 32 Physical Damage"]={{[1]={flags=0,type="BASE",value=22,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=32,name="PhysicalMax",keywordFlags=0}},nil}c["+50 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=50,name="Accuracy",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim on Hit "}c["40% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=1048576}},nil}c["10% more Damage while you have at least one nearby Ally"]={{[1]={[1]={type="MultiplierThreshold",var="NearbyAlly",threshold=1},flags=0,type="MORE",value=10,name="Damage",keywordFlags=0}},nil}c["20% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyChillDuration",keywordFlags=0}},nil}c["15% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=15,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+125 to maximum Mana"]={{[1]={flags=0,type="BASE",value=125,name="Mana",keywordFlags=0}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill "}c["20% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="SpellBlockChance",keywordFlags=0}},nil}c["do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={type="PerStat",stat="Evasion",div=450},flags=1,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["10% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-10,name="TrapDuration",keywordFlags=0}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range "}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={{[1]={flags=0,type="INC",value=-3,name="DamageTaken",keywordFlags=0}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["3 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=3,name="LifeRegen",keywordFlags=0}},nil}c["Extra Gore {variant:1}10% chance to cause Bleeding on Hit"]={nil,"Extra Gore {variant:1}10% chance to cause Bleeding on Hit "}c["20% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["Adds 400 to 600 Fire Damage"]={{[1]={flags=0,type="BASE",value=400,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="FireMax",keywordFlags=0}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement"]={{}," Attack, Cast and Movement "}c["+1 to Maximum Life per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["+16 to maximum Life"]={{[1]={flags=0,type="BASE",value=16,name="Life",keywordFlags=0}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["100% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=100,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["Adds 1 to 12 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=12,name="LightningMax",keywordFlags=131072}},nil}c["No Damage Multiplier for Ailments from Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoCritDegenMultiplier",flags=0}},nil}c["10% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience "}c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds on Critical Strike"]={{}," to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds "}c["Removes all mana. Spend Life instead of Mana for Skills"]={{[1]={value=-100,type="MORE",keywordFlags=0,name="Mana",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="BloodMagic",flags=0}},nil}c["300% increased Physical Damage"]={{[1]={flags=0,type="INC",value=300,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=10,name="CurseEffect",keywordFlags=0}},nil}c["220% increased Physical Damage"]={{[1]={flags=0,type="INC",value=220,name="PhysicalDamage",keywordFlags=0}},nil}c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["18% increased Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=18,name="AreaOfEffect",keywordFlags=2}},nil}c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=20,name="Damage",keywordFlags=0}}," to gain a Power Charge on Hit 6% increased "}c["Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"]={nil,"Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana "}c["+3% to all maximum Resistances while you have no Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={[1]={type="StatThreshold",stat="EnduranceCharges",upper=true,threshold=0},flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}},nil}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed "}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage "}c["Adds 1 to 120 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=120,name="LightningMax",keywordFlags=65536}},nil}c["15% increased Spell Damage"]={{[1]={flags=2,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Cannot Block Spells"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockSpells",flags=0}},nil}c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill "}c["+14 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=14,name="ManaOnHit",keywordFlags=0}},nil}c["25% chance to gain a Power Charge on Throwing a Trap Grants level 20 Bear Trap Skill"]={{}," to gain a Power Charge on Throwing a Grants level 20Skill "}c["6% increased Burning Damage for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="INC",value=6,name="FireDamage",keywordFlags=134479872}}," for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits "}c["-18 Physical Damage taken from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a Trap"]={{[1]={flags=0,type="BASE",value=-18,name="PhysicalDamageTaken",keywordFlags=4096}}," from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a "}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,type="BASE",keywordFlags=0,name="ColdDegen",value=400}},nil}c["25% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect "}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value "}c["60% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=60,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Cannot be Shocked while Chilled"]={nil,"Cannot be Shocked while Chilled "}c["80% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=80,name="BlockChance",keywordFlags=0}}," applied to s "}c["22% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=22,name="ElementalDamage",keywordFlags=65536}},nil}c["45% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=45,name="ManaRegen",keywordFlags=0}},nil}c["22% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=22,name="PhysicalDamage",keywordFlags=0}},nil}c["+8% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ChaosResist",keywordFlags=0}},nil}c["2% chance to Dodge Attacks per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=2,name="AttackDodgeChance",keywordFlags=0}},nil}c["Adds 1 to 4 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=4,name="LightningMax",keywordFlags=196608}},nil}c["+2 to Level of Socketed Bow Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="bow",value=2},name="GemProperty",keywordFlags=0}},nil}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["25% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["60% increased Armour"]={{[1]={flags=0,type="INC",value=60,name="Armour",keywordFlags=0}},nil}c["20% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockEffect",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="EnemyChillEffect",keywordFlags=0},[3]={flags=0,type="INC",value=20,name="EnemyFreezeEffech",keywordFlags=0}},nil}c["Minions have 20% reduced Maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=-20,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+500 to Armour"]={{[1]={flags=0,type="BASE",value=500,name="Armour",keywordFlags=0}},nil}c["25% chance to Trigger level 20 Animate Weapon on Kill"]={{[1]={flags=0,type="LIST",value={skillId="AnimateWeapon",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["80% increased Burning Damage"]={{[1]={flags=0,type="INC",value=80,name="FireDamage",keywordFlags=134217728}},nil}c["6% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["to 50% increased Damage with Hits to targets"]={nil,"to 50% increased Damage with Hits to targets "}c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies on Hit "}c["16% increased Attack Damage"]={{[1]={flags=1,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["All Sockets are White Socketed Gems have Elemental Equilibrium"]={nil,"All Sockets are White Socketed Gems have Elemental Equilibrium "}c["Adds 63 to 98 Chaos Damage"]={{[1]={flags=0,type="BASE",value=63,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=98,name="ChaosMax",keywordFlags=0}},nil}c["30% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="BlockChance",keywordFlags=0}},nil}c["Increases and Reductions to Light Radius also apply to Accuracy"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightRadiusAppliesToAccuracy",flags=0}},nil}c["20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}}," with Her Blessing "}c["+75% to Critical Strike Multiplier during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=75,name="CritMultiplier",keywordFlags=0}},nil}c["12% increased maximum Life"]={{[1]={flags=0,type="INC",value=12,name="Life",keywordFlags=0}},nil}c["40% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["20% increased maximum Life"]={{[1]={flags=0,type="INC",value=20,name="Life",keywordFlags=0}},nil}c["-50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=-50,name="CritMultiplier",keywordFlags=0}},nil}c["Attack Skills deal 6% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=6,name="Damage",keywordFlags=65536}},nil}c["+25% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0}},nil}c["Attack Skills deal 8% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "}c["25% increased Effect of Buffs granted by Socketed Golem Skills"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["5% chance to Ignite"]={{[1]={flags=0,type="BASE",value=5,name="EnemyIgniteChance",keywordFlags=0}},nil}c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={nil,"5 Maximum Void Charges Gain a Void Charge every 0.5 seconds "}c["Enemies Taunted by you take 20% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,type="INC",value=20,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={[1]={type="Condition",var="AffectedByPurityofFire"},flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam "}c["Cannot be Stunned while you have Ghost Shrouds"]={nil,"Cannot be Stunned while you have Ghost Shrouds "}c["Adds 235 to 290 Physical Damage"]={{[1]={flags=0,type="BASE",value=235,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=290,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect"]={{}," Soul Cost "}c["Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,type="BASE",value=15,name="ColdPenetration",keywordFlags=0}},nil}c["40% chance to Avoid being Stunned while Channelling Channelling Skills deal 30% increased Damage"]={{[1]={flags=0,type="BASE",value=40,name="AvoidStun",keywordFlags=0}}," while Channelling Channelling Skills deal 30% increased Damage "}c["12% increased Fire Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",keywordFlags=65536}},nil}c["2% of Chaos Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["Projectiles gain Damage as they travel farther, dealing up"]={nil,"Projectiles gain Damage as they travel farther, dealing up "}c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=65536}},nil}c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=10,name="PhysicalMax",keywordFlags=65536}},nil}c["4% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,type="INC",value=4,name="Damage",keywordFlags=65536}},nil}c["Adds 7 to 15 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=7,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=15,name="ColdMax",keywordFlags=196608}},nil}c["-100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=-100,name="Accuracy",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["50% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-50,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="Condition",neg=true,var="BeenHitRecently"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=262144,name="LifeRecoveryRate",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="Condition",neg=true,var="BeenHitRecently"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=262144,name="ManaRecoveryRate",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="Condition",neg=true,var="BeenHitRecently"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=262144,name="EnergyShieldRecoveryRate",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned "}c["Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges "}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier "}c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["30% of Damage you Reflect to enemies is gained as Life"]={{[1]={flags=0,type="BASE",value=30,name="Damage",keywordFlags=0}}," you Reflect to enemies is gained as Life "}c["6% increased Attack Speed"]={{[1]={flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["30% increased Light Radius"]={{[1]={flags=0,type="INC",value=30,name="LightRadius",keywordFlags=0}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% chance to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill "}c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredConsecrate",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["10% Chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}c["130% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=130,name="Evasion",keywordFlags=0}},nil}c["35% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=35,name="EnemyChillDuration",keywordFlags=0}},nil}c["+20% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=20,name="ColdDotMultiplier",keywordFlags=0}},nil}c["You are Immune to Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidBleed",flags=0}},nil}c["20% chance to Maim on Hit 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=0}}," to Maim on Hit 20% chance "}c["+63% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=63,name="ColdResist",keywordFlags=0}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=50,name="ColdDamage",keywordFlags=0}}," to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 to s "}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=458752},[2]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=458752}},nil}c["+4% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=4,name="SpellBlockChance",keywordFlags=0}},nil}c["Marauder: Melee Skills have 15% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},flags=256,type="INC",value=15,name="AreaOfEffect",keywordFlags=0}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,type="BASE",value=14,name="Mana",keywordFlags=0}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill "}c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=43,name="EnemyChillDuration",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs have -10% to All Resistances"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="MultiplierThreshold",threshold=1,var="Spider's WebStack"},flags=0,type="BASE",value=-10,name="ElementalResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={[1]={type="MultiplierThreshold",threshold=1,var="Spider's WebStack"},flags=0,type="BASE",value=-10,name="ChaosResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead "}c["Damage Penetrates 10% Lightning Resistance during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="LightningPenetration",keywordFlags=0}},nil}c["+15% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=15,name="LightningResist",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["+40% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=0,type="BASE",value=40,name="CritMultiplier",keywordFlags=262144}},nil}c["Minions have 28% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=28,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["5% increased Area of Effect"]={{[1]={flags=0,type="INC",value=5,name="AreaOfEffect",keywordFlags=0}},nil}c["30% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=30,name="ProjectileSpeed",keywordFlags=0}},nil}c["15% increased Mine Duration"]={{[1]={flags=0,type="INC",value=15,name="MineDuration",keywordFlags=0}},nil}c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to "}c["+5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second "}c["Has no Sockets"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoSockets",flags=0}},nil}c["+67 to maximum Life"]={{[1]={flags=0,type="BASE",value=67,name="Life",keywordFlags=0}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth "}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=65536}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,type="LIST",value={skillId="CatAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["22% Chance to Block"]={{[1]={flags=0,type="BASE",value=22,name="BlockChance",keywordFlags=0}},nil}c["30% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["80% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain a Power Charge on non-Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike "}c["2% increased Minion Attack and Cast Speed per Skeleton you own 2% increased Minion Duration per Zombie you own"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=2,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Minion per you own 2% increased Minion Duration per Zombie you own "}c["Minions have 5% additional chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions have 4% additional chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike"]={nil,"Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike "}c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=12,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=0}},nil}c["113% increased Physical Damage"]={{[1]={flags=0,type="INC",value=113,name="PhysicalDamage",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}}," for each Summoned "}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},[3]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",keywordFlags=0,name="BleedChance",value=20}},nil}c["450% increased Physical Damage"]={{[1]={flags=0,type="INC",value=450,name="PhysicalDamage",keywordFlags=0}},nil}c["Curses in this item are reflected back to you"]={nil,"Curses in this item are reflected back to you "}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies "}c["50% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-50,name="Mana",keywordFlags=0}},nil}c["155% increased Physical Damage"]={{[1]={flags=0,type="INC",value=155,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["5% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=5,name="Duration",keywordFlags=0}},nil}c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={{[1]={[1]={type="Condition",var="Divinity"},value=50,type="MORE",keywordFlags=0,name="ElementalDamage",flags=0},[2]={[1]={type="Condition",var="Divinity"},value=-20,type="MORE",keywordFlags=0,name="ElementalDamageTaken",flags=0}},nil}c["14% increased Spell Damage"]={{[1]={flags=2,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["10.0 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="LifeRegen",keywordFlags=0}},nil}c["6% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-6,name="ManaReserved",keywordFlags=0}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem "}c["100% increased Warcry Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=4}},nil}c["25% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="MORE",value=25,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["0.8% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,type="BASE",value=0.8,name="DamageEnergyShieldLeech",keywordFlags=0}},nil}c["-20 Fire Damage taken when Hit"]={{[1]={flags=0,type="BASE",value=-20,name="FireDamageTakenWhenHit",keywordFlags=0}},nil}c["50% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},nil}c["Golems have 38% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=38,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground "}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-3,name="ManaCost",keywordFlags=0}},nil}c["16% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=16,name="ElementalDamage",keywordFlags=0}},nil}c["Gain 4% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=4,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["You can have an additional Brand Attached to an Enemy"]={nil,"You can have an additional Brand Attached to an Enemy "}c["Adds 40 to 70 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=40,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=131072}},nil}c["50% reduced Experience gain"]={{}," Experience gain "}c["+40% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=40,name="ElementalResist",keywordFlags=0}},nil}c["20% increased Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=10,name="ManaRegen",keywordFlags=0}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["26% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=26,name="CritChance",keywordFlags=0}},nil}c["Skeletons deal 40% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["4% increased Brand Activation frequency"]={{[1]={flags=0,type="INC",value=4,name="BrandActivationFrequency",keywordFlags=0}},nil}c["+1 to Level of Socketed Bow Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="bow",value=1},name="GemProperty",keywordFlags=0}},nil}c["Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Gains no Charges During effect of any Soul Ripper Flask "}c["3% increased maximum Life"]={{[1]={flags=0,type="INC",value=3,name="Life",keywordFlags=0}},nil}c["+24 to Dexterity"]={{[1]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0}},nil}c["Projectiles Pierce 5 additional Targets while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=5,name="PierceCount",keywordFlags=0}},nil}c["+45 to Dexterity"]={{[1]={flags=0,type="BASE",value=45,name="Dex",keywordFlags=0}},nil}c["20% increased Mine Detonation Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="MineDetonationAreaOfEffect",keywordFlags=0}},nil}c["+0 seconds to Avian's Might Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Avian"},flags=0,type="BASE",value=0,name="PrimaryDuration",keywordFlags=0}},nil}c["63% increased Physical Damage"]={{[1]={flags=0,type="INC",value=63,name="PhysicalDamage",keywordFlags=0}},nil}c["+35 to maximum Mana"]={{[1]={flags=0,type="BASE",value=35,name="Mana",keywordFlags=0}},nil}c["30% increased Damage over Time"]={{[1]={flags=8,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["10% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["18% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=18,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Grants level 20 Summon Bestial Ursa Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonBeastialUrsa",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["50% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["10% chance to Freeze"]={{[1]={flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=0}},nil}c["+15 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=15,name="Evasion",keywordFlags=0}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes "}c["Ghost Reaver"]={{[1]={value="Ghost Reaver",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["+8 to all Attributes"]={{[1]={flags=0,type="BASE",value=8,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=8,name="Int",keywordFlags=0}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,type="BASE",value=-5,name="ManaCost",keywordFlags=0}},nil}c["15% increased maximum Life"]={{[1]={flags=0,type="INC",value=15,name="Life",keywordFlags=0}},nil}c["30% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,type="INC",value=30,name="EnergyShieldLeechRate",keywordFlags=0}},nil}c["1% increased Damage per 15 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=15},flags=0,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["15% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=15,name="CooldownRecovery",keywordFlags=4096}},nil}c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,type="BASE",value=78,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=114,name="PhysicalMax",keywordFlags=0}},nil}c["4% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength"]={{[1]={flags=0,type="INC",value=-20,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected 4% chance to deal Double Damage +20 to Strength "}c["+10% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=10,name="FireResist",keywordFlags=0}},nil}c["Adds 6 to 9 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=6,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=9,name="FireMax",keywordFlags=131072}},nil}c["Grants Level 22 Precision Skill"]={{[1]={flags=0,type="LIST",value={skillId="AccuracyAndCritsAura",level=22},name="ExtraSkill",keywordFlags=0}},nil}c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge on Hit "}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="{Hand}Attack"},flags=256,type="BASE",keywordFlags=0,name="BleedChance",value=50}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain an Endurance Charge on Kill 10% more 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},"and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["8% reduced Elemental Damage taken while at Maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},flags=0,type="INC",value=-8,name="ElementalDamageTaken",keywordFlags=0}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,type="INC",keywordFlags=256,name="Duration",value=-25}}," Soul Cost s used have 40% reduced Soul Gain Prevention "}c["Arrows that Pierce have 50% chance to cause Bleeding"]={{[1]={[1]={type="StatThreshold",stat="PierceCount",threshold=1},flags=1025,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["Grants level 20 Bear Trap Skill"]={{[1]={flags=0,type="LIST",value={skillId="BearTrap",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=0,type="MORE",value=100,name="CritChance",keywordFlags=262144}},nil}c["15% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=15,name="CritChance",keywordFlags=0}},nil}c["+650 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=650,name="Evasion",keywordFlags=0}},nil}c["100% increased Shock Duration on You Shocks you cause are reflected back to you"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=0}}," on You Shocks you cause are reflected back to you "}c["If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["+1% to maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=1,name="LightningResistMax",keywordFlags=0}},nil}c["Your Fire Damage can Poison"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="FireCanPoison",flags=0}},nil}c["+2 to Level of Socketed Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="all",value=2},name="GemProperty",keywordFlags=0}},nil}c["10% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["10% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=10,name="FireDamageTaken",keywordFlags=0}},nil}c["Minions have 10% reduced Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=-10,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["60% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=60,name="Damage",keywordFlags=262144}},nil}c["You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage"]={nil,"You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage "}c["Can have up to 1 additional Remote Mine placed at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveMineLimit",keywordFlags=0}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste "}c["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["Attack Skills deal 20% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["20% increased Damage for each Summoned Golem"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Summoned "}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,type="BASE",value=1,name="CritChance",keywordFlags=0}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["50% increased Curse Duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=2}},nil}c["120% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=120,name="Evasion",keywordFlags=0}},nil}c["15% chance to Shock"]={{[1]={flags=0,type="BASE",value=15,name="EnemyShockChance",keywordFlags=0}},nil}c["Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice "}c["Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy "}c["Adds 1 to 59 Chaos Damage"]={{[1]={flags=0,type="BASE",value=1,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=59,name="ChaosMax",keywordFlags=0}},nil}c["Zealot's Oath during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="ZealotsOath",flags=0}},nil}c["20% increased Critical Strike Chance with Cold Skills"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=32}},nil}c["+160 to maximum Life"]={{[1]={flags=0,type="BASE",value=160,name="Life",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier with Wands"]={{[1]={flags=524288,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=47,name="ChaosMin",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=61,name="ChaosMax",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["You are Immune to Silence Grants level 20 Illusory Warp Skill"]={nil,"You are Immune to Silence Grants level 20 Illusory Warp Skill "}c["0.87% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.87,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=7,name="ElementalDamage",keywordFlags=0}},nil}c["their Maximum Life as Lightning Damage which cannot Shock"]={nil,"their Maximum Life as Lightning Damage which cannot Shock "}c["Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills ignore Curse Limit "}c["20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,type="INC",value=20,name="Damage",keywordFlags=786432}},nil}c["23% increased Cold Damage"]={{[1]={flags=0,type="INC",value=23,name="ColdDamage",keywordFlags=0}},nil}c["Attack Skills deal 8% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["12% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire "}c["Can have up to 1 additional Totem summoned at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTotemLimit",keywordFlags=0}},nil}c["Immunity to Ignite during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=0}},nil}c["10% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["14% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["20% reduced Chill Duration on You {variant:2}50% chance to Avoid being Chilled"]={{[1]={flags=0,type="INC",value=-20,name="EnemyChillDuration",keywordFlags=0}}," on You {variant:2}50% chance to Avoid being Chilled "}c["15% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-15,name="EnergyShield",keywordFlags=0}},nil}c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike "}c["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,type="BASE",keywordFlags=0,name="FireDegen",value=200}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy Recover 100 Life when your Trap is triggered by an Enemy"]={{[1]={flags=0,type="BASE",value=30,name="Life",keywordFlags=4096}}," to gain Phasing for 4 seconds when your is triggered by an Enemy Recover 100 when your Trap is triggered by an Enemy "}c["30% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=30,name="LifeLeechRate",keywordFlags=0}},nil}c["Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=0,name="LightningMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=3,name="LightningMax",keywordFlags=65536}},nil}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies "}c["20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["30% increased Minion Accuracy Rating"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+150 to Evasion Rating and Energy Shield"]={{[1]={flags=0,type="BASE",value=150,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["100% reduced Despair Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Despair"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["Culling Strike"]={{},"Culling Strike"}c["200% increased Physical Damage"]={{[1]={flags=0,type="INC",value=200,name="PhysicalDamage",keywordFlags=0}},nil}c["Golems have 45% less Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-45,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["12% increased Cast Speed"]={{[1]={flags=16,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["+2 to Level of Socketed Support Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="support",value=2},name="GemProperty",keywordFlags=0}},nil}c["25% chance to create a Smoke Cloud when Hit {variant:1}40% increased Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="BASE",value=25,name="Damage",keywordFlags=262144}}," to create a Smoke Cloud when Hit {variant:1}40% increased "}c["24% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon "}c["263% increased Physical Damage"]={{[1]={flags=0,type="INC",value=263,name="PhysicalDamage",keywordFlags=0}},nil}c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst "}c["+68 to Intelligence"]={{[1]={flags=0,type="BASE",value=68,name="Int",keywordFlags=0}},nil}c["You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit "}c["28% increased Cast Speed"]={{[1]={flags=16,type="INC",value=28,name="Speed",keywordFlags=0}},nil}c["Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers "}c["Warcries cost no Mana"]={{[1]={value=-100,type="MORE",keywordFlags=4,name="ManaCost",flags=0}},nil}c["25% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-25,name="LightRadius",keywordFlags=0}},nil}c["Your Bleeding does not deal extra Damage while the Enemy is moving"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:NoExtraBleedDamageToMovingEnemy",flags=0}},nil}c["Adds 15 to 26 Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=26,name="ChaosMax",keywordFlags=0}},nil}c["13% increased Spell Damage"]={{[1]={flags=2,type="INC",value=13,name="Damage",keywordFlags=0}},nil}c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["You and Allies affected by your Aura Skills have +20% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="ElementalResist",keywordFlags=0}},name="AffectedByAuraMod",keywordFlags=0}},nil}c["30% increased Minion Duration"]={{[1]={[1]={type="SkillType",skillType=21},flags=0,type="INC",value=30,name="Duration",keywordFlags=0}},nil}c["24% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=65536}},nil}c["65% increased Spell Damage"]={{[1]={flags=2,type="INC",value=65,name="Damage",keywordFlags=0}},nil}c["70% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["6% increased Intelligence"]={{[1]={flags=0,type="INC",value=6,name="Int",keywordFlags=0}},nil}c["16% increased Armour"]={{[1]={flags=0,type="INC",value=16,name="Armour",keywordFlags=0}},nil}c["You and nearby Allies have 12% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=12,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=6,name="ArmourAndEvasion",keywordFlags=0}},nil}c["30% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,type="INC",value=30,name="MaxEnergyShieldLeechRate",keywordFlags=0}},nil}c["+50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=50,name="ElementalResist",keywordFlags=0}},nil}c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Spider"},flags=0,type="INC",value=50,name="Duration",keywordFlags=0}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton "}c["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy "}c["45% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=45,name="CritChance",keywordFlags=0}},nil}c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"]={nil,"Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite "}c["50% increased Totem Life"]={{[1]={flags=0,type="INC",value=50,name="TotemLife",keywordFlags=0}},nil}c["23% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=23,name="Accuracy",keywordFlags=0}},nil}c["18% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=18,name="LootQuantity",keywordFlags=0}},nil}c["70% increased Armour"]={{[1]={flags=0,type="INC",value=70,name="Armour",keywordFlags=0}},nil}c["Unaffected by Shock"]={nil,"Unaffected by Shock "}c["You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life "}c["You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled "}c["+20 Mana gained when you Block {variant:2,3}+24 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block {variant:2,3}+24 Mana gained when you Block "}c["+150 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=150,name="EnergyShield",keywordFlags=0}},nil}c["+25 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=25,name="EnergyShield",keywordFlags=0}}," gained on Kill "}c["Adds 53 to 60 Chaos Damage"]={{[1]={flags=0,type="BASE",value=53,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="ChaosMax",keywordFlags=0}},nil}c["You have Onslaught while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["0.4% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.4,name="DamageManaLeech",keywordFlags=0}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["+4% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=4,name="ChaosResist",keywordFlags=0}},nil}c["30% increased Radius of Curse Skills"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=2}},nil}c["+110 to Armour"]={{[1]={flags=0,type="BASE",value=110,name="Armour",keywordFlags=0}},nil}c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}c["140% increased Spell Damage"]={{[1]={flags=2,type="INC",value=140,name="Damage",keywordFlags=0}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["10% chance to gain Unholy Might on block for 3 seconds"]={{}," to gain Unholy Might on block for 3 seconds "}c["1% of Attack Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={nil,"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour "}c["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked "}c["80% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,type="INC",value=80,name="Evasion",keywordFlags=0}},nil}c["1.4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.4,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% increased Shock Duration on You"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}}," on You "}c["Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use "}c["15% reduced Cast Speed"]={{[1]={flags=16,type="INC",value=-15,name="Speed",keywordFlags=0}},nil}c["Chill and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill and Freeze duration on you is based on 65% of Energy Shield "}c["Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["10% increased maximum Life"]={{[1]={flags=0,type="INC",value=10,name="Life",keywordFlags=0}},nil}c["90% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="NormalItem",threshold=1},flags=0,type="INC",value=90,name="LootRarity",keywordFlags=0}},nil}c["+60% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=60,name="FireResist",keywordFlags=0}},nil}c["+72% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=72,name="CritMultiplier",keywordFlags=0}},nil}c["Wrath Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Wrath"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},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["+15 to Strength"]={{[1]={flags=0,type="BASE",value=15,name="Str",keywordFlags=0}},nil}c["2% chance to Ignite"]={{[1]={flags=0,type="BASE",value=2,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Socketed Gems fire Projectiles in a Nova"]={nil,"Socketed Gems fire Projectiles in a Nova "}c["Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken"]={nil,"Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken "}c["100% increased Critical Strike Chance with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork "}c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["5% increased Spell Damage"]={{[1]={flags=2,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["100% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=100,name="LightningDamage",keywordFlags=0}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="Mana",keywordFlags=0}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["+28 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=28,name="EnergyShield",keywordFlags=0}},nil}c["+6% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=6,name="ColdDotMultiplier",keywordFlags=0}},nil}c["+190 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=190,name="Accuracy",keywordFlags=0}},nil}c["+300 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=300,name="Accuracy",keywordFlags=0}},nil}c["Your Cold Damage can Poison"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ColdCanPoison",flags=0}},nil}c["+1% to Critical Strike Multiplier per 1% Block Chance"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=1},flags=0,type="BASE",value=1,name="CritMultiplier",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. "}c["Projectiles Pierce you {Variant:3}+160 Dexterity Requirement"]={nil,"Projectiles Pierce you {Variant:3}+160 Dexterity Requirement "}c["10% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["125% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=125,name="ArmourAndEvasion",keywordFlags=0}},nil}c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=65536}},nil}c["6% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=6,name="FireDamage",keywordFlags=0}},nil}c["35% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=35,name="ChaosDamage",keywordFlags=0}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=1}},nil}c["7% increased Attack Speed"]={{[1]={flags=1,type="INC",value=7,name="Speed",keywordFlags=0}},nil}c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=30,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["20% increased Light Radius"]={{[1]={flags=0,type="INC",value=20,name="LightRadius",keywordFlags=0}},nil}c["110% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=110,name="Evasion",keywordFlags=0}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["80% increased Fire Damage"]={{[1]={flags=0,type="INC",value=80,name="FireDamage",keywordFlags=0}},nil}c["+4% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=4,name="SpellBlockChance",keywordFlags=0}},nil}c["22% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Minions have 4% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=4,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+10% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="LightningResist",keywordFlags=0}},nil}c["Adds 19 to 29 Chaos Damage"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=0}},nil}c["70% increased Minion Damage if you have Hit Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["230% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+8% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=8,name="ElementalResist",keywordFlags=0}},nil}c["+110 to maximum Mana"]={{[1]={flags=0,type="BASE",value=110,name="Mana",keywordFlags=0}},nil}c["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"]={nil,"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy "}c["5% increased Movement Speed"]={{[1]={flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask "}c["10% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=10,name="ChaosDamage",keywordFlags=65536}},nil}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["+45 to maximum Life"]={{[1]={flags=0,type="BASE",value=45,name="Life",keywordFlags=0}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets "}c["+2 seconds to Cat's Stealth Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Cat"},flags=0,type="BASE",value=2,name="PrimaryDuration",keywordFlags=0}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Your Maximum Resistances are 80%"]={{[1]={flags=0,type="OVERRIDE",value=80,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="OVERRIDE",value=80,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="OVERRIDE",value=80,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="OVERRIDE",value=80,name="ChaosResistMax",keywordFlags=0}},nil}c["16% increased maximum Mana"]={{[1]={flags=0,type="INC",value=16,name="Mana",keywordFlags=0}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["295% increased Physical Damage"]={{[1]={flags=0,type="INC",value=295,name="PhysicalDamage",keywordFlags=0}},nil}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={{[1]={[1]={type="Condition",var="AffectedByPurityofIce"},flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Ignited for 3 seconds after being Ignited "}c["Unaffected by Temporal Chains while affected by Haste"]={nil,"Unaffected by Temporal Chains while affected by Haste "}c["Half of your Strength is added to your Minions"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="HalfStrengthAddedToMinions",flags=0}},nil}c["+25% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0}},nil}c["13% increased Cast Speed"]={{[1]={flags=16,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them "}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,type="LIST",value={skillId="SummonVoidSphere",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["30% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality "}c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,type="INC",value=40,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["+5 to Evasion Rating per 1 Maximum Energy Shield on Helmet"]={{[1]={[1]={type="PerStat",stat="EnergyShieldOnHelmet",div=1},flags=0,type="BASE",value=5,name="Evasion",keywordFlags=0}},nil}c["3% increased Experience gain {variant:2}2% increased Experience gain"]={{}," Experience gain {variant:2}2% increased Experience gain "}c["12% increased Spell Damage"]={{[1]={flags=2,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["25% Chance to Ignite when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="BASE",value=25,name="EnemyIgniteChance",keywordFlags=0}},nil}c["12% reduced Skill Effect Duration"]={{[1]={flags=0,type="INC",value=-12,name="Duration",keywordFlags=0}},nil}c["8% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-8,name="MovementSpeed",keywordFlags=0}},nil}c["14% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,type="INC",value=14,name="AuraEffect",keywordFlags=0}},nil}c["25% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=65536}},nil}c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=65,name="CritChance",keywordFlags=0}},nil}c["5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=5,name="ProjectileSpeed",keywordFlags=0}},nil}c["50% chance to Cause Poison on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=50,name="PoisonChance",keywordFlags=0}},nil}c["Zombies deal 100% increased Physical Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies "}c["Elemental Overload"]={{[1]={value="Elemental Overload",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["15% increased Armour"]={{[1]={flags=0,type="INC",value=15,name="Armour",keywordFlags=0}},nil}c["5% increased Cast Speed with Lightning Skills"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=64}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage "}c["30% increased Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["+1% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}},nil}c["Melee Critical Strikes have 25% chance to cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["56% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=56,name="ManaRegen",keywordFlags=0}},nil}c["4% additional Physical Damage Reduction while Channelling Channelling Skills have 6% increased Attack and Cast Speed Channelling Skills deal 15% increased Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}}," while Channelling Channelling Skills have 6% increased Attack and Cast Speed Channelling Skills deal 15% increased Damage "}c["40% more Elemental Damage if you've Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,type="MORE",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["80% increased Spell Damage"]={{[1]={flags=2,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["20% increased Taunt Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Taunt "}c["5% increased Brand Activation frequency"]={{[1]={flags=0,type="INC",value=5,name="BrandActivationFrequency",keywordFlags=0}},nil}c["4% increased maximum Life"]={{[1]={flags=0,type="INC",value=4,name="Life",keywordFlags=0}},nil}c["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=7,name="PhysicalDamage",keywordFlags=0}},nil}c["25% increased Zombie Size"]={{}," Size "}c["2% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=2,name="AttackDodgeChance",keywordFlags=0}},nil}c["30% increased Block Recovery"]={{[1]={flags=0,type="INC",value=30,name="BlockRecovery",keywordFlags=0}},nil}c["Unaffected by Enfeeble while affected by Grace"]={nil,"Unaffected by Enfeeble while affected by Grace "}c["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={type="SkillName",skillName="Siege Ballista"},[2]={type="PerStat",stat="Dex",div=200},flags=0,type="BASE",keywordFlags=0,name="ActiveTotemLimit",value=1}},nil}c["Gain 5% of Cold Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="ColdDamageGainAsChaos",keywordFlags=0}},nil}c["3% increased Damage per Crab Barrier"]={{[1]={[1]={type="Multiplier",var="CrabBarrier"},flags=0,type="INC",value=3,name="Damage",keywordFlags=0}},nil}c["+200 to Armour"]={{[1]={flags=0,type="BASE",value=200,name="Armour",keywordFlags=0}},nil}c["50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain a Power Charge when you Summon a "}c["+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["+15 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill "}c["Adds 12 to 16 Fire Damage"]={{[1]={flags=0,type="BASE",value=12,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="FireMax",keywordFlags=0}},nil}c["45% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=45,name="LootRarity",keywordFlags=0}},nil}c["50% less Poison Duration"]={{[1]={flags=0,type="MORE",value=-50,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["Adds 54 to 81 Cold Damage"]={{[1]={flags=0,type="BASE",value=54,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=81,name="ColdMax",keywordFlags=0}},nil}c["Triggers Level 20 Blinding Aura when Equipped Adds 22 to 44 Physical Damage"]={{[1]={flags=0,type="BASE",value=22,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=44,name="PhysicalMax",keywordFlags=0}},"Triggers Level 20 Blinding Aura when Equipped "}c["-25 Physical Damage taken from Projectile Attacks +5% Chance to Block"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks +5% Chance to Block "}c["Minions Poison Enemies on Hit"]={{[1]={value={mod={value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},type="LIST",keywordFlags=0,name="MinionModifier",flags=0}},nil}c["Grants level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonBeastialSnake",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["43% increased Damage with Movement Skills"]={{[1]={flags=0,type="INC",value=43,name="Damage",keywordFlags=8}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["+80 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=80,name="Accuracy",keywordFlags=0}},nil}c["10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Ghosts "}c["Adds 10 to 38 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=38,name="PhysicalMax",keywordFlags=65536}},nil}c["30% reduced Power Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="PowerChargesDuration",keywordFlags=0}},nil}c["Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 240 to 300 Physical Damage to Attackers on Block "}c["25% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootQuantity",keywordFlags=0}},nil}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted "}c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="Accuracy",keywordFlags=0}},nil}c["100% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=100,name="OnslaughtEffect",keywordFlags=0}},nil}c["Deal no Non-Fire Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoPhysical",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="DealNoLightning",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="DealNoCold",flags=0},[4]={value=true,type="FLAG",keywordFlags=0,name="DealNoChaos",flags=0}},nil}c["100% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=256}},nil}c["100% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["10% increased Poison Duration"]={{[1]={flags=0,type="INC",value=10,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["Adds 250 to 280 Fire Damage"]={{[1]={flags=0,type="BASE",value=250,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=280,name="FireMax",keywordFlags=0}},nil}c["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["18% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=18,name="ChaosDamage",keywordFlags=0}},nil}c["Minions have 10% chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=-50,name="Damage",keywordFlags=0}},nil}c["50% increased Shock Duration on You Take no Extra Damage from Critical Strikes"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}}," on You Take no Extra Damage from Critical Strikes "}c["+200 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=200,name="Accuracy",keywordFlags=0}},nil}c["50% increased Mana Regeneration while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=50,name="ManaRegen",keywordFlags=0}},nil}c["8% Chance to Block"]={{[1]={flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["+50% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="ChaosResist",keywordFlags=0}},nil}c["+23 to all Attributes"]={{[1]={flags=0,type="BASE",value=23,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=23,name="Int",keywordFlags=0}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill {variant:2,3}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 {variant:2,3}You take 450 Chaos Damage per second for 3 seconds on Kill "}c["-35 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-35,name="ChaosDamageTaken",keywordFlags=0}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted when Hit by an Attack "}c["Trigger Socketed Spells when you Focus"]={nil,"Trigger Socketed Spells when you Focus "}c["Cannot be Blinded"]={nil,"Cannot be Blinded "}c["Gain 18% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=18,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["15% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=15,name="ProjectileCount",keywordFlags=0}}," of Piercing "}c["You are cursed with Level 10 Vulnerability"]={{[1]={flags=0,type="LIST",value={skillId="Vulnerability",applyToPlayer=true,level=10},name="ExtraCurse",keywordFlags=0}},nil}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["30% increased Defences from Equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=30,name="Defences",keywordFlags=0}},nil}c["20% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=20,name="FireDamageTaken",keywordFlags=0}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={{[1]={[1]={type="StatThreshold",stat="EnergyShield",threshold=500},flags=0,type="BASE",value=50,name="LifeRegen",keywordFlags=0}},nil}c["Curse Skills have 80% increased Skill Effect Duration"]={{[1]={[1]={type="SkillType",skillType=32},flags=0,type="INC",value=80,name="Duration",keywordFlags=0}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,type="BASE",value=100,name="DamageTaken",keywordFlags=0}}," to Taunt on Hit 6% reduced "}c["25% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=25,name="Damage",keywordFlags=65536}},nil}c["+100 to Intelligence"]={{[1]={flags=0,type="BASE",value=100,name="Int",keywordFlags=0}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit "}c["420% increased Armour"]={{[1]={flags=0,type="INC",value=420,name="Armour",keywordFlags=0}},nil}c["500% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=500,name="Evasion",keywordFlags=0}},nil}c["+5000 to Zombie maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5000,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}c["24% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=24,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,type="LIST",value={skillId="BirdAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["125% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=125,name="Evasion",keywordFlags=0}},nil}c["Gain a Frenzy Charge on every 50th Rampage Kill"]={nil,"Gain a Frenzy Charge on every 50th Rampage Kill "}c["220% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=220,name="Evasion",keywordFlags=0}},nil}c["8% increased Melee Damage"]={{[1]={flags=256,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["+110 to maximum Life"]={{[1]={flags=0,type="BASE",value=110,name="Life",keywordFlags=0}},nil}c["+13% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=13,name="ColdResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Pierce"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportPierce",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["Golems have 22% increased Maximum Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=22,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds "}c["20% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["Gain 4% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["+40 to Intelligence"]={{[1]={flags=0,type="BASE",value=40,name="Int",keywordFlags=0}},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,type="LIST",value={mod={flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use "}c["10% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+90 to maximum Life"]={{[1]={flags=0,type="BASE",value=90,name="Life",keywordFlags=0}},nil}c["1.5% of Damage leeched as Life while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,type="BASE",value=1.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["+12% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="LightningResist",keywordFlags=0}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="ManaRegen",keywordFlags=0}},nil}c["13% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-13,name="Mana",keywordFlags=0}},nil}c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=90,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["0.4% of Energy Shield Regenerated per Second for"]={{[1]={flags=0,type="BASE",value=0.4,name="EnergyShieldRegenPercent",keywordFlags=0}}," for "}c["0.9% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.9,name="DamageLifeLeech",keywordFlags=0}},nil}c["Enemies Become Chilled as they Unfreeze"]={nil,"Enemies Become Chilled as they Unfreeze "}c["Cannot be Stunned"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidStun",flags=0}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana "}c["10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=786432}}," from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage 25% chance to Blind Enemies on Hit "}c["43% increased Attack Speed"]={{[1]={flags=1,type="INC",value=43,name="Speed",keywordFlags=0}},nil}c["20% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=20,name="StunRecovery",keywordFlags=0}},nil}c["+14 to maximum Life"]={{[1]={flags=0,type="BASE",value=14,name="Life",keywordFlags=0}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element 20% increased Area of Effect for Attacks"]={{[1]={flags=8388608,type="BASE",value=300,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of an Element 20% increased Area of Effect for Attacks "}c["Grants level 5 Frostbite Skill"]={{[1]={flags=0,type="LIST",value={skillId="Frostbite",level=5},name="ExtraSkill",keywordFlags=0}},nil}c["35% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=35,name="LightningDamage",keywordFlags=65536}},nil}c["285% increased Physical Damage"]={{[1]={flags=0,type="INC",value=285,name="PhysicalDamage",keywordFlags=0}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["23% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=23,name="ElementalDamage",keywordFlags=65536}},nil}c["45% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="INC",value=-45,name="ManaCost",keywordFlags=0}},nil}c["20% increased Minion Accuracy Rating"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Accuracy",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["163% increased Physical Damage"]={{[1]={flags=0,type="INC",value=163,name="PhysicalDamage",keywordFlags=0}},nil}c["7% increased Cast Speed"]={{[1]={flags=16,type="INC",value=7,name="Speed",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}}," Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased "}c["Raging Spirits have 140% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Raging Spirit"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=140,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Gain Flask Charges when you deal a Critical Strike"]={nil,"Gain Flask Charges when you deal a Critical Strike "}c["Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={type="StatThreshold",stat="PowerCharges",thresholdStat="PowerChargesMax"},flags=0,type="BASE",value=12,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["+1000 to maximum Life"]={{[1]={flags=0,type="BASE",value=1000,name="Life",keywordFlags=0}},nil}c["17% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=17,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["Socketed Gems are supported by level 2 Chance to Flee"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportChanceToFlee",level=2},name="ExtraSupport",keywordFlags=0}},nil}c["30% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=65536}},nil}c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["20% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-20,name="Life",keywordFlags=0}},nil}c["20% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,type="INC",value=20,name="MaxEnergyShieldLeechRate",keywordFlags=0}},nil}c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=65,name="ManaRegen",keywordFlags=0}},nil}c["10% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block "}c["+35 to maximum Life"]={{[1]={flags=0,type="BASE",value=35,name="Life",keywordFlags=0}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["Casts level 7 Abberath's Fury when equipped"]={{[1]={flags=0,type="LIST",value={skillId="RepeatingShockwave",level=7},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 285 to 360 Physical Damage"]={{[1]={flags=0,type="BASE",value=285,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=360,name="PhysicalMax",keywordFlags=0}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item "}c["300% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=300,name="Damage",keywordFlags=0}},nil}c["20% increased Totem Life"]={{[1]={flags=0,type="INC",value=20,name="TotemLife",keywordFlags=0}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}c["Adds 115 to 260 Physical Damage"]={{[1]={flags=0,type="BASE",value=115,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=260,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["3% increased Experience gain"]={{}," Experience gain "}c["25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,type="INC",value=25,name="DamageTaken",keywordFlags=0}}," when on Low Mana "}c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage Rampage "}c["+14% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=14,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="ColdResist",keywordFlags=0}},nil}c["+20 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}}," gained on Kill "}c["0.6% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.6,name="LifeRegenPercent",keywordFlags=0}},nil}c["10% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Your Energy Shield starts at zero You cannot Recharge Energy Shield"]={nil,"Your Energy Shield starts at zero You cannot Recharge Energy Shield "}c["30% increased Zombie Resistances"]={{}," Resistances "}c["Extra gore"]={nil,"Extra gore "}c["Traps and Mines have a 25% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=25,name="PoisonChance",keywordFlags=12288}},nil}c["+1% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}},nil}c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies "}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. "}c["+1 to Level of Socketed Minion Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="minion",value=1},name="GemProperty",keywordFlags=0}},nil}c["+14% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=14,name="ChaosResist",keywordFlags=0}},nil}c["50% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},nil}c["4% chance to Block Attack Damage"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled "}c["20% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Zealot's Oath"]={{[1]={value="Zealot's Oath",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-30,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["+23% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=23,name="FireResist",keywordFlags=0}},nil}c["Flasks do not apply to You"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="FlasksDoNotApplyToPlayer",flags=0}},nil}c["60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=60,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["Golems Deal 40% less Damage"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-40,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["20% reduced Reflected Physical Damage taken"]={{[1]={flags=0,type="INC",value=-20,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["Channelling Skills deal 8% increased Damage"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=24,name="LootQuantity",keywordFlags=0}},nil}c["Impales you inflict last 2 additional Hits"]={nil,"Impales you inflict last 2 additional Hits "}c["Vaal Skills deal 35% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="MORE",value=35,name="Damage",keywordFlags=256}},nil}c["+40% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=40,name="FireResist",keywordFlags=0}},nil}c["Pain Attunement"]={{[1]={value="Pain Attunement",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["18% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["+35 to Strength"]={{[1]={flags=0,type="BASE",value=35,name="Str",keywordFlags=0}},nil}c["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=1000,name="CritChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+1000 Evasion Rating while you have Tailwind"]={{[1]={[1]={type="Condition",var="Tailwind"},flags=0,type="BASE",value=1000,name="Evasion",keywordFlags=0}},nil}c["10% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage"]={{[1]={flags=0,type="INC",value=-20,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected 4% chance to deal Double Damage "}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["Adds 5 to 10 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=5,name="FireMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=10,name="FireMax",keywordFlags=0}},nil}c["Fire Spells have 10% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,type="BASE",value=10,name="PhysicalDamageConvertToFire",keywordFlags=16}},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]={type="PerStat",stat="Life"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,type="BASE",keywordFlags=0,name="FireDegen",value=0.005},[2]={[1]={type="PerStat",stat="EnergyShield"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,type="BASE",keywordFlags=0,name="FireDegen",value=0.005}},nil}c["200% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEvasion",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova {variant:1}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 {variant:1}With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles "}c["105% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=105,name="ArmourAndEvasion",keywordFlags=0}},nil}c["80% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["Gain 75% increased Elemental Damage for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionElementalDamage"},flags=0,type="INC",value=75,name="ElementalDamage",keywordFlags=0}},nil}c["16% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=16,name="ColdDamage",keywordFlags=65536}},nil}c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="INC",value=15,name="Damage",keywordFlags=262144}},nil}c["+20 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ClawCritChanceAppliesToUnarmed",flags=0}},nil}c["Socketed Golem Gems grant Onslaught for 10 seconds on Summon"]={nil,"Socketed Golem Gems grant Onslaught for 10 seconds on Summon "}c["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield "}c["18% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=18,name="AuraEffect",keywordFlags=0}},nil}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:CanGainHerEmbrace",flags=0}},nil}c["23% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=23,name="PhysicalDamage",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer "}c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["90% increased Fire Damage"]={{[1]={flags=0,type="INC",value=90,name="FireDamage",keywordFlags=0}},nil}c["115% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=115,name="Evasion",keywordFlags=0}},nil}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="INC",value=8,name="EnergyShield",keywordFlags=0}},nil}c["Minions Regenerate 1% Life per second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=40,name="FlaskRecovery",keywordFlags=0}},nil}c["+100 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=100,name="Evasion",keywordFlags=0}},nil}c["+50 to maximum Mana"]={{[1]={flags=0,type="BASE",value=50,name="Mana",keywordFlags=0}},nil}c["You take 20% reduced Extra Damage from Critical Strikes"]={nil,"You take 20% reduced Extra Damage from Critical Strikes "}c["Adds 23 to 39 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=23,name="ColdMin",keywordFlags=0},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=39,name="ColdMax",keywordFlags=0}},nil}c["Adds 1 to 2 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",value=1,name="FireMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",value=2,name="FireMax",keywordFlags=65536}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier "}c["+65 to maximum Life"]={{[1]={flags=0,type="BASE",value=65,name="Life",keywordFlags=0}},nil}c["100% increased Burning Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,type="INC",value=100,name="FireDamage",keywordFlags=134217728}},nil}c["Minions deal 8% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["6% increased Movement Speed"]={{[1]={flags=0,type="INC",value=6,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=25,name="ColdMin",keywordFlags=0},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}},nil}c["10% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=10,name="ProjectileSpeed",keywordFlags=0}},nil}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,type="INC",value=-10,name="Duration",keywordFlags=0}},nil}c["+1500 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=1500,name="Armour",keywordFlags=0}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,type="BASE",value=10,name="DamageTaken",keywordFlags=0}}," Gained as Mana over 4 seconds when Hit "}c["13% reduced Intelligence"]={{[1]={flags=0,type="INC",value=-13,name="Int",keywordFlags=0}},nil}c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers "}c["33% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=33,name="EnemyShockEffect",keywordFlags=0}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["30% increased maximum Mana"]={{[1]={flags=0,type="INC",value=30,name="Mana",keywordFlags=0}},nil}c["Adds 1 to 11 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=11,name="LightningMax",keywordFlags=131072}},nil}c["An additional Curse can be applied to you 20% increased Damage per Curse on you"]={nil,"An additional Curse can be applied to you 20% increased Damage per Curse on you "}c["50% increased Attack Speed"]={{[1]={flags=1,type="INC",value=50,name="Speed",keywordFlags=0}},nil}c["10% chance to Blind with Hits against Bleeding Enemies 15% more Damage with Bleeding"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=10,name="Damage",keywordFlags=262144}}," to Blind 15% more with Bleeding "}c["+10% to Critical Strike Multiplier with Fire Skills"]={{[1]={flags=0,type="BASE",value=10,name="CritMultiplier",keywordFlags=16}},nil}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["Adds 65 to 120 Chaos Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=120,name="ChaosMax",keywordFlags=0}},nil}c["14% Chance to Block"]={{[1]={flags=0,type="BASE",value=14,name="BlockChance",keywordFlags=0}},nil}c["100% reduced Frostbite Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Frostbite"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["28% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=28,name="Damage",keywordFlags=65536}},nil}c["Can Allocate Passives from the Marauder's starting point"]={{},nil}c["Adds 22 to 32 Cold Damage"]={{[1]={flags=0,type="BASE",value=22,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=32,name="ColdMax",keywordFlags=0}},nil}c["Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking "}c["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedFireDamage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["+25% chance to be Ignited"]={{}," to be Ignited "}c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=3,name="DamageTaken",keywordFlags=0}},nil}c["Critical Strikes deal 50% increased Lightning Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="INC",value=50,name="LightningDamage",keywordFlags=0}},nil}c["+1 to maximum number of Summoned Holy Relics"]={{[1]={flags=0,type="BASE",value=1,name="ActiveHolyRelicLimit",keywordFlags=0}},nil}c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage "}c["100% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=100,name="LifeLeechRate",keywordFlags=0}},nil}c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["25% increased Strength Requirement"]={{[1]={flags=0,type="INC",value=25,name="StrRequirement",keywordFlags=0}},nil}c["Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground "}c["50% reduced number of Zombies allowed"]={{[1]={flags=0,type="INC",value=-50,name="ActiveZombieLimit",keywordFlags=0}},nil}c["2% of Attack Damage Leeched as Life and Mana if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=1,type="BASE",value=2,name="DamageLeech",keywordFlags=0}},nil}c["6% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",keywordFlags=262144,name="Damage",value=6}},nil}c["Grants Armour equal to 160% of your Reserved Life to you and nearby Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1.6,name="Armour",keywordFlags=0}},name="GrantReservedLifeAsAura",keywordFlags=0}},nil}c["40% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=30,name="BuffEffect",keywordFlags=0}},nil}c["24% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["6% increased Attack Damage"]={{[1]={flags=1,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["4% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-4,name="ManaReserved",keywordFlags=0}},nil}c["20% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,type="BASE",value=18,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["Raging Spirits have 150% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Raging Spirit"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=150,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," with arrows that Fork "}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy "}c["20% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=0,type="INC",value=20,name="Damage",keywordFlags=262144}},nil}c["40% increased Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["-40% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-40,name="ElementalResist",keywordFlags=0}},nil}c["Your Flasks grant 10% chance to Ignite during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=786432}}," from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage "}c["5% chance to Freeze"]={{[1]={flags=0,type="BASE",value=5,name="EnemyFreezeChance",keywordFlags=0}},nil}c["90% increased Spell Damage"]={{[1]={flags=2,type="INC",value=90,name="Damage",keywordFlags=0}},nil}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=-1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["25% reduced Golem Size"]={{}," Size "}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=30,name="ManaRegen",keywordFlags=0}},nil}c["Your Offering Skills also affect you"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"}},value={mod={value={key="buffNotPlayer",value=false},type="LIST",keywordFlags=0,name="SkillData",flags=0}},type="LIST",keywordFlags=0,name="ExtraSkillMod",flags=0}},nil}c["5% increased maximum Life"]={{[1]={flags=0,type="INC",value=5,name="Life",keywordFlags=0}},nil}c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"Gain an Endurance Charge when you take a Critical Strike "}c["40% increased Damage against Frozen Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=0,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 65 to 105 Chaos Damage to Spells"]={{[1]={flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=105,name="ChaosMax",keywordFlags=131072}},nil}c["Radius: 18"]={nil,"Radius: 18 "}c["Enemies you Shock have 30% reduced Cast Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed "}c["Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use "}c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=100,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=100,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=100,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-5,name="ManaCost",keywordFlags=0}},nil}c["10% increased Damage over Time"]={{[1]={flags=8,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["10% increased Dexterity"]={{[1]={flags=0,type="INC",value=10,name="Dex",keywordFlags=0}},nil}c["Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={type="StatThreshold",stat="PowerCharges",threshold=1},flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["If you've Cast a Spell Recently, you"]={nil,"If you've Cast a Spell Recently, you "}c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges "}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["100% increased Critical Strike Chance against Enemies that are affected"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," against Enemies that are affected "}c["30 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=30,name="LifeRegen",keywordFlags=0}},nil}c["Deal no Physical Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoPhysical",flags=0}},nil}c["+45% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=45,name="ChaosResist",keywordFlags=0}},nil}c["20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["8% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["20% chance to gain Fortify on Melee Stun You have Onslaught while you have Fortify"]={{}," to gain Fortify on Stun You have Onslaught "}c["Your Energy Shield starts at zero Cannot gain Energy Shield"]={nil,"Your Energy Shield starts at zero Cannot gain Energy Shield "}c["You can only Socket Corrupted Gems in this item {variant:1}Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item {variant:1}Acrobatics "}c["20% increased Warcry Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=4}},nil}c["35% reduced Stun Recovery"]={{[1]={flags=0,type="INC",value=-35,name="StunRecovery",keywordFlags=0}},nil}c["Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding "}c["100% increased Shock Duration on You"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=0}}," on You "}c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=36,name="PhysicalMax",keywordFlags=65536}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=16,name="LightningMin",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=144,name="LightningMax",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=18,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["100% increased Charges used"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargesUsed",keywordFlags=0}},nil}c["Adds 14 to 26 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=26,name="PhysicalMax",keywordFlags=65536}},nil}c["+24 to Strength"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Traps"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=4096}},nil}c["Vitality Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Vitality"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["15% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,type="INC",value=15,name="CooldownRecovery",keywordFlags=8}},nil}c["Minions deal 12% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=12,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,type="INC",value=25,name="CritChance",keywordFlags=16384}},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["Cannot be Stunned while you have at least 25 Rage"]={{[1]={[1]={type="MultiplierThreshold",threshold=25,var="Rage"},flags=0,type="BASE",value=100,name="AvoidStun",keywordFlags=0}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["+20 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["+16 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=16,name="EnergyShield",keywordFlags=0}},nil}c["10% chance to Avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=10,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=10,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=10,name="AvoidIgnite",keywordFlags=0}},nil}c["+45 to all Attributes"]={{[1]={flags=0,type="BASE",value=45,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=45,name="Int",keywordFlags=0}},nil}c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=138,name="CritChance",keywordFlags=0}},nil}c["100% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=100,name="ElementalDamage",keywordFlags=0}},nil}c["+250 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=250,name="Evasion",keywordFlags=0}},nil}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour "}c["10% chance to Dodge Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["Vaal Skills deal 80% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=80,name="Damage",keywordFlags=256}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HavePhysicalGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveLightningGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[3]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveColdGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[4]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveFireGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[5]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveChaosGolem",actor="parent"},flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["88% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",value=88,name="FireDamage",keywordFlags=786432}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={flags=2,type="INC",value=12,name="Speed",keywordFlags=0}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Hits if you have Energy Shield "}c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=256}},nil}c["5% increased Strength"]={{[1]={flags=0,type="INC",value=5,name="Str",keywordFlags=0}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies "}c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={{}," to gain aCharge on Kill Gore Footprints "}c["You cannot have non-Golem Minions"]={nil,"You cannot have non-Golem Minions "}c["+38 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=38,name="Accuracy",keywordFlags=0}},nil}c["23% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-23,name="EnemyStunThreshold",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=262144,name="LifeRecoveryRate",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=262144,name="ManaRecoveryRate",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=262144,name="EnergyShieldRecoveryRate",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage "}c["Adds 3 to 8 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=3,name="FireMin",keywordFlags=131072},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=8,name="FireMax",keywordFlags=131072}},nil}c["225% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=225,name="Evasion",keywordFlags=0}},nil}c["+40 to maximum Mana"]={{[1]={flags=0,type="BASE",value=40,name="Mana",keywordFlags=0}},nil}c["Adds 3 to 7 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=3,name="FireMin",keywordFlags=131072},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=7,name="FireMax",keywordFlags=131072}},nil}c["Channelling Skills deal 15% increased Damage"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["You cannot have non-Animated Minions"]={nil,"You cannot have non-Animated Minions "}c["30% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyStunDuration",keywordFlags=0}},nil}c["+25% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},nil}c["35% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["220% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["5% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=5,name="MineLayingSpeed",keywordFlags=0}},nil}c["8% increased Intelligence"]={{[1]={flags=0,type="INC",value=8,name="Int",keywordFlags=0}},nil}c["17% increased Attack Speed"]={{[1]={flags=1,type="INC",value=17,name="Speed",keywordFlags=0}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="ManaRegen",keywordFlags=0}},nil}c["Adds 225 to 600 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,type="BASE",value=225,name="LightningMin",keywordFlags=0},[2]={flags=1048576,type="BASE",value=600,name="LightningMax",keywordFlags=0}},nil}c["+25% chance to be Poisoned"]={{}," to be Poisoned "}c["2% increased Attack Critical Strike Chance per 200 Accuracy Rating"]={{[1]={[1]={type="PerStat",stat="Accuracy",div=200},flags=1,type="INC",value=2,name="CritChance",keywordFlags=0}},nil}c["Your Golems are aggressive"]={nil,"Your Golems are aggressive "}c["25% increased Attack Speed"]={{[1]={flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["6% reduced Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-6,name="ElementalDamageTaken",keywordFlags=0}},nil}c["Mind Over Matter"]={{[1]={value="Mind Over Matter",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["185% increased Physical Damage"]={{[1]={flags=0,type="INC",value=185,name="PhysicalDamage",keywordFlags=0}},nil}c["+8 to Strength"]={{[1]={flags=0,type="BASE",value=8,name="Str",keywordFlags=0}},nil}c["Minions have 8% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["45% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",value=45,name="Damage",keywordFlags=786432}},nil}c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=2,type="INC",value=200,name="Damage",keywordFlags=0}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste "}c["12% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=16777217,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["24% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's "}c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero "}c["6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge "}c["206% increased Physical Damage"]={{[1]={flags=0,type="INC",value=206,name="PhysicalDamage",keywordFlags=0}},nil}c["2% increased Area of Effect per 25 Rampage Kills Gain a Frenzy Charge on every 50th Rampage Kill"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="INC",value=2,name="AreaOfEffect",keywordFlags=0}}," per 25 Rampage Kills Gain aCharge on every 50th Rampage Kill "}c["40% less Damage"]={{[1]={flags=0,type="MORE",value=-40,name="Damage",keywordFlags=0}},nil}c["Summoned Skeletons have Avatar of Fire"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},value={mod={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=0}},type="LIST",keywordFlags=0,name="MinionModifier",flags=0}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when any of your s is Triggered by an Enemy "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},[2]={type="StatThreshold",stat="PowerCharges",threshold=1},flags=0,type="BASE",keywordFlags=16384,name="ElementalDamageTaken",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["20% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=20,name="Damage",keywordFlags=262144}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["+18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}},nil}c["Attacks with this Weapon Maim on hit"]={nil,"Maim on hit "}c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=256,type="INC",value=100,name="PhysicalDamage",keywordFlags=262144}},nil}c["45% increased Spell Damage"]={{[1]={flags=2,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["8% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=8,name="LootQuantity",keywordFlags=0}},nil}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=19,name="LifeOnHit",keywordFlags=0}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "}c["15% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets "}c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.2,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}}," to "}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies "}c["30% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=30,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["100% increased Spell Damage"]={{[1]={flags=2,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["Adds 10 to 14 Fire Damage"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="FireMax",keywordFlags=0}},nil}c["20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge on non-Critical Strike "}c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.6,name="DamageManaLeech",keywordFlags=0}},nil}c["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike "}c["18% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Evasion if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["9% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=9,name="Damage",keywordFlags=0}},nil}c["40% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=40,name="ManaCost",keywordFlags=0}},nil}c["10% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyShockEffect",keywordFlags=0},[2]={flags=0,type="INC",value=10,name="EnemyChillEffect",keywordFlags=0},[3]={flags=0,type="INC",value=10,name="EnemyFreezeEffech",keywordFlags=0}},nil}c["8% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["Adds 15 to 33 Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="ChaosMax",keywordFlags=0}},nil}c["2% increased Experience gain"]={{}," Experience gain "}c["Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"]={nil,"Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback "}c["Adds 20 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=20,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=30,name="ColdMax",keywordFlags=196608}},nil}c["Adds 20 to 50 Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=0}},nil}c["100% increased Minion Accuracy Rating"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="Accuracy",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 21 to 33 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=21,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=33,name="ColdMax",keywordFlags=196608}},nil}c["24% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 22 to 35 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=22,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=35,name="ColdMax",keywordFlags=196608}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["Ailments against other targets"]={nil,"Ailments against other targets "}c["0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["50% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=50,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}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["1.6% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.6,name="LifeRegenPercent",keywordFlags=0}},nil}c["Far Shot"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="FarShot",flags=0}},nil}c["35% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=35,name="Armour",keywordFlags=0}},nil}c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=10}},nil}c["9% increased Skeleton Cast speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=16,type="INC",value=9,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["12% increased Intelligence"]={{[1]={flags=0,type="INC",value=12,name="Int",keywordFlags=0}},nil}c["35% increased Energy Shield Recovery Rate"]={{[1]={flags=0,type="INC",value=35,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["13% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=13,name="StunRecovery",keywordFlags=0}},nil}c["+20% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FireResist",keywordFlags=0}},nil}c["20% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage"]={{[1]={flags=0,type="INC",value=-20,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage "}c["8% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["50% increased Damage with Movement Skills"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=8}},nil}c["15% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+6% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=6,name="SpellBlockChance",keywordFlags=0}},nil}c["40% reduced Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=-40,name="AreaOfEffect",keywordFlags=2}},nil}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Adds 10 to 15 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=65536}},nil}c["15% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Every 14 seconds:"]={{},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["5% chance to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill "}c["+2% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["4 additional Arrows"]={{[1]={flags=1,type="BASE",value=4,name="ProjectileCount",keywordFlags=0}},nil}c["1% of Life Regenerated per second per 500 Maximum Energy Shield"]={{[1]={[1]={type="PerStat",stat="EnergyShield",div=500},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy "}c["7% increased Spell Damage"]={{[1]={flags=2,type="INC",value=7,name="Damage",keywordFlags=0}},nil}c["+1 to Level of Socketed Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="all",value=1},name="GemProperty",keywordFlags=0}},nil}c["12% increased Damage with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["+1 Life per 4 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=4},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["20% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-20,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=327680},[2]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=327680}},nil}c["and nearby Allies have +1000 to Armour"]={nil,"and nearby Allies have +1000 to Armour "}c["25% chance on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground "}c["You have Crimson Dance while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},value="Crimson Dance",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"]={nil,"Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction "}c["10% increased Damage for each type of Abyssal Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewelType"},flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+30 Life gained on Killing Ignited Enemies Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=30,name="LifeOnKillGainAsFire",keywordFlags=0}}," ing Ignited Enemies Gain 20% of Physical Damage "}c["+40% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=40,name="LightningResist",keywordFlags=0}},nil}c["10% chance to gain a Frenzy Charge when you Block Attack Damage"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=1,type="BASE",value=10,name="Damage",keywordFlags=0}}," to gain aCharge when you Block "}c["10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["100% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=100,name="Damage",keywordFlags=0}},nil}c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["4% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=4,name="Evasion",keywordFlags=0}},nil}c["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you "}c["Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"]={nil,"Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use "}c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy "}c["1% of Damage against Frozen Enemies Leeched as Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=262144}},nil}c["1% increased Armour per 16 Strength when in Off Hand"]={{[1]={[1]={type="PerStat",stat="Str",div=16},[2]={type="SlotNumber",num=2},flags=0,type="INC",keywordFlags=0,name="Armour",value=1}},nil}c["Adds 4 to 8 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=65536}},nil}c["Adds 2 to 4 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=4,name="PhysicalMax",keywordFlags=65536}},nil}c["Adds 4 to 7 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=7,name="PhysicalMax",keywordFlags=65536}},nil}c["+70 to maximum Mana"]={{[1]={flags=0,type="BASE",value=70,name="Mana",keywordFlags=0}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour"]={nil,"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour "}c["Socketed Gems are Supported by level 12 Fortify"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFortify",level=12},name="ExtraSupport",keywordFlags=0}},nil}c["+2 to Weapon range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",keywordFlags=0}},nil}c["+40 to Maximum Life"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}},nil}c["Skills fire an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=0}},nil}c["Recover Full Life at the end of the Flask effect"]={nil,"Recover Full Life at the end of the Flask effect "}c["50% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=50,name="FlaskRecovery",keywordFlags=0}},nil}c["+110 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=110,name="Evasion",keywordFlags=0}},nil}c["+70 to Intelligence"]={{[1]={flags=0,type="BASE",value=70,name="Int",keywordFlags=0}},nil}c["28% increased Movement Speed"]={{[1]={flags=0,type="INC",value=28,name="MovementSpeed",keywordFlags=0}},nil}c["Totems Fire 2 additional Projectiles"]={{[1]={flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=16384}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=35,name="LightningResist",keywordFlags=0}},nil}c["+40% to Critical Strike Multiplier against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=40,name="CritMultiplier",keywordFlags=262144}},nil}c["10% increased Damage taken from Skeletons 10% increased Damage taken from Ghosts"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," from s 10% increased Damage taken from Ghosts "}c["Socketed Gems are Supported by level 10 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdToFire",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently 15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{}," "}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,type="BASE",value=20,name="CritMultiplier",keywordFlags=0}},nil}c["+2% Chance to Block Attack Damage"]={{[1]={flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["15% increased Attributes"]={{[1]={flags=0,type="INC",value=15,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=15,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=15,name="Int",keywordFlags=0}},nil}c["Gain Life from Leech instantly from Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0}},nil}c["60% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Spider"},flags=0,type="INC",value=60,name="AreaOfEffect",keywordFlags=0}},nil}c["Adds 118 to 255 Physical Damage"]={{[1]={flags=0,type="BASE",value=118,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=255,name="PhysicalMax",keywordFlags=0}},nil}c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-8,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered "}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["15% of Physical Attack Damage Added as Lightning Damage"]={{[1]={flags=1,type="BASE",value=15,name="PhysicalDamageGainAsLightning",keywordFlags=0}},nil}c["30% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-30,name="Damage",keywordFlags=0}},nil}c["16% increased Attack Speed"]={{[1]={flags=1,type="INC",value=16,name="Speed",keywordFlags=0}},nil}c["5% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["30% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=65536}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect "}c["+5000 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,type="BASE",value=5000,name="Armour",keywordFlags=0}},nil}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second "}c["Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=46,name="LifeOnHit",keywordFlags=0}},nil}c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,type="MORE",value=-50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["Trigger a Socketed Lightning Spell on Hit"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value={name="SupportUniqueMjolnerLightningSpellsCastOnHit",level=1},type="LIST",keywordFlags=0,name="ExtraSupport",flags=0}},nil}c["24% Chance to Block"]={{[1]={flags=0,type="BASE",value=24,name="BlockChance",keywordFlags=0}},nil}c["100% increased Damage while there is only one nearby Enemy"]={{[1]={[1]={type="Condition",var="OnlyOneNearbyEnemy"},flags=0,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["0% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=0,name="Duration",keywordFlags=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=18,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}},nil}c["100% increased Ignite Duration on You {variant:2}10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=100,name="EnemyIgniteDuration",keywordFlags=0}}," on You {variant:2}10% increased Movement Speed "}c["Minions deal 13% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["15% increased Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Attacks have an additional Projectile when in Off Hand"]={{[1]={[1]={type="SlotNumber",num=2},value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=1}},nil}c["25% increased Attack Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["Adds 125 to 265 Physical Damage"]={{[1]={flags=0,type="BASE",value=125,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=265,name="PhysicalMax",keywordFlags=0}},nil}c["45% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="SelfChillEffect",keywordFlags=0}},nil}c["Adds 115 to 265 Physical Damage"]={{[1]={flags=0,type="BASE",value=115,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=265,name="PhysicalMax",keywordFlags=0}},nil}c["2% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["50% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=50,name="ElementalDamage",keywordFlags=0}},nil}c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "}c["Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["22% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=22,name="PhysicalDamage",keywordFlags=0}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned "}c["50% increased Damage"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["100% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork "}c["6% increased Attack Damage for each Map Item Modifier affecting the Area 3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,type="INC",value=6,name="Damage",keywordFlags=0}}," for each Map Item Modifier affecting the 3% increased Attack Speed for each Map Item Modifier affecting the Area "}c["63% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=63,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["+60% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=60,name="ElementalResist",keywordFlags=0}},nil}c["+2% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=2,name="SpellBlockChance",keywordFlags=0}},nil}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=40,name="ManaRegen",keywordFlags=0}},nil}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["50% chance on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground "}c["You gain 8% increased Damage for each Trap 20% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,type="BASE",value=8,name="Damage",keywordFlags=4096}},"% increased for each 20% Chance for Traps to Trigger an additional time "}c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled "}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["30% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second "}c["+150% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=150,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 23 to 40 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=23,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=196608}},nil}c["+212 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=212,name="IntRequirement",keywordFlags=0}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-4,name="ManaCost",keywordFlags=0}},nil}c["20 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["16% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=16,name="CritChance",keywordFlags=0}},nil}c["12% increased Dexterity"]={{[1]={flags=0,type="INC",value=12,name="Dex",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration "}c["80% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["10% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+25% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ChaosResist",keywordFlags=0}},nil}c["Projectile Damage increased by 50% of Arrow Pierce Chance"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance "}c["Gain a Power Charge after Spending a total of 200 Mana"]={nil,"Gain a Power Charge after Spending a total of 200 Mana "}c["50% increased Stun Duration on you 4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you 4% increased Damage "}c["Melee Critical Strikes have 25% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,type="BASE",value=25,name="PoisonChance",keywordFlags=0}},nil}c["30% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="SupportUniqueMjolnerLightningSpellsCastOnHit",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{}," Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["Adds 4 to 9 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=9,name="PhysicalMax",keywordFlags=0}},nil}c["+30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=30,name="FireResist",keywordFlags=0}},nil}c["30% increased Warcry Duration"]={{[1]={flags=0,type="INC",value=30,name="Duration",keywordFlags=4}},nil}c["2% chance to Dodge Spell Hits"]={{[1]={flags=0,type="BASE",value=2,name="SpellDodgeChance",keywordFlags=0}},nil}c["their Maximum Life as Physical Damage 25% reduced Bleed duration"]={nil,"their Maximum Life as Physical Damage 25% reduced Bleed duration "}c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,type="BASE",value=100,name="ColdResist",keywordFlags=0}}," when Socketed with a Green Gem "}c["15% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["2% of Life Regenerated per Second if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=3,name="FireMax",keywordFlags=196608}},nil}c["Adds 190 to 320 Cold Damage"]={{[1]={flags=0,type="BASE",value=190,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=320,name="ColdMax",keywordFlags=0}},nil}c["Totems have 10% additional Physical Damage Reduction"]={nil,"Totems have 10% additional Physical Damage Reduction "}c["70% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-70,name="FlaskRecovery",keywordFlags=0}},nil}c["17% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=17,name="LootQuantity",keywordFlags=0}},nil}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["Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration"]={nil,"Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration "}c["15% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=15,name="CritChance",keywordFlags=0}},nil}c["30% increased Elemental Damage with Weapons while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["25% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-25,name="EnergyShield",keywordFlags=0}},nil}c["3% increased Character Size"]={{}," Character Size "}c["0.8% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.8,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["10% increased Charges used"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesUsed",keywordFlags=0}},nil}c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"You only lose 7 Crab Barriers when you take Physical Damage from a Hit "}c["100% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["+29 to all Attributes"]={{[1]={flags=0,type="BASE",value=29,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=29,name="Int",keywordFlags=0}},nil}c["18% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="LifeRecoveryRate",keywordFlags=0}},nil}c["Enemies killed by Zombies explode dealing Fire Damage"]={nil,"Enemies killed by Zombies explode dealing Fire Damage "}c["+50% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=50,name="LightningResist",keywordFlags=0}},nil}c["30% increased Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Leech applies instantly during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0},[2]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="InstantManaLeech",flags=0}},nil}c["Immune to Burning Ground, Shocked Ground and Chilled Ground"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground "}c["12% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["+120 to Intelligence"]={{[1]={flags=0,type="BASE",value=120,name="Int",keywordFlags=0}},nil}c["Cannot be Stunned when on Low Life"]={nil,"Cannot be Stunned when on Low Life "}c["14% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=14,name="ChaosDamage",keywordFlags=0}},nil}c["Clarity Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Clarity"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Gain Unholy Might for 2 seconds on Critical Strike"]={nil,"Gain Unholy Might for 2 seconds on Critical Strike "}c["Can have up to 2 additional Remote Mines placed at a time"]={{[1]={flags=0,type="BASE",value=2,name="ActiveMineLimit",keywordFlags=0}},nil}c["140% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=140,name="Evasion",keywordFlags=0}},nil}c["10% Chance to Cause Monster to Flee on Block 1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=0,type="BASE",value=10,name="Damage",keywordFlags=262144}}," to Cause Monster to Flee on Block 1% of Leeched as Life "}c["6% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["Spell Skills deal no Damage Your Spells are disabled"]={nil,"no Damage Your Spells are disabled "}c["12% increased Physical Damage Reduction"]={{[1]={flags=0,type="INC",value=12,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["+10% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=10,name="ColdDotMultiplier",keywordFlags=0}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,type="INC",value=16,name="Damage",keywordFlags=65536}},nil}c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["15% increased Damage with Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["+170 to maximum Life"]={{[1]={flags=0,type="BASE",value=170,name="Life",keywordFlags=0}},nil}c["+47 to maximum Mana"]={{[1]={flags=0,type="BASE",value=47,name="Mana",keywordFlags=0}},nil}c["+60 to maximum Mana"]={{[1]={flags=0,type="BASE",value=60,name="Mana",keywordFlags=0}},nil}c["175% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=175,name="ArmourAndEvasion",keywordFlags=0}},nil}c["10% chance to Cause Monsters to Flee {variant:1}Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee {variant:1} Attacks cause Bleeding "}c["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block "}c["400% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=400,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,type="MORE",value=-50,name="ManaReserved",keywordFlags=0}},nil}c["Determination Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Determination"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments "}c["Grants 2 Passive Skill Points"]={{[1]={flags=0,type="BASE",value=2,name="ExtraPoints",keywordFlags=0}},nil}c["nearby Enemies when Hit"]={nil,"nearby Enemies when Hit "}c["6% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=6,name="MineLayingSpeed",keywordFlags=0}},nil}c["240% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=240,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=25},flags=0,type="BASE",value=1,name="PhysicalMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Dex",div=25},flags=0,type="BASE",value=3,name="PhysicalMax",keywordFlags=65536}},nil}c["Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"]={nil,"Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends "}c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={nil,"Cannot be Frozen or Chilled if you've used a Fire Skill Recently "}c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=23,name="FlaskManaRecovery",keywordFlags=0}},nil}c["+79 to maximum Life"]={{[1]={flags=0,type="BASE",value=79,name="Life",keywordFlags=0}},nil}c["15% increased Item Quantity per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}},nil}c["+300 Armour per active Totem"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active "}c["+10 to Dexterity"]={{[1]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"]={{[1]={flags=0,type="BASE",value=30,name="LightningDamage",keywordFlags=0}}," is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy "}c["15% increased Attack Speed"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=68,name="CritChance",keywordFlags=0}},nil}c["+1 Mana gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="ManaOnKill",keywordFlags=0}},nil}c["+100 to Maximum Energy Shield per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["25% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["10% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},flags=0,type="BASE",value=25,name="ElementalDamageTaken",keywordFlags=16384}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["23% increased Attack Speed"]={{[1]={flags=1,type="INC",value=23,name="Speed",keywordFlags=0}},nil}c["10% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Golems regenerate 2% of their Maximum Life per second"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Shared Suffering"]={nil,"Shared Suffering "}c["+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}}," while you do not have Avatar of Fire "}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"]={{[1]={[1]={type="ActorCondition",var="Frozen",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[2]={[1]={type="ActorCondition",var="Chilled",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[3]={[1]={type="ActorCondition",var="Ignited",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[4]={[1]={type="ActorCondition",var="Shocked",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[5]={[1]={type="ActorCondition",var="Bleeding",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[6]={[1]={type="ActorCondition",var="Poisoned",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area {variant:3}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 {variant:3}With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges "}c["Deal no Non-Elemental Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoPhysical",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="DealNoChaos",flags=0}},nil}c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon "}c["24% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=24,name="Damage",keywordFlags=512}},nil}c["5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["+450 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=450,name="Evasion",keywordFlags=0}},nil}c["16% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=16,name="Damage",keywordFlags=512}},nil}c["Reflects 23 Physical Damage to Melee Attackers"]={{},nil}c["8% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=8,name="PoisonChance",keywordFlags=0}},nil}c["Minions cannot be Blinded"]={nil,"cannot be Blinded "}c["13% increased Cold Damage"]={{[1]={flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=0}},nil}c["18% increased Cast Speed"]={{[1]={flags=16,type="INC",value=18,name="Speed",keywordFlags=0}},nil}c["1% of Fire Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=1,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["100% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,type="INC",value=100,name="DamageTaken",keywordFlags=0}}," when on Low Mana "}c["8% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=8,name="LightningDamage",keywordFlags=0}},nil}c["55% increased Spell Damage"]={{[1]={flags=2,type="INC",value=55,name="Damage",keywordFlags=0}},nil}c["39% increased Spell Damage"]={{[1]={flags=2,type="INC",value=39,name="Damage",keywordFlags=0}},nil}c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=100,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={[1]={type="Multiplier",limit=250,var="PoisonStack",limitTotal=true},flags=0,type="BASE",value=50,name="EnergyShieldRegen",keywordFlags=0}},nil}c["15% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Minions have +10% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="ElementalResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["14% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=14,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",keywordFlags=65536}},nil}c["+11% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=11,name="ElementalResist",keywordFlags=0}},nil}c["1% of Energy Shield regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["18% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-18,name="Duration",keywordFlags=0}},nil}c["Unaffected by Burning Ground"]={nil,"Unaffected by Burning Ground "}c["1% of Energy Shield Regenerated per second for each"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",keywordFlags=0}}," for each "}c["40% increased Burning Damage"]={{[1]={flags=0,type="INC",value=40,name="FireDamage",keywordFlags=134217728}},nil}c["Arrows Pierce an additional Target"]={{[1]={value=1,type="BASE",keywordFlags=0,name="PierceCount",flags=1}},nil}c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit "}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=16,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="ColdResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Generosity"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportGenerosity",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["16% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=16,name="LootRarity",keywordFlags=0}},nil}c["25% reduced Effect of Curses on you"]={{[1]={flags=0,type="INC",value=-25,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=45,name="Evasion",keywordFlags=0}},nil}c["Grants Summon Harbinger of Brutality Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfBrutality",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["+1 Mana per 4 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=4},flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}},nil}c["Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Remove all Ailments and Burning when you gain Adrenaline "}c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={{},nil}c["1% increased Attack Speed per 200 Accuracy Rating"]={{[1]={[1]={type="PerStat",stat="Accuracy",div=200},flags=1,type="INC",value=1,name="Speed",keywordFlags=0}},nil}c["20% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=20,name="FlaskChargesGained",keywordFlags=0}},nil}c["+16% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=16,name="ChaosResist",keywordFlags=0}},nil}c["15% increased Dexterity"]={{[1]={flags=0,type="INC",value=15,name="Dex",keywordFlags=0}},nil}c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,type="BASE",value=1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={type="PerStat",stat="Dex",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="BASE",value=7,name="CritMultiplier",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="BASE",value=20,name="ColdPenetration",keywordFlags=262144}},nil}c["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge "}c["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy "}c["9% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["+20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Right ring slot: +100 to maximum Mana"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["6% increased Area of Effect"]={{[1]={flags=0,type="INC",value=6,name="AreaOfEffect",keywordFlags=0}},nil}c["Trigger Socketed Curse Spells when you cast a Curse"]={nil,"Trigger Socketed Curse Spells when you cast a Curse "}c["77% increased Spell Damage"]={{[1]={flags=2,type="INC",value=77,name="Damage",keywordFlags=0}},nil}c["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=38,name="LifeOnHit",keywordFlags=0}},nil}c["Adds 21 to 39 Physical Damage"]={{[1]={flags=0,type="BASE",value=21,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=39,name="PhysicalMax",keywordFlags=0}},nil}c["10% chance of Arrows Piercing"]={{}," of Arrows Piercing "}c["34% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=34,name="ElementalDamage",keywordFlags=65536}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock "}c["+74 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=74,name="Accuracy",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMulticast",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 3 to 6 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=3,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=6,name="FireMax",keywordFlags=131072}},nil}c["Adds 12 to 32 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=32,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 15 to 28 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=28,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage "}c["50% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["20% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="LifeConvertToEnergyShield",keywordFlags=0}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",keywordFlags=0}}," for Recharge to start when you use a Skill "}c["172% increased Physical Damage"]={{[1]={flags=0,type="INC",value=172,name="PhysicalDamage",keywordFlags=0}},nil}c["12% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=16,name="LootQuantity",keywordFlags=0}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=14,name="Damage",keywordFlags=65536}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["+18 to All Attributes"]={{[1]={flags=0,type="BASE",value=18,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=18,name="Int",keywordFlags=0}},nil}c["6% increased Spell Damage"]={{[1]={flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["+2 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=40,name="EnergyShield",keywordFlags=0}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["Traps and Mines deal 4 to 13 additional Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=12288},[2]={flags=0,type="BASE",value=13,name="PhysicalMax",keywordFlags=12288}},nil}c["12% chance to deal Double Damage"]={{[1]={flags=0,type="BASE",value=12,name="DoubleDamageChance",keywordFlags=0}},nil}c["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=4096}},nil}c["1% Life Regenerated per Second for each of your Mines Detonated Recently, up to 20%"]={{[1]={[1]={type="Multiplier",limit=20,var="MineDetonatedRecently",limitTotal=true},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["4% chance to Dodge Spell Hits"]={{[1]={flags=0,type="BASE",value=4,name="SpellDodgeChance",keywordFlags=0}},nil}c["+69 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=69,name="EnergyShield",keywordFlags=0}},nil}c["+10% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=10,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="LightningResist",keywordFlags=0}},nil}c["Hits that Stun Enemies have Culling Strike"]={nil,"Hits that Stun Enemies have Culling Strike "}c["+12% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="ColdResist",keywordFlags=0}},nil}c["20% increased Stun Threshold"]={{[1]={flags=0,type="INC",value=20,name="StunThreshold",keywordFlags=0}},nil}c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "}c["+1% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=1,name="FireResistMax",keywordFlags=0}},nil}c["+63 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=63,name="EnergyShield",keywordFlags=0}},nil}c["10% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["65% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=65,name="ChaosDamage",keywordFlags=0}},nil}c["Adds 1 to 18 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=65536}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,type="BASE",value=1.5,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["+84 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=84,name="EnergyShield",keywordFlags=0}},nil}c["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=16384,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IronReflexes",flags=0}},nil}c["+231 to Armour"]={{[1]={flags=0,type="BASE",value=231,name="Armour",keywordFlags=0}},nil}c["8% chance to Block Spells while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,type="BASE",value=8,name="SpellBlockChance",keywordFlags=0}},nil}c["74% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["-25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=-25,name="CritMultiplier",keywordFlags=0}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality "}c["+17 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=17,name="Evasion",keywordFlags=0}},nil}c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "}c["+17 to Armour"]={{[1]={flags=0,type="BASE",value=17,name="Armour",keywordFlags=0}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["2% increased Area of Effect per 25 Rampage Kills"]={{[1]={flags=0,type="INC",value=2,name="AreaOfEffect",keywordFlags=0}}," per 25 Rampage Kills "}c["Minions' Attacks deal 7 to 14 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=7,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["18% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["+23 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=23,name="Evasion",keywordFlags=0}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={type="SkillType",skillType=63},flags=0,type="BASE",value=35,name="AvoidStun",keywordFlags=0}}," for each Herald Skill affecting you Mana Reservation is always 45% "}c["Adds 1 to 17 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=17,name="LightningMax",keywordFlags=65536}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy "}c["18% increased Melee Damage"]={{[1]={flags=256,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["Adds 12 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 13 to 30 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="PhysicalMax",keywordFlags=0}},nil}c["+23 to Armour"]={{[1]={flags=0,type="BASE",value=23,name="Armour",keywordFlags=0}},nil}c["Minions deal 18% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["74% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["40% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-40,name="Damage",keywordFlags=16384}},nil}c["-40 Physical Damage taken when hit by Animals"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTakenWhenHit",keywordFlags=0}}," by Animals "}c["You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["74% increased Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="EnergyShield",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage "}c["100% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="NormalItem",threshold=1},flags=0,type="INC",value=100,name="LootRarity",keywordFlags=0}},nil}c["+6 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=6,name="LifeOnKill",keywordFlags=0}},nil}c["Socketed Gems are supported by level 20 Cast on Death"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportCastOnDeath",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["74% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=74,name="Evasion",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of "}c["70% increased Fire Damage"]={{[1]={flags=0,type="INC",value=70,name="FireDamage",keywordFlags=0}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=48,name="Evasion",keywordFlags=0}},nil}c["+20 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=20,name="Evasion",keywordFlags=0}},nil}c["10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit"]={nil,"Intimidate Enemies for 4 seconds on Hit "}c["+1 to Level of Active Socketed Skill Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="active_skill",value=1},name="GemProperty",keywordFlags=0}},nil}c["+125 to maximum Life"]={{[1]={flags=0,type="BASE",value=125,name="Life",keywordFlags=0}},nil}c["+35% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=35,name="CritMultiplier",keywordFlags=0}},nil}c["+10 to maximum Mana"]={{[1]={flags=0,type="BASE",value=10,name="Mana",keywordFlags=0}},nil}c["You have Zealot's Oath if you haven't been hit recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},value="Zealot's Oath",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Minions have 10% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+1 to Maximum Frenzy Charges and Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=1,name="FrenzyChargesMax",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},nil}c["40% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-50,name="ElementalResist",keywordFlags=0}},nil}c["You gain Phasing for 3 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill "}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["100% increased Aspect of the Avian Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Avian"},flags=0,type="INC",value=100,name="BuffEffect",keywordFlags=0}},nil}c["2% increased Energy Shield per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="INC",value=2,name="EnergyShield",keywordFlags=0}},nil}c["550% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=550,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=40,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=40,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=40,name="EnemyIgniteDuration",keywordFlags=0},[5]={flags=0,type="INC",value=40,name="EnemyPoisonDuration",keywordFlags=0},[6]={flags=0,type="INC",value=40,name="EnemyBleedDuration",keywordFlags=0}},nil}c["600% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=600,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["130% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 20 to 40 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="PhysicalMax",keywordFlags=0}},nil}c["23% increased Trap Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=4096}},nil}c["15% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-15,name="Speed",keywordFlags=0}},nil}c["Adds 350 to 500 Cold Damage"]={{[1]={flags=0,type="BASE",value=350,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=500,name="ColdMax",keywordFlags=0}},nil}c["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Adds 25 to 60 Physical Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["-18 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-18,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["28% increased Trap Damage"]={{[1]={flags=0,type="INC",value=28,name="Damage",keywordFlags=4096}},nil}c["4% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=4,name="SpellDodgeChance",keywordFlags=0}},nil}c["You always Ignite while Burning"]={{[1]={[1]={type="Condition",var="Burning"},value=100,type="BASE",keywordFlags=0,name="EnemyIgniteChance",flags=0}},nil}c["70% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Hindered"},flags=0,type="INC",value=70,name="Damage",keywordFlags=786432}},nil}c["You are Immune to Silence"]={nil,"You are Immune to Silence "}c["Adds 145 to 230 Fire Damage"]={{[1]={flags=0,type="BASE",value=145,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=230,name="FireMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIncreasedAreaOfEffect",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["14% increased Attack Speed"]={{[1]={flags=1,type="INC",value=14,name="Speed",keywordFlags=0}},nil}c["Cannot gain Energy Shield"]={nil,"Cannot gain Energy Shield "}c["Spectres have 75% increased maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=75,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["70% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Spider"},flags=0,type="INC",value=70,name="AreaOfEffect",keywordFlags=0}},nil}c["Golems have 20% increased Maximum Life"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% increased maximum Mana"]={{[1]={flags=0,type="INC",value=10,name="Mana",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"]={{}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web "}c["10% chance to grant a Power Charge to nearby Allies on Kill 5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant a Power Charge to nearby Allies on Kill 5% chance to grant aCharge to nearby Allies on Hit "}c["20% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",keywordFlags=65536}},nil}c["30% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyShockEffect",keywordFlags=0},[2]={flags=0,type="INC",value=30,name="EnemyChillEffect",keywordFlags=0},[3]={flags=0,type="INC",value=30,name="EnemyFreezeEffech",keywordFlags=0}},nil}c["10% increased Radius of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["70% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["2% additional Chance to Block Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=2,name="SpellBlockChance",keywordFlags=0}},nil}c["2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=50},flags=0,type="LIST",value={mod={flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+50 Mana gained when you Block +5% Chance to Block"]={{[1]={flags=0,type="BASE",value=50,name="Mana",keywordFlags=0}}," gained when you Block +5% Chance to Block "}c["+50 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=50,name="Mana",keywordFlags=0}}," gained when you Block "}c["Adds 7 to 15 Physical Damage"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Character Size"]={{}," Character Size "}c["50% reduced Freeze Duration on You {variant:1}1% of Life Regenerated per Second"]={{}," "}c["Unaffected by Temporal Chains"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["5% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",value=50,name="Damage",keywordFlags=786432}},nil}c["6% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=6,name="LifeRegenPercent",keywordFlags=0}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration "}c["1% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge"]={{}," to gain an Endurance Charge when you gain a Power Charge "}c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=50,name="Defences",keywordFlags=0}},nil}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,type="INC",value=-50,name="EnemyFreezeDuration",keywordFlags=0}}," on You "}c["Adds 65 to 105 Chaos Damage"]={{[1]={flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=105,name="ChaosMax",keywordFlags=0}},nil}c["You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=64,name="FireMin",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=96,name="FireMax",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["157% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=157,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["235% increased Physical Damage"]={{[1]={flags=0,type="INC",value=235,name="PhysicalDamage",keywordFlags=0}},nil}c["+20% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=20,name="SpellBlockChance",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["+24% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=24,name="SpellBlockChance",keywordFlags=0}},nil}c["28% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=28,name="LightningDamage",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells {variant:2}80% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=120,name="BlockChance",keywordFlags=0}}," applied to s {variant:2}80% of Block Chance applied to Spells "}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded "}c["120% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=120,name="BlockChance",keywordFlags=0}}," applied to s "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons "}c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 "}c["18 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=18,name="LifeRegen",keywordFlags=0}},nil}c["17% increased Totem Life"]={{[1]={flags=0,type="INC",value=17,name="TotemLife",keywordFlags=0}},nil}c["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy "}c["40% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=40,name="PhysicalDamage",keywordFlags=0}}," Maximum "}c["10% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["19% increased Attack Speed"]={{[1]={flags=1,type="INC",value=19,name="Speed",keywordFlags=0}},nil}c["+5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=5,name="FireResistMax",keywordFlags=0}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",keywordFlags=65536}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to "}c["+8% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResistMax",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["1.5% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,type="BASE",value=1.5,name="PhysicalDamage",keywordFlags=0}}," Total prevented from Hits in the past 10 seconds is Regenerated as Life per second "}c["20 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["3% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["0.4% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,type="BASE",value=0.4,name="DamageEnergyShieldLeech",keywordFlags=0}},nil}c["+60 Maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["Socketed Gems have 25% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-25,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["+1 to Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems"]={{}," Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems "}c["33% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,type="BASE",value=33,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["12% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Your Elemental Damage can Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ColdCanShock",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="FireCanShock",flags=0}},nil}c["+1 to Level of Aura Gems in this item"]={{}," Level of Aura Gems in this item "}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies "}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["250% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Triggers Level 20 Fire Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="FireAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["36% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,type="INC",value=36,name="Speed",keywordFlags=0}},nil}c["42% increased Spell Damage"]={{[1]={flags=2,type="INC",value=42,name="Damage",keywordFlags=0}},nil}c["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner "}c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds "}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare "}c["30% increased Damage when you have no Energy Shield"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," when you have no Energy Shield "}c["10% reduced Quantity of Items found"]={{[1]={flags=0,type="INC",value=-10,name="LootQuantity",keywordFlags=0}},nil}c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=50,name="ManaRegen",keywordFlags=0}},nil}c["Totems have 50% of your Armour"]={nil,"Totems have 50% of your Armour "}c["-10% Chance to Block"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChance",keywordFlags=0}},nil}c["15% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="INC",value=15,name="CritChance",keywordFlags=262144}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.4,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["20% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["350% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=350,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death "}c["225% increased Armour"]={{[1]={flags=0,type="INC",value=225,name="Armour",keywordFlags=0}},nil}c["7% increased maximum Life"]={{[1]={flags=0,type="INC",value=7,name="Life",keywordFlags=0}},nil}c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=15,name="ElementalDamage",keywordFlags=65536}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds"]={nil,nil}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",keywordFlags=262144,name="BleedChance",value=25}},nil}c["Adds 9 to 15 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=9,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 43 to 113 Physical Damage"]={{[1]={flags=0,type="BASE",value=43,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=113,name="PhysicalMax",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block "}c["20% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="LightningDamageManaLeech",keywordFlags=0}},nil}c["8% additional chance to Block when in Off Hand"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-7,name="ManaCost",keywordFlags=0}},nil}c["+8 to Armour"]={{[1]={flags=0,type="BASE",value=8,name="Armour",keywordFlags=0}},nil}c["+2 Mana per 4 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=4},flags=0,type="BASE",value=2,name="Mana",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["5% increased Effect of Flasks on you"]={{[1]={flags=0,type="INC",value=5,name="FlaskEffect",keywordFlags=0}},nil}c["100% increased Duration of Curses on you +5% Chance to Block"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=0}}," of Curses on you +5% Chance to Block "}c["50% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["+475 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=475,name="Accuracy",keywordFlags=0}},nil}c["+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={[1]={type="PerStat",stat="EnergyShieldOnWeapon 2",div=5},flags=0,type="BASE",value=20,name="Evasion",keywordFlags=0}},nil}c["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="ColdAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["8% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=8,name="Evasion",keywordFlags=0}},nil}c["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Your Flasks grant 25% reduced Enemy Stun Threshold during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-25,name="EnemyStunThreshold",keywordFlags=0}},nil}c["20% chance to Block Attacks if you've Blocked a Spell Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["20% increased Effect of Auras on you"]={{[1]={flags=0,type="INC",value=20,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["+80 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=80,name="EnergyShield",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of "}c["+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=30,name="SpellBlockChance",keywordFlags=0}},nil}c["+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=36,name="SpellBlockChance",keywordFlags=0}},nil}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={{[1]={[1]={type="Condition",var="AffectedByPurityofLightning"},flags=0,type="BASE",value=10,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=6,name="LifeGainAsEnergyShield",keywordFlags=0}},nil}c["Increases and Reductions to Minion Damage also affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MinionDamageAppliesToPlayer",flags=0}},nil}c["With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"]={nil,"With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies "}c["10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["120% increased Block Recovery"]={{[1]={flags=0,type="INC",value=120,name="BlockRecovery",keywordFlags=0}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=6,name="LootQuantity",keywordFlags=0}},nil}c["Adds 2 to 50 Lightning Damage"]={{[1]={flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="LightningMax",keywordFlags=0}},nil}c["25% increased Totem Life"]={{[1]={flags=0,type="INC",value=25,name="TotemLife",keywordFlags=0}},nil}c["110% increased Physical Damage"]={{[1]={flags=0,type="INC",value=110,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 2 to 4 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=4,name="PhysicalMax",keywordFlags=0}},nil}c["22% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=22,name="StunRecovery",keywordFlags=0}},nil}c["Adds 150 to 250 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=150,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=250,name="FireMax",keywordFlags=131072}},nil}c["+8 Mana gained when you Block +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=8,name="Mana",keywordFlags=0}}," gained when you Block +4% Chance to Block Attack Damage "}c["Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["0.5% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack "}c["+10% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["25% of Block Chance applied to Spells {variant:2}+7% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=25,name="BlockChance",keywordFlags=0}}," applied to s {variant:2}+7% chance to Block Spell Damage "}c["Adds 10 to 16 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=16,name="PhysicalMax",keywordFlags=0}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit "}c["+20% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=0}},nil}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"]={nil,"During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped "}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike "}c["You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"]={nil,"You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught "}c["+18% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=18,name="SpellBlockChance",keywordFlags=0}},nil}c["Adds 7 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["60% of Block Chance applied to Spells {variant:2}+18% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=60,name="BlockChance",keywordFlags=0}}," applied to s {variant:2}+18% chance to Block Spell Damage "}c["Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning "}c["Melee Attacks Poison on Hit"]={{[1]={value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=256}},nil}c["60% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=60,name="BlockChance",keywordFlags=0}}," applied to s "}c["Adds 2 to 3 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=3,name="ColdMax",keywordFlags=196608}},nil}c["Adds 6 to 12 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second "}c["Spreads Tar when you Block"]={nil,"Spreads Tar when you Block "}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",keywordFlags=0}},nil}c["160% increased Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EnergyShield",keywordFlags=0}},nil}c["+3 to Level of Socketed Minion Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="minion",value=3},name="GemProperty",keywordFlags=0}},nil}c["Minions have +15% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% increased Mine Arming Speed"]={{}," Arming Speed "}c["Maximum total Recovery per second from Life Leech is doubled."]={{[1]={value=100,type="MORE",keywordFlags=0,name="MaxLifeLeechRate",flags=0}},nil}c["10% more Damage"]={{[1]={flags=0,type="MORE",value=10,name="Damage",keywordFlags=0}},nil}c["10% increased Effect of Auras on your Minions"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=25,name="Damage",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion "}c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit "}c["+5% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=5,name="ColdDotMultiplier",keywordFlags=0}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse "}c["Fire Spells have 15% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,type="BASE",value=15,name="PhysicalDamageConvertToFire",keywordFlags=16}},nil}c["+2 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=2,name="PowerChargesMax",keywordFlags=0}},nil}c["Adds 10 to 14 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=14,name="FireMax",keywordFlags=65536}},nil}c["Adds 37 to 57 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=37,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=57,name="ColdMax",keywordFlags=131072}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield"]={nil,"Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield "}c["+8% Chance to Block"]={{[1]={flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="FirePenetration",keywordFlags=0}},nil}c["538% increased Energy Shield"]={{[1]={flags=0,type="INC",value=538,name="EnergyShield",keywordFlags=0}},nil}c["100% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=0}},nil}c["+90 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=90,name="EnergyShield",keywordFlags=0}},nil}c["+7 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}c["Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience "}c["Adds 39 to 60 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=39,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=60,name="ColdMax",keywordFlags=131072}},nil}c["25% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-25,name="ProjectileSpeed",keywordFlags=0}},nil}c["14% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["20% chance to Avoid Elemental Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=20,name="AvoidShock",keywordFlags=0},[2]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=20,name="AvoidFrozen",keywordFlags=0},[3]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=20,name="AvoidChilled",keywordFlags=0},[4]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=20,name="AvoidIgnite",keywordFlags=0}},nil}c["+2 to Weapon Range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",keywordFlags=0}},nil}c["Iron Will"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IronWill",flags=0}},nil}c["Adds 94 to 137 Physical Damage"]={{[1]={flags=0,type="BASE",value=94,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=137,name="PhysicalMax",keywordFlags=0}},nil}c["Your Spells have Culling Strike"]={nil,"Your Spells have Culling Strike "}c["+1000 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=1000,name="Accuracy",keywordFlags=0}},nil}c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={flags=2,type="INC",value=-30,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies "}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=30,name="FireDamage",keywordFlags=786432}},nil}c["30% increased Fire Damage against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=30,name="FireDamage",keywordFlags=262144}},nil}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies "}c["240% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=240,name="Evasion",keywordFlags=0}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies "}c["20% of Overkill Damage is Leeched as Life You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="BASE",value=20,name="DamageLifeLeech",keywordFlags=0}}," Overkill You are Immune to Bleeding "}c["+38% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=38,name="LightningResist",keywordFlags=0}},nil}c["and nearby Allies cannot be Stunned"]={nil,"and nearby Allies cannot be Stunned "}c["Adds 1 to 25 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=25,name="LightningMax",keywordFlags=65536}},nil}c["Shock Reflection"]={nil,"Shock Reflection "}c["Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do "}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry "}c["Cold Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=32}},nil}c["Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry"]={nil,"Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry "}c["+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="LightningResist",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}},nil}c["40% increased Energy Shield"]={{[1]={flags=0,type="INC",value=40,name="EnergyShield",keywordFlags=0}},nil}c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="LightningMax",keywordFlags=0}},nil}c["+200 Strength Requirement"]={{[1]={flags=0,type="BASE",value=200,name="StrRequirement",keywordFlags=0}},nil}c["80% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=80,name="ChaosDamage",keywordFlags=0}},nil}c["Adds 12 to 16 Cold Damage"]={{[1]={flags=0,type="BASE",value=12,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="ColdMax",keywordFlags=0}},nil}c["2 additional Projectiles if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["Has 6 Sockets"]={{[1]={flags=0,type="BASE",value=6,name="SocketCount",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 4 to 8 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=8,name="ColdMax",keywordFlags=65536}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={flags=2,type="INC",value=50,name="CritChance",keywordFlags=0}}," per Raised Spectre "}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["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently"]={{[1]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,type="BASE",value=10,name="LightningMax",keywordFlags=0}},nil}c["100% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=100,name="PowerChargesDuration",keywordFlags=0}},nil}c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=40,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ColdResist",keywordFlags=0}},nil}c["+5% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=5,name="SpellBlockChance",keywordFlags=0}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned "}c["9% increased Skeleton Attack Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,type="INC",value=-30,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=-30,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=-30,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=-30,name="EnemyIgniteDuration",keywordFlags=0},[5]={flags=0,type="INC",value=-30,name="EnemyPoisonDuration",keywordFlags=0},[6]={flags=0,type="INC",value=-30,name="EnemyBleedDuration",keywordFlags=0}},nil}c["2 Mana Regenerated per Second per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=2,name="ManaRegen",keywordFlags=0}},nil}c["20% reduced Cast Speed"]={{[1]={flags=16,type="INC",value=-20,name="Speed",keywordFlags=0}},nil}c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=50,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit Cannot Leech Mana"]={{[1]={flags=0,type="BASE",value=10,name="DamageTaken",keywordFlags=0}}," Gained as Mana over 4 seconds when Hit Cannot Leech Mana "}c["Adds 55 to 80 Chaos Damage"]={{[1]={flags=0,type="BASE",value=55,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="ChaosMax",keywordFlags=0}},nil}c["Adds 21 to 34 Chaos Damage"]={{[1]={flags=0,type="BASE",value=21,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=34,name="ChaosMax",keywordFlags=0}},nil}c["Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"]={nil,"Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage "}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower "}c["15% increased Damage with One Handed Weapons"]={{[1]={flags=16777216,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["40% less Minimum Physical Attack Damage {variant:1}20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-40,name="PhysicalDamage",keywordFlags=0}}," Minimum {variant:1}20% more Maximum Physical Attack Damage "}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill "}c["20% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=25,name="FlaskManaRecovery",keywordFlags=0}},nil}c["Adds 22 to 37 Chaos Damage"]={{[1]={flags=0,type="BASE",value=22,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=37,name="ChaosMax",keywordFlags=0}},nil}c["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,type="BASE",value=10,name="Damage",keywordFlags=0}}," Reflected Gained as Life "}c["Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life "}c["+78 to maximum Life"]={{[1]={flags=0,type="BASE",value=78,name="Life",keywordFlags=0}},nil}c["+15 to maximum Life"]={{[1]={flags=0,type="BASE",value=15,name="Life",keywordFlags=0}},nil}c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["Reflects 1 to 1000 Physical Damage to Attackers on Block"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block "}c["With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["0.8% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.8,name="DamageLifeLeech",keywordFlags=0}},nil}c["Critical Strike Chance is increased by Uncapped Lightning Resistance"]={{[1]={[1]={type="PerStat",stat="LightningResistTotal",div=1},value=1,type="INC",keywordFlags=0,name="CritChance",flags=0}},nil}c["90% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage "}c["25% Increased Warcry Effect"]={{[1]={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=4}},nil}c["Critical Strikes with Daggers have a 40% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=32768,type="BASE",value=40,name="PoisonChance",keywordFlags=0}},nil}c["You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect"]={nil,"You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect "}c["You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 4 seconds on using a Warcry "}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry "}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="LifeRegen",keywordFlags=0}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["100% reduced Flammability Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Flammability"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["30% less Animate Weapon Duration"]={{[1]={[1]={type="SkillName",skillName="Animate Weapon"},flags=0,type="MORE",value=-30,name="Duration",keywordFlags=0}},nil}c["50% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=50,name="StunRecovery",keywordFlags=0}},nil}c["+8% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=8,name="CritMultiplier",keywordFlags=0}},nil}c["+120 to maximum Mana"]={{[1]={flags=0,type="BASE",value=120,name="Mana",keywordFlags=0}},nil}c["Modifiers to Claw Damage also apply to Unarmed Attack Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ClawDamageAppliesToUnarmed",flags=0}},nil}c["10% increased Totem Life"]={{[1]={flags=0,type="INC",value=10,name="TotemLife",keywordFlags=0}},nil}c["200% increased Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=200,name="Duration",keywordFlags=0}},nil}c["10% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["Curse Skills have 10% increased Cast Speed"]={{[1]={[1]={type="SkillType",skillType=32},flags=16,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=165,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Rampage"]={nil,"Rampage "}c["4% increased Cast Speed"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets "}c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy "}c["Adds 10 to 18 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=65536}},nil}c["12% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=12,name="SpellBlockChance",keywordFlags=0}},nil}c["10% of Fire Damage taken as Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="FireDamageTakenAsPhysical",keywordFlags=0}},nil}c["Adds 12 to 20 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=65536}},nil}c["20% increased Cast Speed"]={{[1]={flags=16,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["60% increased Intelligence Requirement"]={{[1]={flags=0,type="INC",value=60,name="IntRequirement",keywordFlags=0}},nil}c["7 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=7,name="LifeRegen",keywordFlags=0}},nil}c["10% chance to Cause Monsters to Flee Enemies you Shock have 30% reduced Cast Speed"]={{[1]={flags=16,type="BASE",value=10,name="Speed",keywordFlags=0}}," to Cause Monsters to Flee Enemies you Shock have 30% reduced "}c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-15,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy "}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=50,name="ManaCost",keywordFlags=0}},nil}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike "}c["Adds 12 to 20 Fire Damage"]={{[1]={flags=0,type="BASE",value=12,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="FireMax",keywordFlags=0}},nil}c["100% increased Curse Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=2}},nil}c["25% reduced Mana Cost of Skills that place Mines or throw Traps"]={{[1]={flags=0,type="INC",value=-25,name="ManaCost",keywordFlags=12288}},nil}c["6% increased Attack and Cast Speed while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["+2% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["Totems Reflect 15% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to "}c["30% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=30,name="LootQuantity",keywordFlags=0}},nil}c["Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=8,name="FireMax",keywordFlags=65536}},nil}c["0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["20% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=20,name="CurseEffect",keywordFlags=0}},nil}c["Socketed Gems fire 4 additional Projectiles"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="ProjectileCount",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Nearby allies gain 18% increased Damage"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Unaffected by Curses"]={{[1]={value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["Adds 65 to 120 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=65,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=120,name="FireMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Hypothermia"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportDamageAgainstChilled",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned"]={nil,"When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned "}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses "}c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["60% less Critical Strike Chance"]={{[1]={flags=0,type="MORE",value=-60,name="CritChance",keywordFlags=0}},nil}c["15% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=15,name="ElementalDamage",keywordFlags=0}},nil}c["1% increased Chaos Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="INC",value=1,name="ChaosDamage",keywordFlags=0}},nil}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,type="LIST",value={skillId="AbyssalCry",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["1% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["190% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=190,name="Evasion",keywordFlags=0}},nil}c["Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 25 Life for each Enemy hit by your Attacks "}c["Curse Reflection"]={nil,"Curse Reflection "}c["20% additional Spell Block chance while Cursed"]={{[1]={[1]={type="Condition",var="Cursed"},flags=0,type="BASE",value=20,name="SpellBlockChance",keywordFlags=0}},nil}c["10% additional Block chance while not Cursed"]={{[1]={[1]={type="Condition",neg=true,var="Cursed"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="IgnoreElementalResistances",flags=0}},nil}c["50% reduced Duration of Curses on you"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}}," of Curses on you "}c["+30 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}c["+60 to Intelligence"]={{[1]={flags=0,type="BASE",value=60,name="Int",keywordFlags=0}},nil}c["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active Blood Magic "}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["0.5% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,type="BASE",value=0.5,name="DamageLifeLeechToPlayer",keywordFlags=16384}},nil}c["You can Cast an additional Brand"]={nil,"You can Cast an additional Brand "}c["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=16384}},nil}c["5% increased Defences"]={{[1]={flags=0,type="INC",value=5,name="Defences",keywordFlags=0}},nil}c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=16384}},nil}c["0.5% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["Adds 25 to 50 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=25,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=196608}},nil}c["200% increased Armour against Projectiles +25% additional Block Chance against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles +25% additional Block Chance against Projectiles "}c["200% increased Armour against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles "}c["Socketed Gems are Supported by level 13 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=13},name="ExtraSupport",keywordFlags=0}},nil}c["24% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-80,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks "}c["-10 Physical Damage taken from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-10,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks "}c["145% increased Physical Damage"]={{[1]={flags=0,type="INC",value=145,name="PhysicalDamage",keywordFlags=0}},nil}c["+13 to Dexterity"]={{[1]={flags=0,type="BASE",value=13,name="Dex",keywordFlags=0}},nil}c["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy "}c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Taunted"},flags=1,type="BASE",value=2,name="DamageLifeLeech",keywordFlags=262144}},nil}c["+1 to Level of Socketed Warcry Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="warcry",value=1},name="GemProperty",keywordFlags=0}},nil}c["+90 to Evasion Rating and Energy Shield"]={{[1]={flags=0,type="BASE",value=90,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=257,name="IntRequirement",keywordFlags=0}},nil}c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="ElementalAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["0.8% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.8,name="DamageManaLeech",keywordFlags=0}},nil}c["+4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",keywordFlags=0}},nil}c["15% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=15,name="LightningDamage",keywordFlags=0}},nil}c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Chilled"},keywordFlags=0,type="MORE",value=100,name="Damage",flags=4}},nil}c["also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill "}c["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}c["284% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=284,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["40% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["Intelligence provides no bonus to Maximum Mana"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoIntBonusToMana",flags=0}},nil}c["+5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks "}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks "}c["and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["30% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=30,name="LootRarity",keywordFlags=0}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned "}c["+25 to maximum Mana"]={{[1]={flags=0,type="BASE",value=25,name="Mana",keywordFlags=0}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=15,name="Damage",keywordFlags=1048576}}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased "}c["You lose all Endurance Charges at maximum Endurance Charges Cannot Block"]={nil,"You lose all Endurance Charges at maximum Endurance Charges Cannot Block "}c["Speed per second"]={nil,"Speed per second "}c["You lose all Endurance Charges at maximum Endurance Charges"]={nil,"You lose all Endurance Charges at maximum Endurance Charges "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life "}c["10% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesGained",keywordFlags=0}},nil}c["10% increased Area Damage"]={{[1]={flags=512,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+43% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=43,name="FireResist",keywordFlags=0}},nil}c["135% increased Armour"]={{[1]={flags=0,type="INC",value=135,name="Armour",keywordFlags=0}},nil}c["Adds 14 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=14,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=33,name="FireMax",keywordFlags=196608}},nil}c["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit "}c["Lightning Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=64}},nil}c["20% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-20,name="StrRequirement",keywordFlags=0}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit "}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["18% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["Adds 5 to 8 Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},nil}c["1% of Damage against Shocked Enemies Leeched as Mana"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="BASE",value=1,name="DamageManaLeech",keywordFlags=262144}},nil}c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=0}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination "}c["Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge"]={nil,"Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge "}c["6% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Adds 15 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=15,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=196608}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value "}c["Adds 10 to 25 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=25,name="FireMax",keywordFlags=65536}},nil}c["Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill "}c["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=3,name="ElementalDamage",keywordFlags=0}}," Experience gain 20% increased "}c["+73 to maximum Life"]={{[1]={flags=0,type="BASE",value=73,name="Life",keywordFlags=0}},nil}c["You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Chilled "}c["80% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["+1500 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",value=1500,name="Armour",keywordFlags=0}},nil}c["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block "}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.8,name="LifeRegenPercent",keywordFlags=0}},nil}c["Socketed Gems are supported by level 10 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLifeLeech",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Onslaught"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["170% increased Armour"]={{[1]={flags=0,type="INC",value=170,name="Armour",keywordFlags=0}},nil}c["75% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["Adds 35 to 65 Physical Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=65,name="PhysicalMax",keywordFlags=0}},nil}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=24,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=1,name="ColdMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=2,name="ColdMax",keywordFlags=65536}},nil}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block "}c["+1000 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",value=1000,name="Armour",keywordFlags=0}},nil}c["Minions have 15% chance to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=15,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Leech "}c["8% chance to Dodge Spells while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,type="BASE",value=8,name="SpellDodgeChance",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBloodMagic",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block "}c["Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill"]={nil,"Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill "}c["You have Onslaught while at maximum Endurance Charges"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",thresholdStat="EnduranceChargesMax"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit "}c["+6% Chance to Block"]={{[1]={flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["-10% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChanceMax",keywordFlags=0}},nil}c["63% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=63,name="CritChance",keywordFlags=0}},nil}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,type="INC",value=-10,name="DamageTakenOverTime",keywordFlags=0}},nil}c["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike "}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=150,name="EnemyChillDuration",keywordFlags=0}},nil}c["75% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-8,name="ManaCost",keywordFlags=0}},nil}c["+360 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=360,name="Accuracy",keywordFlags=0}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=435,name="Accuracy",keywordFlags=0}},nil}c["Your Physical Damage can Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PhysicalCanShock",flags=0}},nil}c["100% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage "}c["+1 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Defences from Equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=25,name="Defences",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 5 Elemental Proliferation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportElementalProliferation",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["Deal no Elemental Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="DealNoLightning",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="DealNoCold",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="DealNoFire",flags=0}},nil}c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-4,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["500% increased Physical Damage"]={{[1]={flags=0,type="INC",value=500,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage "}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect "}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.6,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["You have Onslaught while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike "}c["+175 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=175,name="Accuracy",keywordFlags=0}},nil}c["+305 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=305,name="Accuracy",keywordFlags=0}},nil}c["Minions have 8% chance to Dodge Attacks"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=8,name="AttackDodgeChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=90,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",keywordFlags=0}},nil}c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="INC",value=33,name="Damage",keywordFlags=262144}},nil}c["25% increased Totem Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=16384}},nil}c["Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=22,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=196608}},nil}c["+1 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["+1 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={[1]={type="Multiplier",var="Sextant"},flags=0,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["+23 to maximum Life"]={{[1]={flags=0,type="BASE",value=23,name="Life",keywordFlags=0}},nil}c["Adds 1 to 32 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=32,name="LightningMax",keywordFlags=65536}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a "}c["Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill "}c["+185 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=185,name="Accuracy",keywordFlags=0}},nil}c["Golems have 100% increased Movement Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning "}c["120% increased Spell Damage"]={{[1]={flags=2,type="INC",value=120,name="Damage",keywordFlags=0}},nil}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["10% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=10,name="CooldownRecovery",keywordFlags=4}},nil}c["50% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-50,name="Damage",keywordFlags=16384}},nil}c["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies "}c["Duelist: 1% of Attack Damage Leeched as Life"]={{[1]={[1]={type="Condition",var="ConnectedToDuelistStart"},flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["40% increased Fire Damage"]={{[1]={flags=0,type="INC",value=40,name="FireDamage",keywordFlags=0}},nil}c["Adds 1 to 70 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=131072}},nil}c["3% increased Attack Speed"]={{[1]={flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["35% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=35,name="Speed",keywordFlags=0}},nil}c["Adds 475 to 600 Fire Damage"]={{[1]={flags=0,type="BASE",value=475,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="FireMax",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={{[1]={flags=0,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently "}c["Adds 13 to 19 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=19,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 1 to 30 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="LightningMax",keywordFlags=65536}},nil}c["45% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=45,name="EnemyStunDuration",keywordFlags=0}},nil}c["Adds 1 to 4 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=4,name="PhysicalMax",keywordFlags=65536}},nil}c["30% chance to Blind Enemies on Critical Strike {variant:1,2}Causes Bleeding on Melee Critical Strike"]={{}," to Blind Enemies {variant:1,2}Causes Bleeding on Critical Strike "}c["Adds 4 to 12 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=65536}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=4096}}," for 9 seconds on Throwing a "}c["Immune to Elemental Ailments while on Consecrated Ground"]={nil,"Immune to Elemental Ailments while on Consecrated Ground "}c["+20% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0}},nil}c["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"]={nil,"Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage "}c["+700 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=700,name="Evasion",keywordFlags=0}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies "}c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=256,type="INC",value=50,name="Damage",keywordFlags=262144}},nil}c["+20 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}},nil}c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers for 4 seconds on Block "}c["14% increased Brand Attachment range"]={{}," Brand Attachment range "}c["15% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you "}c["30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality "}c["1% increased Elemental Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="INC",value=1,name="ElementalDamage",keywordFlags=0}},nil}c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead "}c["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=16384}},nil}c["5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=5,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["Adds 11 to 29 Physical Damage"]={{[1]={flags=0,type="BASE",value=11,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 335 to 900 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,type="BASE",value=335,name="LightningMin",keywordFlags=0},[2]={flags=1048576,type="BASE",value=900,name="LightningMax",keywordFlags=0}},nil}c["8% increased Area of Effect"]={{[1]={flags=0,type="INC",value=8,name="AreaOfEffect",keywordFlags=0}},nil}c["Enemies Ignited by you during Flask Effect take 10% increased Damage"]={{[1]={[1]={type="ActorCondition",var="Ignited",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["+1 Life gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="LifeOnKill",keywordFlags=0}},nil}c["Adds 1 to 2 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="PhysicalMin",keywordFlags=65536},[2]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=2,name="PhysicalMax",keywordFlags=65536}},nil}c["Adds 42 to 335 Physical Damage"]={{[1]={flags=0,type="BASE",value=42,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=335,name="PhysicalMax",keywordFlags=0}},nil}c["800% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=800,name="PhysicalDamage",keywordFlags=0}},nil}c["+5% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=5,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=5,name="ChaosResistMax",keywordFlags=0}},nil}c["1% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=1,name="DamageManaLeech",keywordFlags=0}},nil}c["+48 to Armour"]={{[1]={flags=0,type="BASE",value=48,name="Armour",keywordFlags=0}},nil}c["60% increased maximum Mana"]={{[1]={flags=0,type="INC",value=60,name="Mana",keywordFlags=0}},nil}c["Adds 40 to 115 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=115,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 70 to 105 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=105,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Attack Speed"]={{[1]={flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["20% increased Poison Duration"]={{[1]={flags=0,type="INC",value=20,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["Adds 75 to 110 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=110,name="PhysicalMax",keywordFlags=0}},nil}c["Your Chaos Damage Poisons Enemies"]={{[1]={value=100,type="BASE",keywordFlags=0,name="ChaosPoisonChance",flags=0}},nil}c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="strength"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsFire",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportElementalPenetration",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Melee Gems have 15% increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="melee"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Arrows always Pierce"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PierceAllTargets",flags=1}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage "}c["Adds 130 to 195 Cold Damage"]={{[1]={flags=0,type="BASE",value=130,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="ColdMax",keywordFlags=0}},nil}c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=5,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=5,name="AvoidIgnite",keywordFlags=0}},nil}c["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish "}c["Life Leeched per Second is doubled."]={{[1]={value=100,type="MORE",keywordFlags=0,name="LifeLeechRate",flags=0}},nil}c["40% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=15,name="CurseEffect",keywordFlags=0}},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["100% increased Fire Damage if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 5 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportConcentratedEffect",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%"]={{[1]={[1]={limit=20,stat="Mana",div=500,type="PerStat",limitTotal=true},flags=0,type="BASE",value=2,name="AttackDodgeChance",keywordFlags=0},[2]={[1]={limit=20,stat="Mana",div=500,type="PerStat",limitTotal=true},flags=0,type="BASE",value=2,name="SpellDodgeChance",keywordFlags=0}},nil}c["Nearby Enemies are Intimidated"]={nil,"Nearby Enemies are Intimidated "}c["0% increased Charges used"]={{[1]={flags=0,type="INC",value=0,name="FlaskChargesUsed",keywordFlags=0}},nil}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,type="LIST",value={skillId="UniqueAnimateWeapon",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["6% Chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="Defences",keywordFlags=0}},nil}c["+30 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=30,name="Evasion",keywordFlags=0}},nil}c["Adds 3 to 7 Fire Damage"]={{[1]={flags=0,type="BASE",value=3,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=7,name="FireMax",keywordFlags=0}},nil}c["18% Chance to Shock"]={{[1]={flags=0,type="BASE",value=18,name="EnemyShockChance",keywordFlags=0}},nil}c["Envy Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Envy"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["+500 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",value=500,name="Accuracy",keywordFlags=0}},nil}c["90% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=90,name="PowerChargesDuration",keywordFlags=0}},nil}c["50% increased Herald of Thunder Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Herald of Thunder"},flags=0,type="INC",value=50,name="BuffEffect",keywordFlags=0}},nil}c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "}c["20% Chance to Shock"]={{[1]={flags=0,type="BASE",value=20,name="EnemyShockChance",keywordFlags=0}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency "}c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius "}c["Socketed Golem Skills have 20% increased Attack and Cast Speed"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["+25% to Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0}},nil}c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=48,name="ElementalDamage",keywordFlags=65536}},nil}c["2% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["22% increased Attack Speed"]={{[1]={flags=1,type="INC",value=22,name="Speed",keywordFlags=0}},nil}c["100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["6% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="DamageTaken",keywordFlags=0}},nil}c["30% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=30,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["+30 to maximum Mana"]={{[1]={flags=0,type="BASE",value=30,name="Mana",keywordFlags=0}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain Phasing for 4 seconds when your is triggered by an Enemy "}c["Minions Leech 0.2% of Damage as Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Unaffected by Ignite"]={nil,"Unaffected by Ignite "}c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=55,name="ElementalDamage",keywordFlags=65536}},nil}c["Can't use Chest armour {variant:1,2}15% Chance to Block"]={nil,"Can't use Chest armour {variant:1,2}15% Chance to Block "}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield "}c["Adds 34 to 45 Cold Damage"]={{[1]={flags=0,type="BASE",value=34,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="ColdMax",keywordFlags=0}},nil}c["10% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Adds 34 to 45 Physical Damage"]={{[1]={flags=0,type="BASE",value=34,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="PhysicalMax",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill 80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="Damage",value=25}}," to gain aCharge on Kill 80% increased "}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill "}c["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["6% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=6,name="Damage",keywordFlags=65536}},nil}c["70% increased Damage"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["10% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 38 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=38,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 50 to 100 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=50,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=100,name="ColdMax",keywordFlags=131072}},nil}c["75% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=75,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=30,name="Damage",keywordFlags=0}}," while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["8% increased maximum Life"]={{[1]={flags=0,type="INC",value=8,name="Life",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage against"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}}," against "}c["35% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=35,name="LootRarity",keywordFlags=0}},nil}c["Cast a Socketed Cold Spell on Melee Critical Strike"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value={name="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike",level=1},type="LIST",keywordFlags=0,name="ExtraSupport",flags=0}},nil}c["25% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="MORE",value=25,name="MeleeEvadeChance",keywordFlags=0}},nil}c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=60,name="ManaRegen",keywordFlags=0}},nil}c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=60,name="CritChance",keywordFlags=262144}},nil}c["14% increased Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect 20% increased Elemental Damage with Attack Skills"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage 20% increased Elemental Damage with Attack Skills "}c["Adds 60 to 110 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=60,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=110,name="ColdMax",keywordFlags=131072}},nil}c["20% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Spreads Tar when you take a Critical Strike"]={nil,"Spreads Tar when you take a Critical Strike "}c["Nearby Allies have 2% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={type="PerStat",stat="Int",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=16,type="INC",value=2,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["+200 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=200,name="EnergyShield",keywordFlags=0}},nil}c["Attack Skills deal 24% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["30% reduced Spell Damage taken from Blinded Enemies No Block Chance"]={{[1]={flags=2,type="INC",value=-30,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies No Block Chance "}c["Adds 400 to 600 Physical Damage to Spells"]={{[1]={flags=0,type="BASE",value=400,name="PhysicalMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=600,name="PhysicalMax",keywordFlags=131072}},nil}c["Adds 12 to 23 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=12,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=23,name="ColdMax",keywordFlags=65536}},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,type="LIST",value={mod={flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["50% chance on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground "}c["100% increased Physical Damage while you have Resolute Technique Elder Item"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}}," while you have Resolute Technique Elder Item "}c["+2 seconds to Avian's Might Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Avian"},flags=0,type="BASE",value=2,name="PrimaryDuration",keywordFlags=0}},nil}c["135% increased Physical Damage"]={{[1]={flags=0,type="INC",value=135,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 38 to 90 Physical Damage"]={{[1]={flags=0,type="BASE",value=38,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="PhysicalMax",keywordFlags=0}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["6% Chance to Block"]={{[1]={flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["Adds 45 to 100 Physical Damage"]={{[1]={flags=0,type="BASE",value=45,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=100,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 7 to 18 Physical Damage"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["15% of Physical Attack Damage Added as Fire Damage"]={{[1]={flags=1,type="BASE",value=15,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=30,name="ElementalPenetration",keywordFlags=0}},nil}c["Adds 8 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["Hits with this Weapon deal 45% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="INC",keywordFlags=262144,name="Damage",value=45}},nil}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-6,name="ManaCost",keywordFlags=0}},nil}c["+24 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0}},nil}c["+10 Life Gained on Killing Ignited Enemies"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}}," ing Ignited Enemies "}c["Hits with this Weapon deal 45% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="INC",keywordFlags=262144,name="Damage",value=45}},nil}c["8% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=5},flags=2,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["Minions Regenerate 1.5% Life per second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1.5,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% reduced Cast Speed"]={{[1]={flags=16,type="INC",value=-10,name="Speed",keywordFlags=0}},nil}c["40% increased Damage over Time"]={{[1]={flags=8,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy "}c["+20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=20,name="ElementalResist",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has a 20% chance "}c["Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill "}c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells "}c["12% increased Attack Speed with Bows"]={{[1]={flags=8193,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["5% Additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["20% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=1,type="BASE",value=0.6,name="DamageLifeLeech",keywordFlags=262144}},nil}c["+61% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=61,name="ChaosResist",keywordFlags=0}},nil}c["Hits with this Weapon deal 45% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=4,type="INC",keywordFlags=262144,name="Damage",value=45}},nil}c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Shocked"},flags=4,type="INC",keywordFlags=262144,name="Damage",value=60}},nil}c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=15,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["8% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={type="PerStat",stat="Life",div=1},flags=0,type="BASE",value=0.08,name="ChaosDegen",keywordFlags=0}},nil}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Frozen"},flags=4,type="INC",keywordFlags=262144,name="Damage",value=60}},nil}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies "}c["50% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=50,name="EnemyStunDuration",keywordFlags=0}}," to double "}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,type="INC",value=3,name="Defences",keywordFlags=0}}," Character Size 5% increased "}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=100,name="PhysicalDamage",keywordFlags=0}}," from Hits is Converted to a random Element "}c["10% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["1% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeechToPlayer",keywordFlags=16384}},nil}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=50}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["20% increased Cold Damage"]={{[1]={flags=0,type="INC",value=20,name="ColdDamage",keywordFlags=0}},nil}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonGhostOnKill",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently "}c["+240 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=240,name="Accuracy",keywordFlags=0}},nil}c["18% increased Poison Duration"]={{[1]={flags=0,type="INC",value=18,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["25% chance to inflict Brittle Cannot inflict Freeze or Chill"]={{}," to inflict Brittle Cannot inflict Freeze or Chill "}c["10% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},flags=0,type="BASE",value=5,name="DamageLifeLeech",keywordFlags=262144}},name="MinionModifier",keywordFlags=0}},nil}c["Minions have +29% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=29,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Grants level 15 Envy Skill"]={{[1]={flags=0,type="LIST",value={skillId="Envy",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["Minions deal 25% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["13% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=13,name="LootQuantity",keywordFlags=0}},nil}c["Adds 14 to 24 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=24,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=8,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy "}c["Minions have 60% chance to Poison Enemies on Hit"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=60,name="PoisonChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,type="INC",value=-30,name="BlockChance",keywordFlags=0},[2]={flags=0,type="INC",value=-30,name="SpellBlockChance",keywordFlags=0}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{[1]={flags=0,type="BASE",value=10,name="CrabBarriersMax",keywordFlags=0}}," that if you would gain a Crab Barrier, you instead gain up to your "}c["Projectiles Pierce all nearby Targets"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PierceAllTargets",flags=0}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire "}c["Minions have +17% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=17,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["7% increased Movement Speed"]={{[1]={flags=0,type="INC",value=7,name="MovementSpeed",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block "}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="INC",keywordFlags=0,name="Defences",value=8}},nil}c["Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration"]={nil,"Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration "}c["0.3% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,type="BASE",value=0.3,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 92 to 154 Physical Damage"]={{[1]={flags=0,type="BASE",value=92,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=154,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 1 to 65 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=65,name="LightningMax",keywordFlags=131072}},nil}c["8% increased Dexterity"]={{[1]={flags=0,type="INC",value=8,name="Dex",keywordFlags=0}},nil}c["Adds 1 to 65 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=65,name="LightningMax",keywordFlags=0}},nil}c["83% increased Spell Damage"]={{[1]={flags=2,type="INC",value=83,name="Damage",keywordFlags=0}},nil}c["You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"]={nil,"You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing "}c["to you and Allies"]={nil,"to you and Allies "}c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["10% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=10,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Adds 15 to 30 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=15,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="FireMax",keywordFlags=65536}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered Corrupted"]={{}," to gain an additional Soul per Enemy Shattered Corrupted "}c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=52,name="ManaRegen",keywordFlags=0}},nil}c["Adds 5 to 15 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=65536}},nil}c["16% increased Cast Speed with Curse Skills"]={{[1]={flags=16,type="INC",value=16,name="Speed",keywordFlags=2}},nil}c["Grants Summon Harbinger of the Arcane Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfTheArcane",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["+375 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=375,name="Accuracy",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining "}c["Adds 80 to 180 Physical Damage"]={{[1]={flags=0,type="BASE",value=80,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=180,name="PhysicalMax",keywordFlags=0}},nil}c["10% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["+2 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="LifeOnHit",keywordFlags=0}},nil}c["No Life Recovery Applies during Flask effect"]={nil,"No Life Recovery Applies during Flask effect "}c["325% increased Armour"]={{[1]={flags=0,type="INC",value=325,name="Armour",keywordFlags=0}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["16% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["Adds 2 to 6 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=6,name="PhysicalMax",keywordFlags=0}},nil}c["100% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["Adds 24 to 36 Physical Damage"]={{[1]={flags=0,type="BASE",value=24,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="PhysicalMax",keywordFlags=0}},nil}c["24% increased Totem Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=16384}},nil}c["Adds 28 to 40 Chaos Damage"]={{[1]={flags=0,type="BASE",value=28,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ChaosMax",keywordFlags=0}},nil}c["Adds 1 to 70 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["each Stage the Banner has"]={nil,"each Stage the Banner has "}c["Adds 28 to 40 Cold Damage"]={{[1]={flags=0,type="BASE",value=28,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="ColdMax",keywordFlags=0}},nil}c["Adds 28 to 40 Fire Damage"]={{[1]={flags=0,type="BASE",value=28,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="FireMax",keywordFlags=0}},nil}c["Adds 28 to 40 Physical Damage"]={{[1]={flags=0,type="BASE",value=28,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="PhysicalMax",keywordFlags=0}},nil}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=33,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["15% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=15,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["6% increased Strength"]={{[1]={flags=0,type="INC",value=6,name="Str",keywordFlags=0}},nil}c["Adds 100 to 158 Physical Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=158,name="PhysicalMax",keywordFlags=0}},nil}c["2% of Life Regenerated per second if you've taken Fire Damage from a Hit Recently"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered "}c["Maximum total Recovery per second from Energy Shield Leech is doubled"]={{[1]={value=100,type="MORE",keywordFlags=0,name="MaxEnergyShieldLeechRate",flags=0}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum "}c["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy "}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["20% increased Mine Duration"]={{[1]={flags=0,type="INC",value=20,name="MineDuration",keywordFlags=0}},nil}c["100% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask "}c["You have Onslaught while on full Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["+2 to Melee Weapon Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,type="BASE",value=2,name="MeleeWeaponRange",keywordFlags=0}},nil}c["0.4% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,type="BASE",value=0.4,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["8% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}c["25% increased Physical Damage with Weapons per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=8388608,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["110% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=110,name="ArmourAndEvasion",keywordFlags=0}},nil}c["120% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 1 to 40 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=40,name="LightningMax",keywordFlags=65536}},nil}c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=28,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Immune to Shock"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}c["Adds 4 to 7 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=7,name="PhysicalMax",keywordFlags=0}},nil}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-10,name="EnergyShield",keywordFlags=0}},nil}c["+30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ColdResist",keywordFlags=0}},nil}c["16% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=16,name="Accuracy",keywordFlags=0}},nil}c["10% increased Damage taken from Skeletons"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," from s "}c["40% increased Totem Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=16384}},nil}c["Gain 10% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},nil}c["+10 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["Adds 2 to 3 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=65536},[2]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=3,name="PhysicalMax",keywordFlags=65536}},nil}c["+1 to Level of Socketed Curse Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="curse",value=1},name="GemProperty",keywordFlags=0}},nil}c["+12% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed"]={nil,"Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed "}c["Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use "}c["Adds 7 to 12 Physical Damage"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["25% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-25,name="MovementSpeed",keywordFlags=0}},nil}c["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ElementalDamageLifeLeech",keywordFlags=0}},nil}c["32% increased Attributes"]={{[1]={flags=0,type="INC",value=32,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=32,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=32,name="Int",keywordFlags=0}},nil}c["Socketed Gems are supported by level 1 Multistrike"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMultistrike",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["40% reduced Stun Recovery"]={{[1]={flags=0,type="INC",value=-40,name="StunRecovery",keywordFlags=0}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["Adds 8 to 14 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},nil}c["+18 to maximum Life"]={{[1]={flags=0,type="BASE",value=18,name="Life",keywordFlags=0}},nil}c["21% increased Attack Speed"]={{[1]={flags=1,type="INC",value=21,name="Speed",keywordFlags=0}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline "}c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["+330 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=330,name="Accuracy",keywordFlags=0}},nil}c["10% increased Effect of Buffs on you"]={{[1]={flags=0,type="INC",value=10,name="BuffEffectOnSelf",keywordFlags=0}},nil}c["+58 to Dexterity"]={{[1]={flags=0,type="BASE",value=58,name="Dex",keywordFlags=0}},nil}c["18% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["15% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="AlliesAurasCannotAffectSelf",flags=0}},nil}c["5% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-5,name="ManaReserved",keywordFlags=0}},nil}c["180% increased Physical Damage"]={{[1]={flags=0,type="INC",value=180,name="PhysicalDamage",keywordFlags=0}},nil}c["95% increased Physical Damage"]={{[1]={flags=0,type="INC",value=95,name="PhysicalDamage",keywordFlags=0}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=60,name="StunRecovery",keywordFlags=0}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,type="INC",value=11,name="Speed",keywordFlags=0}},nil}c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["4% additional Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["1% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=1,name="DamageTaken",keywordFlags=0}},nil}c["Adds 1 to 650 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=650,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 600 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="LightningMax",keywordFlags=0}},nil}c["Iron Reflexes while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["90% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["Accuracy Rating is Doubled"]={{[1]={value=100,type="MORE",keywordFlags=0,name="Accuracy",flags=0}},nil}c["2 additional Projectiles if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["Regenerate 100 Life per second while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="INC",value=80,name="Armour",keywordFlags=0}},nil}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=83,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Grants Level 20 Summon Petrification Statue Skill"]={nil,nil}c["55% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=55,name="CritChance",keywordFlags=0}},nil}c["Adds 5 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing "}c["Attacks used by Totems have 7% increased Attack Speed"]={{[1]={flags=1,type="INC",value=7,name="Speed",keywordFlags=16384}},nil}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["125% increased Physical Damage"]={{[1]={flags=0,type="INC",value=125,name="PhysicalDamage",keywordFlags=0}},nil}c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=3}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies "}c["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["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=3,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=7,name="ColdMax",keywordFlags=65536}},nil}c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies "}c["40% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=40,name="BlockChance",keywordFlags=0}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["40% increased Defences from Equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=40,name="Defences",keywordFlags=0}},nil}c["Spells have an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=2}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes "}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing "}c["10% increased Fortify duration"]={{[1]={flags=0,type="INC",value=10,name="FortifyDuration",keywordFlags=0}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy "}c["66% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=66,name="CritChance",keywordFlags=0}},nil}c["Adds 6 to 66 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=66,name="PhysicalMax",keywordFlags=0}},nil}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,type="BASE",value=10,name="LifeOnHit",keywordFlags=0}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["You and nearby Allies deal 4 to 8 added Physical Damage for"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},name="ExtraAura",keywordFlags=0}}," for "}c["Uses both hand slots Adds 6 to 66 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=66,name="PhysicalMax",keywordFlags=0}},"Uses both hand slots "}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=12,name="LifeOnHit",keywordFlags=0}},nil}c["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite "}c["+500 to Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=500,name="Armour",keywordFlags=0}},nil}c["50% less Critical Strike Chance"]={{[1]={flags=0,type="MORE",value=-50,name="CritChance",keywordFlags=0}},nil}c["19% increased Spell Damage"]={{[1]={flags=2,type="INC",value=19,name="Damage",keywordFlags=0}},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,type="INC",value=50,name="IgniteBurnFaster",keywordFlags=0}},nil}c["+20 to maximum Mana"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}},nil}c["80% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["-75% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=-75,name="CritMultiplier",keywordFlags=0}},nil}c["2% increased Physical Damage over time per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="INC",value=2,name="PhysicalDamage",keywordFlags=16777216}},nil}c["Skills used by Traps have 15% increased Area of Effect"]={{[1]={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=4096}},nil}c["25% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}c["110% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=110,name="CritChance",keywordFlags=0}},nil}c["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage "}c["Uses both hand slots"]={nil,"Uses both hand slots "}c["Perfect Agony"]={{[1]={value="Perfect Agony",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["18% Increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["45% increased Maximum Energy Shield"]={{[1]={flags=0,type="INC",value=45,name="EnergyShield",keywordFlags=0}},nil}c["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.8,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["10% reduced Maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["20% increased Movement Speed while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["+13% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",keywordFlags=0}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect "}c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=73,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move "}c["+200 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=200,name="Evasion",keywordFlags=0}},nil}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage "}c["+10% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=10,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="ColdResist",keywordFlags=0}},nil}c["Adds 50 to 80 Physical Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 40 to 70 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="PhysicalMax",keywordFlags=0}},nil}c["+5% to Chance to Evade while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="BASE",value=5,name="EvadeChance",keywordFlags=0}},nil}c["Your Aura Buffs do not affect allies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SelfAurasCannotAffectAllies",flags=0}},nil}c["+100 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["Adds 388 to 584 Physical Damage to Spells"]={{[1]={flags=0,type="BASE",value=388,name="PhysicalMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=584,name="PhysicalMax",keywordFlags=131072}},nil}c["Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"]={nil,"Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item "}c["215% increased Physical Damage"]={{[1]={flags=0,type="INC",value=215,name="PhysicalDamage",keywordFlags=0}},nil}c["+4% to Chaos Resistance per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=4,name="ChaosResist",keywordFlags=0}},nil}c["25% increased Curse Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=2}},nil}c["8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,type="INC",value=8,name="EnemyShockEffect",keywordFlags=0},[2]={[1]={type="Multiplier",var="ElderItem"},flags=0,type="INC",value=8,name="EnemyChillEffect",keywordFlags=0},[3]={[1]={type="Multiplier",var="ElderItem"},flags=0,type="INC",value=8,name="EnemyFreezeEffech",keywordFlags=0}},nil}c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes are doubled "}c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=100,name="LightningMax",keywordFlags=0}},nil}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill "}c["30% increased Physical Damage"]={{[1]={flags=0,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies "}c["Minions have 13% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["20% increased Mine Laying Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,type="INC",value=20,name="MineLayingSpeed",keywordFlags=0}},nil}c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=40,name="Accuracy",keywordFlags=0}},nil}c["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=-100,type="MORE",keywordFlags=0,name="Damage",flags=0}},nil}c["Adds 4 to 19 Physical Damage"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=19,name="PhysicalMax",keywordFlags=0}},nil}c["Lightning Spells have 10% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,type="BASE",value=10,name="PhysicalDamageConvertToLightning",keywordFlags=64}},nil}c["Adds 50 to 150 Physical Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 6 to 22 Physical Damage"]={{[1]={flags=0,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["14% increased Physical Damage"]={{[1]={flags=0,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootRarity",keywordFlags=0}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{}," "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges "}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,type="BASE",keywordFlags=0,name="ColdDegen",value=200}},nil}c["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}c["Gain Chilling Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="PhysicalCanChill",flags=0},[2]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="LightningCanChill",flags=0},[3]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="FireCanChill",flags=0},[4]={[1]={type="Condition",var="ChillingConflux"},value=true,type="FLAG",keywordFlags=0,name="ChaosCanChill",flags=0}},nil}c["50% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",keywordFlags=0}},nil}c["50% increased total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",keywordFlags=0}},nil}c["+10% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ChaosResist",keywordFlags=0}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice "}c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=80,name="ChaosMin",keywordFlags=0},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=120,name="ChaosMax",keywordFlags=0}}," against "}c["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=40,name="LifeOnHit",keywordFlags=0}},nil}c["30% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-30,name="StrRequirement",keywordFlags=0}},nil}c["Has an additional Implicit Mod"]={nil,"Has an additional Implicit Mod "}c["Adds 45 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=45,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements"]={{[1]={flags=0,type="FLAG",value=true,name="ElementalEquilibrium",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="HitByFireDamage"},flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[3]={flags=0,type="LIST",value={mod={[1]={type="Condition",neg=true,var="HitByFireDamage"},[2]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,type="BASE",keywordFlags=0,name="FireResist",value=-50}},name="EnemyModifier",keywordFlags=0},[4]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="HitByColdDamage"},flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[5]={flags=0,type="LIST",value={mod={[1]={type="Condition",neg=true,var="HitByColdDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,type="BASE",keywordFlags=0,name="ColdResist",value=-50}},name="EnemyModifier",keywordFlags=0},[6]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="HitByLightningDamage"},flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[7]={flags=0,type="LIST",value={mod={[1]={type="Condition",neg=true,var="HitByLightningDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,type="BASE",keywordFlags=0,name="LightningResist",value=-50}},name="EnemyModifier",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area "}c["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=1,type="BASE",keywordFlags=0,name="ChainCountMax",flags=0}},nil}c["25% of Physical Damage taken as Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageTakenAsChaos",keywordFlags=0}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=100}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy "}c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="INC",value=16,name="Accuracy",keywordFlags=0}},nil}c["Enemies near your Totems take 16% increased Physical and Fire Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="PhysicalDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="FireDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["20% increased Damage with Movement Skills"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8}},nil}c["16% increased maximum Life"]={{[1]={flags=0,type="INC",value=16,name="Life",keywordFlags=0}},nil}c["Minions have 13% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=13,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block "}c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["+1500 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="BASE",value=1500,name="Evasion",keywordFlags=0}},nil}c["Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% "}c["Minions have 15% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=15,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 50 to 125 Physical Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=125,name="PhysicalMax",keywordFlags=0}},nil}c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Adds 35 to 45 Physical Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 16 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill "}c["135% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,type="INC",value=135,name="Damage",keywordFlags=0}},nil}c["Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},value=100,type="BASE",keywordFlags=0,name="AvoidStun",flags=0}},nil}c["+5 to Maximum number of Crab Barriers"]={{[1]={flags=0,type="BASE",value=5,name="CrabBarriersMax",keywordFlags=0}},nil}c["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=120,name="PhysicalMin",keywordFlags=262144},[2]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=165,name="PhysicalMax",keywordFlags=262144}},nil}c["150% increased Charges used"]={{[1]={flags=0,type="INC",value=150,name="FlaskChargesUsed",keywordFlags=0}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect "}c["+15% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellBlockChance",keywordFlags=0}},nil}c["Adds 15 to 50 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=65536}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers"]={{[1]={[1]={type="StatThreshold",stat="CrabBarriers",threshold=5},flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["Grants level 30 Reckoning Skill"]={{[1]={flags=0,type="LIST",value={skillId="Reckoning",level=30},name="ExtraSkill",keywordFlags=0}},nil}c["30% slower start of Energy Shield Recharge during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-30,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=22,name="Damage",keywordFlags=65536}},nil}c["20% reduced Mana Cost of Skills when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=-20,name="ManaCost",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["+370 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=370,name="Accuracy",keywordFlags=0}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={type="PerStat",stat="EvasionOnWeapon 2",div=5},flags=0,type="BASE",value=5,name="Armour",keywordFlags=0}},nil}c["+1 to Level of Socketed Dexterity Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="dexterity",value=1},name="GemProperty",keywordFlags=0}},nil}c["Adds 12 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EnergyShield",keywordFlags=0}},nil}c["Adds 98 to 121 Physical Damage"]={{[1]={flags=0,type="BASE",value=98,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=121,name="PhysicalMax",keywordFlags=0}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,type="INC",value=88,name="PhysicalDamage",keywordFlags=0}},nil}c["250% increased Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EnergyShield",keywordFlags=0}},nil}c["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=50,name="LifeOnHit",keywordFlags=0}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["You are Immune to Bleeding while Leeching"]={nil,"You are Immune to Bleeding while Leeching "}c["100% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=100,name="ProjectileSpeed",keywordFlags=0}},nil}c["Adds 12 to 24 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=12,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=24,name="FireMax",keywordFlags=65536}},nil}c["Adds 14 to 28 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=14,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=28,name="ColdMax",keywordFlags=65536}},nil}c["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},nil}c["+2000 to Armour"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",keywordFlags=0}},nil}c["+1 to Minimum Power Charges"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMin",keywordFlags=0}},nil}c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["30% increased Minion Damage if you've used a Minion Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+231 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=231,name="Evasion",keywordFlags=0}},nil}c["+80 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=80,name="EnergyShield",keywordFlags=0}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=65536},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=65536}},nil}c["Adds 2 to 10 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["Raised Zombies' Slam Attack has 100% increased Area of Effect"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="SkillId",skillId="ZombieSlam"},flags=0,type="INC",value=100,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["Adds 11 to 23 Cold Damage"]={{[1]={flags=0,type="BASE",value=11,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="ColdMax",keywordFlags=0}},nil}c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={{[1]={flags=0,type="BASE",value=0.3,name="StrDmgBonusRatioOverride",keywordFlags=0}},nil}c["8% increased Damage over Time"]={{[1]={flags=8,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["3% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,type="INC",value=3,name="Damage",keywordFlags=0}},nil}c["Adds 20 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask "}c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=25},flags=1,type="INC",value=1,name="Speed",keywordFlags=0}},nil}c["Adds 110 to 170 Physical Damage"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=170,name="PhysicalMax",keywordFlags=0}},nil}c["175% increased Armour"]={{[1]={flags=0,type="INC",value=175,name="Armour",keywordFlags=0}},nil}c["Adds 1 to 6 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=6,name="LightningMax",keywordFlags=65536}},nil}c["Adds 100 to 370 Physical Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=370,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=55,name="LightningMax",keywordFlags=0}},nil}c["23% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=23,name="ElementalDamage",keywordFlags=65536}},nil}c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",keywordFlags=65536,name="LightningMin",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",keywordFlags=65536,name="LightningMax",value=5}},nil}c["Adds 1 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",value=3,name="LightningMax",keywordFlags=65536}},nil}c["Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="LightningMax",keywordFlags=0}},nil}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}c["Life Leech is applied to Energy Shield instead"]={nil,"Life Leech is applied to Energy Shield instead "}c["Adds 1 to 200 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=200,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="LightningMax",keywordFlags=0}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["+173 to Armour"]={{[1]={flags=0,type="BASE",value=173,name="Armour",keywordFlags=0}},nil}c["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=31,name="LifeOnHit",keywordFlags=0}},nil}c["Skills which throw Traps have Blood Magic"]={{[1]={[1]={type="SkillType",skillType=37},value=true,type="FLAG",keywordFlags=0,name="BloodMagic",flags=0}},nil}c["50% increased Area Damage"]={{[1]={flags=512,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["140 Life Regenerated per Second while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,type="BASE",value=140,name="LifeRegen",keywordFlags=0}},nil}c["140% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=140,name="ArmourAndEvasion",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons "}c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=22,name="ColdDotMultiplier",keywordFlags=0}},nil}c["+40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},nil}c["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["+10 to Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["3% chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=3,name="AttackDodgeChance",keywordFlags=0}},nil}c["12% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=65536}},nil}c["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=50,name="LightningMax",keywordFlags=65536}},nil}c["You lose all Spirit Charges when taking a Savage Hit"]={nil,"You lose all Spirit Charges when taking a Savage Hit "}c["Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=50,name="MineLayingSpeed",keywordFlags=0}},nil}c["Adds 18 to 35 Physical Damage"]={{[1]={flags=0,type="BASE",value=18,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="PhysicalMax",keywordFlags=0}},nil}c["+35 to Intelligence"]={{[1]={flags=0,type="BASE",value=35,name="Int",keywordFlags=0}},nil}c["225% increased Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EnergyShield",keywordFlags=0}},nil}c["+45% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=45,name="ElementalResist",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy 10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=25,name="EnemyStunDuration",keywordFlags=0}}," to gain an Endurance Charge when you Stun an Enemy 10% increased "}c["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill "}c["2% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=2,name="SpellDodgeChance",keywordFlags=0}},nil}c["+25 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["2% increased Experience gain {variant:1}3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,type="INC",value=2,name="Int",keywordFlags=0}}," Experience gain {variant:1}3% increased "}c["30% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit {variant:4}Trigger Level 1 Abyssal Cry on Hit"]={{}," to cause Enemies to Flee on Hit {variant:4}Trigger Level 1on Hit "}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "}c["+55 to maximum Life"]={{[1]={flags=0,type="BASE",value=55,name="Life",keywordFlags=0}},nil}c["10% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil}c["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=44,name="LifeOnHit",keywordFlags=0}},nil}c["2% increased Movement Speed"]={{[1]={flags=0,type="INC",value=2,name="MovementSpeed",keywordFlags=0}},nil}c["14% increased Armour"]={{[1]={flags=0,type="INC",value=14,name="Armour",keywordFlags=0}},nil}c["50% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=50,name="AvoidFrozen",keywordFlags=0}},nil}c["Melee Attacks cause Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}c["100% increased Global Armour when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Armour",keywordFlags=0}}," when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds "}c["+28% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=28,name="ElementalResist",keywordFlags=0}},nil}c["Your Lightning Damage can Freeze but not Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanFreeze",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="LightningCannotShock",flags=0}},nil}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire "}c["8% increased Spell Damage"]={{[1]={flags=2,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["Immune to Ignite"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=0}},nil}c["40% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="INC",value=40,name="Evasion",keywordFlags=0}},nil}c["Your Fire Damage can Shock but not Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="FireCanShock",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="FireCannotIgnite",flags=0}},nil}c["0% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootRarity",keywordFlags=0}},nil}c["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfStorms",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky "}c["Summoned Skeletons take 23% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={[1]={type="PerStat",stat="Life",div=1},flags=0,type="BASE",value=0.23,name="FireDegen",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["+20% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=20,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0}},nil}c["10% reduced Damage taken from Trap or Mine Hits"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=4096}}," from or Mine Hits "}c["Armour received from Body Armour is doubled"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Unbreakable",flags=0}},nil}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=245,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,type="BASE",value=30,name="LightningDamage",keywordFlags=0}}," is taken from Mana before Life when Hit "}c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,type="BASE",value=20,name="LightningDamage",keywordFlags=0}}," to be Shocked 30% of is taken from Mana before Life when Hit "}c["+20% chance to be Shocked"]={{}," to be Shocked "}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Adds 10 to 167 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=10,name="LightningMin",keywordFlags=131072},[2]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=167,name="LightningMax",keywordFlags=131072}},nil}c["Adds 59 to 102 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=59,name="FireMin",keywordFlags=131072},[2]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=102,name="FireMax",keywordFlags=131072}},nil}c["Adds 48 to 83 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=48,name="ColdMin",keywordFlags=131072},[2]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=83,name="ColdMax",keywordFlags=131072}},nil}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=14,name="LightningMin",keywordFlags=131072},[2]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=173,name="LightningMax",keywordFlags=131072}},nil}c["10% increased Damage Taken while Energy Shield is Full"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," while Energy Shield is Full "}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=64,name="FireMin",keywordFlags=131072},[2]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=107,name="FireMax",keywordFlags=131072}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect {variant:3}{crafted}30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,type="BASE",keywordFlags=0,name="DamageTakenLifeLeech",value=15}}," from Hits {variant:3}{crafted}30% increased Rarity of Items found "}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds "}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=54,name="ColdMin",keywordFlags=131072},[2]={[1]={type="StatThreshold",stat="LifeReserved",upper=true,threshold=0},flags=0,type="BASE",value=88,name="ColdMax",keywordFlags=131072}},nil}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["20% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=20,name="ManaCost",keywordFlags=0}},nil}c["+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["Gain Arcane Surge when you deal a Critical Strike"]={nil,"Gain Arcane Surge when you deal a Critical Strike "}c["You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked "}c["Socketed Curse Gems are Supported by Level 22 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlasphemy",level=22},name="ExtraSupport",keywordFlags=0}},nil}c["+38 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=38,name="EnergyShield",keywordFlags=0}},nil}c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," of Shrine Effects on you "}c["75% increased Effect of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,type="INC",value=75,name="FlaskEffect",keywordFlags=0}}," of Shrine Buffs on you 50% increased Duration of Shrine Effects on you "}c["+1 to Maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=1,name="ActiveZombieLimit",keywordFlags=0}},nil}c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,type="INC",value=75,name="FlaskEffect",keywordFlags=0}}," of Shrine Buffs on you "}c["+15 Energy Shield gained on Kill 75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill 75% increased Effect of Shrine Buffs on you "}c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonLesserShrine",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 10 seconds on using a Vaal Skill "}c["Gain 5% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsLightning",keywordFlags=0}},nil}c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="INC",value=-5,name="ElementalDamageTaken",keywordFlags=0}},nil}c["20% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=20,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["5% additional Physical Damage Reduction while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,type="BASE",value=5,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["20% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=20,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["45% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=45,name="Damage",keywordFlags=786432}},nil}c["Shadow: +0.5 to Critical Strike Chance"]={{[1]={[1]={type="Condition",var="ConnectedToShadowStart"},flags=0,type="BASE",value=0.5,name="CritChance",keywordFlags=0}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["3% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["5% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-5,name="MovementSpeed",keywordFlags=0}},nil}c["60% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},nil}c["Can't use Chest armour"]={nil,"Can't use Chest armour "}c["1% Life Regenerated per Second for each of your Traps Triggered Recently, up to 20%"]={{[1]={[1]={type="Multiplier",limit=20,var="TrapTriggeredRecently",limitTotal=true},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["8% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-8,name="ManaReserved",keywordFlags=0}},nil}c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["0.2% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,type="BASE",value=0.2,name="DamageEnergyShieldLeech",keywordFlags=0}},nil}c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["6% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=524288,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["Adds 100 to 200 Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=200,name="ColdMax",keywordFlags=0}},nil}c["30% increased Trap Trigger Radius"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=4096}}," Trigger "}c["or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={nil,"or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["16% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=16,name="LootQuantity",keywordFlags=0}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit "}c["+1 to maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=1,name="ActiveZombieLimit",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy "}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life "}c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers "}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,type="BASE",keywordFlags=0,name="LightningDegen",value=200}},nil}c["10% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",upper=true,threshold=0},flags=0,type="INC",value=10,name="Life",keywordFlags=0}},nil}c["+29% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=29,name="FireResist",keywordFlags=0}},nil}c["Regenerate 100 Life per second if no Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",upper=true,threshold=0},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["12% increased Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline"]={nil,"Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline "}c["Gain Unholy Might during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="Condition:UnholyMight",flags=0}},nil}c["+32% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=32,name="FireResist",keywordFlags=0}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently Enemies Taunted by you deal 10% less Damage with Hits and\nAilments against other targets"]={{}," Enemies Taunted by you deal 10% less and\nAilments against other targets "}c["21% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=21,name="StunRecovery",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="LightningSpell",level=12},name="ExtraSkill",keywordFlags=0}},nil}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use "}c["Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=62,name="LightningMax",keywordFlags=0}},nil}c["Attack Skills deal 12% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["45% increased Burning Damage"]={{[1]={flags=0,type="INC",value=45,name="FireDamage",keywordFlags=134217728}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=22,name="Defences",keywordFlags=0}},nil}c["+20 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements "}c["75% increased Armour"]={{[1]={flags=0,type="INC",value=75,name="Armour",keywordFlags=0}},nil}c["5% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=5,name="AttackDodgeChance",keywordFlags=0}},nil}c["70% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "}c["70% increased Damage with Channelling Skills"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of "}c["2% increased Minion Attack Speed per 50 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=50},flags=0,type="LIST",value={mod={flags=1,type="INC",value=2,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Gain 8% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=8,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=100,name="CritMultiplier",keywordFlags=0}},nil}c["Cannot Leech Mana"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechMana",flags=0}},nil}c["+225% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=225,name="CritMultiplier",keywordFlags=0}},nil}c["Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit "}c["18% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=18,name="LightningDamage",keywordFlags=0}},nil}c["30% chance to gain an additional Vaal Soul on Kill"]={{}," to gain an additional Soul on Kill "}c["Projectile Damage increased by 50% of Arrow Pierce Chance {variant:2}Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance {variant:2}Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce "}c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You "}c["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=10,name="LifeOnHit",keywordFlags=0}},nil}c["Gain Armour equal to your Reserved Mana"]={{[1]={[1]={type="PerStat",stat="ManaReserved",div=1},value=1,type="BASE",keywordFlags=0,name="Armour",flags=0}},nil}c["15% increased Physical Damage"]={{[1]={flags=0,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Damage over Time"]={{[1]={flags=8,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["10% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=10,name="ManaReserved",keywordFlags=0}},nil}c["+200 to maximum Mana"]={{[1]={flags=0,type="BASE",value=200,name="Mana",keywordFlags=0}},nil}c["30% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyShockDuration",keywordFlags=0}},nil}c["10% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=10,name="EnemyChillEffect",keywordFlags=0}},nil}c["15% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield "}c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["You gain 150 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="BASE",value=150,name="Evasion",keywordFlags=0}},nil}c["+1 to Maximum Life per 2 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=2},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["Strength provides no bonus to Maximum Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoStrBonusToLife",flags=0}},nil}c["+180 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=180,name="EnergyShield",keywordFlags=0}},nil}c["150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{[1]={[1]={type="StatThreshold",stat="EnergyShield",threshold=1500},flags=0,type="BASE",value=150,name="LifeRegen",keywordFlags=0}},nil}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{[1]={[1]={type="StatThreshold",stat="EnergyShield",threshold=1000},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["Adds 41 to 123 Physical Damage"]={{[1]={flags=0,type="BASE",value=41,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=123,name="PhysicalMax",keywordFlags=0}},nil}c["You gain 500 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="BASE",value=500,name="Evasion",keywordFlags=0}},nil}c["Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="SkillId",skillId="ZombieSlam"},flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 188 to 563 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,type="BASE",value=188,name="LightningMin",keywordFlags=0},[2]={flags=1048576,type="BASE",value=563,name="LightningMax",keywordFlags=0}},nil}c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=20,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=20,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["+175 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=175,name="EnergyShield",keywordFlags=0}},nil}c["Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted"]={{[1]={[1]={type="MultiplierThreshold",var="NonCorruptedItem",upper=true,threshold=0},flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}c["+250 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=250,name="EnergyShield",keywordFlags=0}},nil}c["+33% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=33,name="FireResist",keywordFlags=0}},nil}c["30% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=30,name="Evasion",keywordFlags=0}},nil}c["20% chance to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges "}c["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill "}c["30% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["14% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["Attacks with this Weapon Penetrate 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill "}c["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["15% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={{[1]={flags=0,type="LIST",value={skillId="SpiritBurst",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+12% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0}},nil}c["30% chance to Cast Socketed Spells when you Spend at least 100 Mana to Use a Skill"]={{[1]={flags=2,type="BASE",value=30,name="Mana",keywordFlags=0}}," to Cast Socketed s when you Spend at least 100 to Use a Skill "}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when "}c["Your Elemental Golems are Immune to Elemental Damage"]={nil,"Your Elemental Golems are Immune to Elemental Damage "}c["13% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=13,name="Duration",keywordFlags=0}},nil}c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=256}},nil}c["+50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=50,name="FireResist",keywordFlags=0}},nil}c["If you've Cast a Spell Recently, you and nearby Allies have +10% Chance to Block Spell Damage"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Summoned Holy Relics have 23% reduced Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Holy Relic"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-23,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "}c["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Holy Relic"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-25,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["18% increased Dexterity"]={{[1]={flags=0,type="INC",value=18,name="Dex",keywordFlags=0}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=16,name="Damage",keywordFlags=65536}},nil}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+30% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}c["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["Nearby Enemies have -10% to all Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=-10,name="ElementalResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=-10,name="ChaosResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["120% increased Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EnergyShield",keywordFlags=0}},nil}c["Auras from your Skills grant +1% Physical Damage Reduction to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1,name="PhysicalDamageReduction",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"},neg=true},flags=0,type="INC",value=40,name="Armour",keywordFlags=0}},nil}c["1% increased Bleed Duration per 12 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=12},flags=0,type="INC",value=1,name="EnemyBleedDuration",keywordFlags=0}},nil}c["+24 to all Attributes"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers "}c["25% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,type="INC",value=25,name="Evasion",keywordFlags=0}},nil}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently "}c["+9% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=9,name="SpellBlockChance",keywordFlags=0}},nil}c["+52% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=52,name="ChaosResist",keywordFlags=0}},nil}c["Purity of Ice Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="ColdResistAura"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Chance to Block Spell Damage is Unlucky +120 to Strength"]={nil,"Chance to Block Spell Damage is Unlucky +120 to Strength "}c["+3000 to Armour"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}},nil}c["80% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=80,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+2 maximum Energy Shield per 5 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=5},flags=0,type="BASE",value=2,name="EnergyShield",keywordFlags=0}},nil}c["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=-20,name="ManaRegen",keywordFlags=0}},nil}c["20% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["270% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=270,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack "}c["60% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="INC",value=60,name="ManaRegen",keywordFlags=0}},nil}c["1% increased Area of Effect of Area Skills per 20 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=20},flags=0,type="INC",value=1,name="AreaOfEffect",keywordFlags=0}},nil}c["5% reduced Cold Damage taken"]={{[1]={flags=0,type="INC",value=-5,name="ColdDamageTaken",keywordFlags=0}},nil}c["Adds 52 to 79 Chaos Damage to Spells"]={{[1]={flags=0,type="BASE",value=52,name="ChaosMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=79,name="ChaosMax",keywordFlags=131072}},nil}c["+60 to Strength"]={{[1]={flags=0,type="BASE",value=60,name="Str",keywordFlags=0}},nil}c["Adds 20 to 30 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="PhysicalMax",keywordFlags=65536}},nil}c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "}c["20% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=20,name="FlaskDuration",keywordFlags=0}},nil}c["Enemies Taunted by you cannot Evade Attacks"]={{[1]={value={mod={[1]={type="Condition",var="Taunted"},value=true,type="FLAG",keywordFlags=0,name="CannotEvade",flags=0}},type="LIST",keywordFlags=0,name="EnemyModifier",flags=0}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={type="StatThreshold",stat="PowerCharges",thresholdStat="PowerChargesMax"},flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"]={nil,"You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges "}c["-1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["Damage penetrates 25% Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,type="BASE",value=25,name="ColdPenetration",keywordFlags=0}},nil}c["Minions have +325 to Armour"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=325,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonSpider",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",keywordFlags=0}},nil}c["Minions have +350 to Armour"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=350,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-15,name="MovementSpeed",keywordFlags=0}},nil}c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=108,name="ElementalDamage",keywordFlags=0}},nil}c["Minions have 10% Chance to Block"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=160,name="Evasion",keywordFlags=0}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["Mercury Footprints"]={nil,"Mercury Footprints "}c["200% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=200,name="Evasion",keywordFlags=0}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="INC",value=-3,name="DamageTaken",keywordFlags=0}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed "}c["25% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=25,name="Damage",keywordFlags=65536}},nil}c["+65 to Dexterity"]={{[1]={flags=0,type="BASE",value=65,name="Dex",keywordFlags=0}},nil}c["35% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["+180 to maximum Life"]={{[1]={flags=0,type="BASE",value=180,name="Life",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",keywordFlags=262144,name="PhysicalMin",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",keywordFlags=262144,name="PhysicalMax",value=200}},nil}c["100% increased Physical Damage while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill "}c["+250 to Armour"]={{[1]={flags=0,type="BASE",value=250,name="Armour",keywordFlags=0}},nil}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage. "}c["+50% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=50,name="ColdResist",keywordFlags=0}},nil}c["Cannot Leech when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0},[2]={[1]={type="Condition",var="LowLife"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechMana",flags=0}},nil}c["20% increased Melee Damage"]={{[1]={flags=256,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["60% reduced Duration"]={{[1]={flags=0,type="INC",value=-60,name="Duration",keywordFlags=0}},nil}c["Adds 10-20 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=65536}},nil}c["+12% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",keywordFlags=0}},nil}c["250% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEvasion",keywordFlags=0}},nil}c["55% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=55,name="ElementalDamage",keywordFlags=0}},nil}c["+33% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=33,name="ColdResist",keywordFlags=0}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour "}c["10% chance to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["300% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Chance to Block Spell Damage is Unlucky"]={nil,"Chance to Block Spell Damage is Unlucky "}c["300% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 6 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=6},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["60% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=60,name="LootRarity",keywordFlags=0}},nil}c["0.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["90% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=90,name="ArmourAndEvasion",keywordFlags=0}},nil}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill "}c["+45 to Intelligence"]={{[1]={flags=0,type="BASE",value=45,name="Int",keywordFlags=0}},nil}c["8% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=8,name="CritChance",keywordFlags=0}},nil}c["Cannot be inflicted with Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidBleed",flags=0}},nil}c["140% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["9 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=9,name="ManaRegen",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of "}c["Iron Grip"]={{[1]={value="Iron Grip",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["0.5% of Elemental Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.5,name="ElementalDamageLifeLeech",keywordFlags=0}},nil}c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=30,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=4096}}," for 9 seconds on Throwing a "}c["You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike "}c["2% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["Socketed Gems are Supported by level 12 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=12},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterAttack",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["10% reduced Charges used"]={{[1]={flags=0,type="INC",value=-10,name="FlaskChargesUsed",keywordFlags=0}},nil}c["10% increased Intelligence"]={{[1]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=5,name="BleedChance",keywordFlags=0}},nil}c["15% increased Intelligence"]={{[1]={flags=0,type="INC",value=15,name="Int",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedChaosDamage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["+4% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=4,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=4,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=4,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=4,name="ChaosResistMax",keywordFlags=0}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegen",keywordFlags=0}},nil}c["Triggers Level 20 Lightning Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="LightningAegis",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["23% increased Poison Duration"]={{[1]={flags=0,type="INC",value=23,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["25% increased Trap Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=4096}},nil}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["80% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=80,name="Evasion",keywordFlags=0}},nil}c["All bonuses from an Equipped Shield apply to your Minions instead of you"]={{},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit "}c["80% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-80,name="TrapDuration",keywordFlags=0}},nil}c["10% chance to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit "}c["170% increased Energy Shield"]={{[1]={flags=0,type="INC",value=170,name="EnergyShield",keywordFlags=0}},nil}c["Adds 1 to 80 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=80,name="LightningMax",keywordFlags=196608}},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=58,name="CritChance",keywordFlags=0}},nil}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredShockedGround",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["+1000 to Spectre maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1000,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% chance to Sap Enemies Cannot inflict Shock"]={{}," to Sap Enemies Cannot inflict Shock "}c["25% chance to Sap Enemies"]={{}," to Sap Enemies "}c["Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice"]={nil,"Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice "}c["190% increased Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="EnergyShield",keywordFlags=0}},nil}c["Projectiles Pierce 5 additional Targets"]={{[1]={flags=0,type="BASE",value=5,name="PierceCount",keywordFlags=0}},nil}c["Minions have 13% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["4% chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},nil}c["5% chance to Gain Unholy Might for 4 seconds on Melee Kill"]={{}," to Gain Unholy Might for 4 seconds on Kill "}c["Socketed Gems are Supported by level 20 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportConcentratedEffect",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["10% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits refresh their Duration when they Kill an Ignited Enemy "}c["No Physical Damage"]={{[1]={value={key="PhysicalMin"},type="LIST",keywordFlags=0,name="WeaponData",flags=0},[2]={value={key="PhysicalMax"},type="LIST",keywordFlags=0,name="WeaponData",flags=0},[3]={value={key="PhysicalDPS"},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,type="BASE",value=1.8,name="CritChance",keywordFlags=0}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items "}c["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,type="INC",value=-75,name="ActiveRagingSpiritLimit",keywordFlags=0}},nil}c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"Gain an Endurance Charge when a Power Charge expires or is consumed "}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently, up to 2000% "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% "}c["+120 to Strength"]={{[1]={flags=0,type="BASE",value=120,name="Str",keywordFlags=0}},nil}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=25,name="EnduranceChargesMax",keywordFlags=0}}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently "}c["Acrobatics"]={{[1]={value="Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["You and Allies affected by your Aura Skills deal 30% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},name="AffectedByAuraMod",keywordFlags=0}},nil}c["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={[1]={type="PerStat",stat="ColdResistTotal",div=1},value=1,type="INC",keywordFlags=0,name="Evasion",flags=0}},nil}c["6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["10% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=10,name="LootQuantity",keywordFlags=0}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently "}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life "}c["Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"]={nil,"Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use "}c["28% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=28,name="ElementalDamage",keywordFlags=65536}},nil}c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge "}c["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["You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"]={nil,"You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge "}c["40% less Critical Strike Chance"]={{[1]={flags=0,type="MORE",value=-40,name="CritChance",keywordFlags=0}},nil}c["+15 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=15,name="LifeOnHit",keywordFlags=0}},nil}c["to surrounding targets"]={nil,"to surrounding targets "}c["+23 to maximum Mana"]={{[1]={flags=0,type="BASE",value=23,name="Mana",keywordFlags=0}},nil}c["also grant an equal chance to gain a Power Charge on Kill"]={nil,"also grant an equal chance to gain a Power Charge on Kill "}c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit "}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},[2]={type="StatThreshold",stat="PowerCharges",threshold=1},flags=0,type="BASE",keywordFlags=16384,name="ElementalDamageTaken",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["15% chance to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike "}c["Adds 1 to 60 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=60,name="LightningMax",keywordFlags=196608}},nil}c["35% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=35,name="ElementalDamage",keywordFlags=0}},nil}c["+40 Life gained when you Block"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}}," gained when you Block "}c["Minions gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["8% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="ManaRegen",keywordFlags=0}},nil}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",keywordFlags=0,name="ElementalDamage",value=2}}," to Avoid when Hit 0.5% of Attack Damage Leeched as Life "}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block"]={{[1]={[1]={type="StatThreshold",stat="ShieldBlockChance",threshold=30},flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["+40 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=40,name="Evasion",keywordFlags=0}},nil}c["12% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=12,name="EnergyShield",keywordFlags=0}},nil}c["25% chance to inflict Brittle"]={{}," to inflict Brittle "}c["260% increased Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EnergyShield",keywordFlags=0}},nil}c["12% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["23% increased Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=0}},nil}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level "}c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsLightning",keywordFlags=0}},nil}c["+38 to maximum Life"]={{[1]={flags=0,type="BASE",value=38,name="Life",keywordFlags=0}},nil}c["Immune to Freeze while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["25% chance to Scorch Enemies"]={{}," to Scorch Enemies "}c["+2 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=2},flags=0,type="BASE",value=2,name="Accuracy",keywordFlags=0}},nil}c["60% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={type="StatThreshold",stat="ManaReserved",upper=true,threshold=0},flags=2,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["+300 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=300,name="EnergyShield",keywordFlags=0}},nil}c["10% increased Burning Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=134217728}},nil}c["18% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=18,name="Damage",keywordFlags=1048576}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},nil}c["235% increased Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EnergyShield",keywordFlags=0}},nil}c["85% increased Spell Damage"]={{[1]={flags=2,type="INC",value=85,name="Damage",keywordFlags=0}},nil}c["Adds 19 to 34 Chaos Damage to Spells"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=34,name="ChaosMax",keywordFlags=131072}},nil}c["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["Right ring slot: You cannot Regenerate Mana"]={nil,"You cannot Regenerate Mana "}c["Point Blank"]={{[1]={value="Point Blank",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["74% increased Armour"]={{[1]={flags=0,type="INC",value=74,name="Armour",keywordFlags=0}},nil}c["Adds 3 to 72 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=72,name="LightningMax",keywordFlags=196608}},nil}c["20% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamage",keywordFlags=0}}," Bow as Extra Damage of an Element "}c["40% increased Physical Damage"]={{[1]={flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["Golem Skills have 30% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=0}},nil}c["80% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=80,name="ManaCost",keywordFlags=0}},nil}c["10% chance to Trigger Level 8 Summon Raging Spirit on Kill"]={{[1]={flags=0,type="LIST",value={skillId="SummonRagingSpirit",level=8},name="ExtraSkill",keywordFlags=0}},nil}c["30% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},flags=0,type="INC",value=-5,name="ElementalDamageTaken",keywordFlags=0}},nil}c["Adds 21 to 36 Chaos Damage to Spells"]={{[1]={flags=0,type="BASE",value=21,name="ChaosMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=36,name="ChaosMax",keywordFlags=131072}},nil}c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "}c["6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="INC",value=6,name="Life",keywordFlags=0}},nil}c["Adds 3 to 47 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=47,name="LightningMax",keywordFlags=196608}},nil}c["Brand Skills have 20% increased Duration"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=20,name="Duration",keywordFlags=0}},nil}c["Adds 2 to 45 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=45,name="LightningMax",keywordFlags=196608}},nil}c["Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=15,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=28,name="FireMax",keywordFlags=65536}},nil}c["+80 to maximum Mana"]={{[1]={flags=0,type="BASE",value=80,name="Mana",keywordFlags=0}},nil}c["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}},nil}c["15% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="INC",value=15,name="Damage",keywordFlags=786432}},nil}c["40% increased Curse Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=2}},nil}c["+11% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=11,name="ChaosResist",keywordFlags=0}},nil}c["Chance to Block Spell Damage is equal to Chance to Block Attack Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellBlockChanceIsBlockChance",flags=0}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["20% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="INC",value=20,name="Damage",keywordFlags=786432}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit "}c["+2 to Level of Socketed Curse Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="curse",value=2},name="GemProperty",keywordFlags=0}},nil}c["60% reduced Mana Cost of Totem Skills that cast an Aura"]={{[1]={flags=0,type="INC",value=-60,name="ManaCost",keywordFlags=16384}}," Skills that cast an Aura "}c["25 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=25,name="LifeRegen",keywordFlags=0}},nil}c["15% increased Damage over Time"]={{[1]={flags=8,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill "}c["Uses both hand slots 90% increased Critical Strike Chance"]={nil,"Uses both hand slots 90% increased Critical Strike Chance "}c["140% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=140,name="EnemyShockDuration",keywordFlags=0},[2]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=140,name="EnemyFreezeDuration",keywordFlags=0},[3]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=140,name="EnemyChillDuration",keywordFlags=0},[4]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=140,name="EnemyIgniteDuration",keywordFlags=0},[5]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=140,name="EnemyPoisonDuration",keywordFlags=0},[6]={[1]={type="Condition",var="Focused"},flags=0,type="INC",value=140,name="EnemyBleedDuration",keywordFlags=0}},nil}c["Lose 35 Mana per Second"]={{[1]={flags=0,type="BASE",value=35,name="ManaDegen",keywordFlags=0}},nil}c["+18 to Quality {variant:4}{crafted}+15% to Fire and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="ChaosResist",keywordFlags=0}}," Quality {variant:4}{crafted}+15% to "}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+18 to Quality"]={{}," Quality "}c["16% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="INC",value=4,name="ElementalDamage",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["30% chance to Avoid being Shocked"]={{[1]={flags=0,type="BASE",value=30,name="AvoidShock",keywordFlags=0}},nil}c["Nearby Allies gain 1% of Life Regenerated per Second"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill Eldritch Battery"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",keywordFlags=0}}," for Recharge to start when you use a Skill Eldritch Battery "}c["Adds 175 to 300 Cold Damage"]={{[1]={flags=0,type="BASE",value=175,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="ColdMax",keywordFlags=0}},nil}c["+190 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=190,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Light Radius"]={{[1]={flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement "}c["0.2% of Cold Damage Leeched as Energy Shield"]={{[1]={flags=0,type="BASE",value=0.2,name="ColdDamageEnergyShieldLeech",keywordFlags=0}},nil}c["Take 5 Physical Damage when hit by Attacks"]={nil,"5 Physical Damage when hit by Attacks "}c["Reflects 5 Physical Damage to Melee Attackers"]={{},nil}c["110% increased Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EnergyShield",keywordFlags=0}},nil}c["Adds 1 to 150 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="LightningMax",keywordFlags=0}},nil}c["0.3% of Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.3,name="DamageManaLeech",keywordFlags=0}},nil}c["0.6% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.6,name="DamageLifeLeech",keywordFlags=0}},nil}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["10% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=10,name="Duration",keywordFlags=0}},nil}c["Adds 190 to 220 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=190,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=220,name="FireMax",keywordFlags=0}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies "}c["135% increased Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EnergyShield",keywordFlags=0}},nil}c["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellDamageAppliesToAttacks",flags=0}},nil}c["Adds 30 to 45 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=30,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=45,name="FireMax",keywordFlags=196608}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed"]={{[1]={flags=3,type="BASE",value=25,name="Speed",keywordFlags=0}}," to Trigger a Socketed when you Attack with a Bow 15% increased "}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item "}c["150% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,type="INC",keywordFlags=0,name="Evasion",value=150}},nil}c["+90 to all Attributes"]={{[1]={flags=0,type="BASE",value=90,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=90,name="Int",keywordFlags=0}},nil}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited "}c["+70 to Dexterity"]={{[1]={flags=0,type="BASE",value=70,name="Dex",keywordFlags=0}},nil}c["230% increased Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="EnergyShield",keywordFlags=0}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["350% increased Energy Shield"]={{[1]={flags=0,type="INC",value=350,name="EnergyShield",keywordFlags=0}},nil}c["24% increased maximum Mana"]={{[1]={flags=0,type="INC",value=24,name="Mana",keywordFlags=0}},nil}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{[1]={flags=0,type="LIST",value={skillId="AvianTornado",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["23% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=23,name="LootRarity",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportOnslaughtOnSlayingShockedEnemy",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["You are Cursed with Level 20 Vulnerability"]={{[1]={flags=0,type="LIST",value={skillId="Vulnerability",applyToPlayer=true,level=20},name="ExtraCurse",keywordFlags=0}},nil}c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=65536}},nil}c["475% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=475,name="Evasion",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 30 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdToFire",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["25% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,type="INC",value=25,name="FireDamage",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"]={nil,"With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill "}c["25% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,type="INC",value=25,name="ColdDamage",keywordFlags=0}},nil}c["20% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-20,name="ProjectileSpeed",keywordFlags=0}},nil}c["-10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-10,name="ColdResist",keywordFlags=0}},nil}c["30% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["30% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=0}},nil}c["Can Summon up to 3 additional Golems at a time"]={{[1]={flags=0,type="BASE",value=3,name="ActiveGolemLimit",keywordFlags=0}},nil}c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=30}},nil}c["8% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalDamageTakenAsFire",keywordFlags=0}},nil}c["100% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=100,name="FlaskRecovery",keywordFlags=0}},nil}c["10% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=10,name="LootRarity",keywordFlags=0}},nil}c["Cannot be Shocked"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}c["Adds 6 to 12 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=6,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=12,name="ColdMax",keywordFlags=65536}},nil}c["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportReducedMana",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["25% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=25,name="AvoidChilled",keywordFlags=0}},nil}c["Conduit"]={{[1]={value="Conduit",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Socketed Gems have 50% reduced Mana Cost"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["-30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="FireResist",keywordFlags=0}},nil}c["+2 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ManaOnHit",keywordFlags=0}},nil}c["Armour is increased by Uncapped Fire Resistance"]={{[1]={[1]={type="PerStat",stat="FireResistTotal",div=1},value=1,type="INC",keywordFlags=0,name="Armour",flags=0}},nil}c["+120 to Armour"]={{[1]={flags=0,type="BASE",value=120,name="Armour",keywordFlags=0}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",keywordFlags=0}},nil}c["+25 to Armour"]={{[1]={flags=0,type="BASE",value=25,name="Armour",keywordFlags=0}},nil}c["+1 to maximum number of Zombies per 300 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=300},flags=0,type="BASE",value=1,name="ActiveZombieLimit",keywordFlags=0}},nil}c["45% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 3 seconds after being Shocked "}c["Gain 10% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element "}c["250% increased Armour"]={{[1]={flags=0,type="INC",value=250,name="Armour",keywordFlags=0}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=125,name="CritMultiplier",keywordFlags=0}},nil}c["150% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=150,name="Evasion",keywordFlags=0}},nil}c["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=225,name="CritMultiplier",keywordFlags=0}},nil}c["Adds 6 to 9 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=6,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=9,name="ColdMax",keywordFlags=65536}},nil}c["Adds 40 to 60 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=60,name="PhysicalMax",keywordFlags=65536}},nil}c["20% increased Mine Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8192}},nil}c["30% increased Fire Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["10% less Mana Reservation of Skills"]={{[1]={flags=0,type="MORE",value=-10,name="ManaReserved",keywordFlags=0}},nil}c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth "}c["Adds 8 to 17 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="PhysicalMax",keywordFlags=0}},nil}c["13% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=0}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge "}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges "}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFirePenetration",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["12% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["28% increased Cold Damage"]={{[1]={flags=0,type="INC",value=28,name="ColdDamage",keywordFlags=0}},nil}c["Adds 105 to 253 Physical Damage"]={{[1]={flags=0,type="BASE",value=105,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=253,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=15,name="ColdMin",keywordFlags=131072},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=25,name="ColdMax",keywordFlags=131072}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="BASE",value=50,name="ColdDamage",keywordFlags=0}}," to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 to s "}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity {variant:8}-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}}," to Recover 10% of when you use a Skill {variant:8}-5 to Total Mana Cost of Skills while affected by Clarity "}c["+85 to maximum Life"]={{[1]={flags=0,type="BASE",value=85,name="Life",keywordFlags=0}},nil}c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,type="BASE",value=25,name="ManaOnKill",keywordFlags=0}}," ing a Frozen Enemy "}c["70% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["+4% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalResist",keywordFlags=0}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned "}c["50% chance to gain a Power Charge on Killing a Frozen Enemy"]={{}," to gain a Power Charge on Killing a Frozen Enemy "}c["30% Chance to Dodge Spell Hits"]={{[1]={flags=0,type="BASE",value=30,name="SpellDodgeChance",keywordFlags=0}},nil}c["Adds 1 to 40 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="LightningMax",keywordFlags=0}},nil}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["+1 Maximum Power Charge"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," if you Summoned a in the past 8 seconds "}c["Enemies you Shock have 20% reduced Movement Speed Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",keywordFlags=0}},"Enemies you Shock have 20% reduced Damage "}c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="LightningMax",keywordFlags=0}},nil}c["Adds 31 to 100 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=31,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=100,name="LightningMax",keywordFlags=131072}},nil}c["+300 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=300,name="Evasion",keywordFlags=0}},nil}c["Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage "}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has "}c["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,type="BASE",keywordFlags=0,name="LightningDegen",value=400}},nil}c["3% increased Movement Speed"]={{[1]={flags=0,type="INC",value=3,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 3 to 9 Lightning Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=9,name="LightningMax",keywordFlags=131072}},nil}c["60% increased Damage with Channelling Skills"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["50% increased Elemental Ailment Duration on You You are Immune to Bleeding"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You You are Immune to Bleeding "}c["12% increased Movement Speed"]={{[1]={flags=0,type="INC",value=12,name="MovementSpeed",keywordFlags=0}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={[1]={type="PerStat",stat="Life",div=1},flags=0,type="BASE",value=0.3,name="FireDegen",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating "}c["+8% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=8}},nil}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,type="BASE",value=320,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportControlledDestruction",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["17% increased Spell Damage"]={{[1]={flags=2,type="INC",value=17,name="Damage",keywordFlags=0}},nil}c["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack "}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Multiplier",var="Level",div=3},flags=0,type="BASE",keywordFlags=65536,name="PhysicalMin",value=3},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Multiplier",var="Level",div=3},flags=0,type="BASE",keywordFlags=65536,name="PhysicalMax",value=5}},nil}c["10% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},[2]={type="Multiplier",div=25,var="Level"},flags=0,type="LIST",keywordFlags=0,name="GemProperty",value={key="level",keyword="active_skill",value=1}}},nil}c["8% increased Physical Damage"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=115,name="ElementalDamage",keywordFlags=0}},nil}c["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["29% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=29,name="CritChance",keywordFlags=0}},nil}c["Adds 27 to 86 Physical Damage"]={{[1]={flags=0,type="BASE",value=27,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=86,name="PhysicalMax",keywordFlags=0}},nil}c["Minions have 20% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+25 Energy Shield gained on Kill Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",value=25,name="EnergyShield",keywordFlags=0}}," gained on Kill Grants Malachai's Endurance,and Power for 6 seconds each, in sequence "}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter"]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter "}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges "}c["Gain 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["6% increased Attack Damage for each Map Item Modifier affecting the Area"]={{[1]={flags=513,type="INC",value=6,name="Damage",keywordFlags=0}}," for each Map Item Modifier affecting the "}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,type="LIST",value={skillId="Flammability",level=1,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["+25% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=92,name="PhysicalMax",keywordFlags=0}},nil}c["+20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=20,name="LifeOnKill",keywordFlags=0}},nil}c["+20% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ChaosResist",keywordFlags=0}},nil}c["Socketed Gems are supported by level 20 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["26% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["Socketed Gems are supported by level 5 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["37% increased Spell Damage"]={{[1]={flags=2,type="INC",value=37,name="Damage",keywordFlags=0}},nil}c["100% increased Charge Recovery"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargeRecovery",keywordFlags=0}},nil}c["Reserves 30% of Life"]={{[1]={flags=0,type="BASE",value=30,name="ExtraLifeReserved",keywordFlags=0}},nil}c["26% increased Spell Damage"]={{[1]={flags=2,type="INC",value=26,name="Damage",keywordFlags=0}},nil}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["+18 to maximum Mana"]={{[1]={flags=0,type="BASE",value=18,name="Mana",keywordFlags=0}},nil}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={type="MultiplierThreshold",threshold=1,var="Spider's WebStack",actor="enemy"},flags=0,type="BASE",value=20,name="EnergyShieldOnHit",keywordFlags=0}},nil}c["Adds 20 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=20,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=30,name="FireMax",keywordFlags=196608}},nil}c["10% increased Skeleton Attack Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+1 to Level of Socketed Spell Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="spell",value=1},name="GemProperty",keywordFlags=0}},nil}c["+8% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ColdResist",keywordFlags=0}},nil}c["Adds 151 to 203 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="BASE",keywordFlags=458752,name="FireMin",value=151},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="BASE",keywordFlags=458752,name="FireMax",value=203}},nil}c["Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="BASE",keywordFlags=458752,name="FireMin",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="BASE",keywordFlags=458752,name="FireMax",value=210}},nil}c["Adds 181 to 251 Cold Damage to Bow Attacks"]={{[1]={flags=8192,type="BASE",value=181,name="ColdMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=251,name="ColdMax",keywordFlags=0}},nil}c["Adds 5 to 10 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you "}c["31% increased Spell Damage"]={{[1]={flags=2,type="INC",value=31,name="Damage",keywordFlags=0}},nil}c["Grants level 20 Death Aura Skill"]={{[1]={flags=0,type="LIST",value={skillId="ChaosDegenAuraUnique",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=140,name="CritChance",keywordFlags=262144}},nil}c["Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies "}c["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=33,name="CritMultiplier",keywordFlags=0}},nil}c["10% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=10,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["Adds 22 to 44 Physical Damage"]={{[1]={flags=0,type="BASE",value=22,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=44,name="PhysicalMax",keywordFlags=0}},nil}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=4096}},nil}c["10% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["19% chance to Ignite"]={{[1]={flags=0,type="BASE",value=19,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Adds 5 to 8 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=5,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=8,name="FireMax",keywordFlags=131072}},nil}c["22% chance to Ignite"]={{[1]={flags=0,type="BASE",value=22,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Your Spells are disabled"]={{[1]={[1]={type="SkillType",skillType=2},value=true,type="FLAG",keywordFlags=0,name="DisableSkill",flags=0}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["50% increased Burning Damage"]={{[1]={flags=0,type="INC",value=50,name="FireDamage",keywordFlags=134217728}},nil}c["90% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=90,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 14 to 22 Fire Damage"]={{[1]={flags=0,type="BASE",value=14,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="FireMax",keywordFlags=0}},nil}c["33% increased Physical Damage"]={{[1]={flags=0,type="INC",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=5,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=10,name="FireMax",keywordFlags=131072}},nil}c["0.3% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,type="BASE",value=0.3,name="DamageEnergyShieldLeech",keywordFlags=0}},nil}c["+1 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,type="BASE",value=1,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="UnarmedRange",keywordFlags=0}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,type="INC",value=60,name="FireDamage",keywordFlags=0}},nil}c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,type="INC",value=25,name="FlaskLifeRecoveryRate",keywordFlags=0}},nil}c["+5 to Level of Socketed Aura Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="aura",value=5},name="GemProperty",keywordFlags=0}},nil}c["+10 Life Gained on Killing Ignited Enemies 25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}}," ing Ignited Enemies 25% reduced Ignite Duration "}c["Adds 6 to 12 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=6,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=12,name="FireMax",keywordFlags=131072}},nil}c["+33 to Maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",keywordFlags=0}},nil}c["Flasks apply to your Zombies and Spectres"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"}},value=true,type="FLAG",keywordFlags=0,name="FlasksApplyToMinion",flags=0}},nil}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,type="BASE",value=1,name="ExtraPoints",keywordFlags=0}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=4096}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration "}c["40% increased Trap Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=4096}},nil}c["30% increased Cast Speed"]={{[1]={flags=16,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["Right ring slot: You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second"]={nil,"You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second "}c["Grace has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Grace"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["40% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-40,name="Damage",keywordFlags=0}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks"]={{[1]={flags=8192,type="BASE",value=188,name="ColdMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=262,name="ColdMax",keywordFlags=0}},nil}c["Determination has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Determination"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Hatred"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["+10 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="ManaOnKill",keywordFlags=0}},nil}c["+20 to maximum Life"]={{[1]={flags=0,type="BASE",value=20,name="Life",keywordFlags=0}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["+135 to Evasion Rating and Energy Shield"]={{[1]={flags=0,type="BASE",value=135,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["15% increased Totem Life"]={{[1]={flags=0,type="INC",value=15,name="TotemLife",keywordFlags=0}},nil}c["2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=16,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["1% of Damage against Frozen Enemies Leeched as Mana"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Frozen"},flags=0,type="BASE",value=1,name="DamageManaLeech",keywordFlags=262144}},nil}c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers "}c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Wrath"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["36% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=36,name="MovementSpeed",keywordFlags=0}},nil}c["Attacks Cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=1}},nil}c["You have Phasing while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["50% increased Fire Damage"]={{[1]={flags=0,type="INC",value=50,name="FireDamage",keywordFlags=0}},nil}c["120% increased Critical Strike Chance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}},nil}c["Creates a Smoke Cloud on Use"]={{},nil}c["Adds 27 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=27,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["25% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-25,name="FlaskDuration",keywordFlags=0}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=16,name="LightningDamage",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain an Endurance Charge on Kill 10% more "}c["Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"]={nil,"Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use "}c["You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect "}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-8,name="ManaCost",keywordFlags=0}},nil}c["+20 to Dexterity"]={{[1]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0}},nil}c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=-10,name="StunRecovery",keywordFlags=0}},nil}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=30,name="FlaskManaRecovery",keywordFlags=0}},nil}c["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=5,name="LifeGainAsEnergyShield",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells when on Low Life {variant:3}+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},[2]={type="Condition",var="LowLife"},flags=2,type="BASE",keywordFlags=0,name="BlockChance",value=120}}," applied to s {variant:3}+36% chance to Block Spell Damage "}c["25% increased Physical Damage"]={{[1]={flags=0,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield "}c["Right ring slot: Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce "}c["15% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield "}c["20% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=20,name="EnemyChillEffect",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["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["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield "}c["+50 Maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",keywordFlags=0}},nil}c["2 additional Projectiles during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={nil,"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["12% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=12,name="BlockChance",keywordFlags=0}},nil}c["20% more Maximum Physical Attack Damage {variant:2}40% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum {variant:2}40% more Maximum Physical Attack Damage "}c["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum "}c["10% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"]={{}," to gain 1 Rage when you Hit a Rare or Unique Enemy "}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has "}c["5% chance to Shock"]={{[1]={flags=0,type="BASE",value=5,name="EnemyShockChance",keywordFlags=0}},nil}c["+3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}},nil}c["20% less Minimum Physical Attack Damage {variant:2}40% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum {variant:2}40% less Minimum Physical Attack Damage "}c["Gain 50 Life when you Stun an Enemy"]={nil,"Gain 50 Life when you Stun an Enemy "}c["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="LightningDamageConvertToCold",keywordFlags=0}},nil}c["Adds 1 to 20 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=65536}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=20,name="Evasion",keywordFlags=0}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity "}c["+7% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}c["Has no Attribute Requirements"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoAttributeRequirements",flags=0}},nil}c["Adds 6 to 13 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=6,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=13,name="ColdMax",keywordFlags=65536}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges "}c["8% chance to Block while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EnergyShield",keywordFlags=0}},nil}c["0.2% of Fire Damage Leeched as Energy Shield"]={{[1]={flags=0,type="BASE",value=0.2,name="FireDamageEnergyShieldLeech",keywordFlags=0}},nil}c["+8 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=8,name="Mana",keywordFlags=0}}," gained when you Block "}c["Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["+1% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}},nil}c["Adds 1 to 34 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=34,name="LightningMax",keywordFlags=65536}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["35% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}c["Banner Skills Reserve no Mana"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Dread Banner",[2]="War Banner"}},value={key="manaCostForced",value=0},type="LIST",keywordFlags=0,name="SkillData",flags=0}},nil}c["12% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed "}c["80% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=80,name="EnemyStunDuration",keywordFlags=0}},nil}c["Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={{[1]={[1]={type="SkillType",skillType=76},[2]={type="Condition",var="BrandAttachedToEnemy"},flags=0,type="INC",keywordFlags=0,name="Damage",value=30}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill "}c["Iron Reflexes"]={{[1]={value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun "}c["1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"]={{[1]={[1]={type="PerStat",stat="LowestOfArmourAndEvasion",div=300},flags=1,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["1% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=1,type="INC",value=1,name="Speed",keywordFlags=0}},nil}c["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="CritMultiplier",keywordFlags=0}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=30,name="Damage",keywordFlags=65536}},nil}c["Anger Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Anger"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["6% increased Dexterity"]={{[1]={flags=0,type="INC",value=6,name="Dex",keywordFlags=0}},nil}c["+25 to all Attributes"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["15% increased Light Radius"]={{[1]={flags=0,type="INC",value=15,name="LightRadius",keywordFlags=0}},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=30,name="EnergyShield",keywordFlags=0}},nil}c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={type="SkillName",skillName="Blight"},flags=0,type="INC",value=30,name="Duration",keywordFlags=0}}," Hinder "}c["20% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=20,name="FlaskDuration",keywordFlags=0}},nil}c["+125 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=125,name="Accuracy",keywordFlags=0}},nil}c["12% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=12,name="LootQuantity",keywordFlags=0}},nil}c["You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"]={nil,"You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second "}c["50% increased Charges used"]={{[1]={flags=0,type="INC",value=50,name="FlaskChargesUsed",keywordFlags=0}},nil}c["118% increased Physical Damage"]={{[1]={flags=0,type="INC",value=118,name="PhysicalDamage",keywordFlags=0}},nil}c["130% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEvasion",keywordFlags=0}},nil}c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=200},flags=0,type="INC",value=55,name="CritChance",keywordFlags=0}},nil}c["+50 to Intelligence"]={{[1]={flags=0,type="BASE",value=50,name="Int",keywordFlags=0}},nil}c["40% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",keywordFlags=0}},nil}c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,type="BASE",value=2,name="ActiveTrapLimit",keywordFlags=0}},nil}c["Adds 14 to 23 Physical Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="PhysicalMax",keywordFlags=0}},nil}c["+45 to Strength"]={{[1]={flags=0,type="BASE",value=45,name="Str",keywordFlags=0}},nil}c["40% increased Effect of Heralds on you"]={{[1]={[1]={type="SkillType",skillType=63},flags=0,type="INC",value=40,name="BuffEffect",keywordFlags=0}},nil}c["Adds 58 to 98 Chaos Damage to Spells"]={{[1]={flags=0,type="BASE",value=58,name="ChaosMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=98,name="ChaosMax",keywordFlags=131072}},nil}c["50% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=50,name="FlaskChargesGained",keywordFlags=0}},nil}c["40% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["71 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=71,name="LifeRegen",keywordFlags=0}},nil}c["125% increased Armour"]={{[1]={flags=0,type="INC",value=125,name="Armour",keywordFlags=0}},nil}c["5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={[1]={type="StatThreshold",stat="CrabBarriers",threshold=10},flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["-40 Physical Damage taken from Attacks 40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"},neg=true},flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks 40% increased Armour "}c["10% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=10,name="FlaskDuration",keywordFlags=0}},nil}c["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["Brand Recall has 30% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillName="Brand Recall"},flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=0}},nil}c["Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"]={nil,"Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies "}c["22% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=22,name="Damage",keywordFlags=65536}},nil}c["-10% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=-10,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=-10,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=-10,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=-10,name="ChaosResistMax",keywordFlags=0}},nil}c["Curse Enemies with Socketed Curse Gem on Hit"]={nil,nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=40,name="Accuracy",keywordFlags=0}},nil}c["50% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=50,name="Damage",keywordFlags=0}},nil}c["Cannot inflict Freeze or Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotFreeze",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="CannotChill",flags=0}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=75,name="LifeRegen",keywordFlags=0}},nil}c["60% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=60,name="Damage",keywordFlags=786432}},nil}c["1% increased Movement Speed per 600 Evasion Rating, up to 75%"]={{[1]={[1]={limit=75,stat="Evasion",div=600,type="PerStat",limitTotal=true},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}},nil}c["Herald of Agony has 79% increased Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Herald of Agony"},flags=0,type="INC",value=79,name="BuffEffect",keywordFlags=0}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=70,name="Damage",keywordFlags=786432}},nil}c["Focus has 25% increased Cooldown Recovery Speed"]={nil,"Focus has 25% increased Cooldown Recovery Speed "}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=4,name="LifeOnHit",keywordFlags=0}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed "}c["+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block "}c["+48 to Dexterity"]={{[1]={flags=0,type="BASE",value=48,name="Dex",keywordFlags=0}},nil}c["+48 to Strength"]={{[1]={flags=0,type="BASE",value=48,name="Str",keywordFlags=0}},nil}c["When you Kill a Rare monster, you gain its mods for 20 seconds"]={nil,"When you Kill a Rare monster, you gain its mods for 20 seconds "}c["298% increased Physical Damage"]={{[1]={flags=0,type="INC",value=298,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Damage against Rare monsters"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," against Rare monsters "}c["+55 to Dexterity"]={{[1]={flags=0,type="BASE",value=55,name="Dex",keywordFlags=0}},nil}c["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=1000,name="PhysicalDamage",keywordFlags=0}},nil}c["+55 to Strength"]={{[1]={flags=0,type="BASE",value=55,name="Str",keywordFlags=0}},nil}c["45% increased Area Damage"]={{[1]={flags=512,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["+3% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=3,name="ElementalResist",keywordFlags=0}},nil}c["20% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill "}c["10% increased Armour"]={{[1]={flags=0,type="INC",value=10,name="Armour",keywordFlags=0}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded "}c["-30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="ColdResist",keywordFlags=0}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies "}c["16% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEvasion",keywordFlags=0}},nil}c["8% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=18,name="CooldownRecovery",keywordFlags=0}},nil}c["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["13% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy "}c["Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Enemies cannot deal Critical Strikes "}c["+36 to Armour"]={{[1]={flags=0,type="BASE",value=36,name="Armour",keywordFlags=0}},nil}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["150% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,type="INC",value=150,name="Damage",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,type="LIST",value={skillId="TentacleSmash",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+14% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=14,name="ElementalResist",keywordFlags=0}},nil}c["50% increased Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=50,name="FlaskChargesGained",keywordFlags=0}},nil}c["20% increased Defences"]={{[1]={flags=0,type="INC",value=20,name="Defences",keywordFlags=0}},nil}c["-1 Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["100% increased Skeleton Movement Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 30 Iron Will"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIronWill",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["80% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=80,name="ArmourAndEvasion",keywordFlags=0}},nil}c["30% reduced Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-30,name="FlaskChargesGained",keywordFlags=0}},nil}c["Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage "}c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies "}c["60% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},nil}c["10% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["24% increased Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies Ignited by an Attack Burn 35% faster"]={{[1]={flags=1,type="INC",value=35,name="IgniteBurnFaster",keywordFlags=0}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-15,name="Damage",keywordFlags=0}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}},nil}c["Hatred Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Hatred"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Your Flasks grant 10% chance to Shock during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}c["Your Flasks grant 10% chance to Freeze during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=0}},nil}c["Adds 228 to 280 Physical Damage"]={{[1]={flags=0,type="BASE",value=228,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=280,name="PhysicalMax",keywordFlags=0}},nil}c["90% increased Energy Shield"]={{[1]={flags=0,type="INC",value=90,name="EnergyShield",keywordFlags=0}},nil}c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={skillId="LightningSpell",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage"]={{[1]={flags=2,type="INC",value=50,name="CritChance",keywordFlags=0}}," per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage "}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="LightningDamageLifeLeech",keywordFlags=0}},nil}c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ColdDamageLifeLeech",keywordFlags=0}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",keywordFlags=0}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["8% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["Cannot be Knocked Back {variant:1}+150 to maximum Life"]={nil,"Cannot be Knocked Back {variant:1}+150 to maximum Life "}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["You and nearby allies gain 15% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["10% increased Attributes"]={{[1]={flags=0,type="INC",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=10,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage"]={nil,"Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage "}c["+35% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=35,name="ElementalResist",keywordFlags=0}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination "}c["+33 to maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",keywordFlags=0}},nil}c["1% increased Damage per 5 of your lowest Attribute"]={{[1]={[1]={type="PerStat",stat="LowestAttribute",div=5},flags=0,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["Cannot be Ignited if Strength is higher than Dexterity"]={{[1]={[1]={type="Condition",var="StrHigherThanDex"},value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=0}},nil}c["25% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=25,name="ChaosDamage",keywordFlags=65536}},nil}c["1% increased Projectile Attack Damage per 200 Accuracy Rating"]={{[1]={[1]={type="PerStat",stat="Accuracy",div=200},flags=1025,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["You count as on Low Life while you are Cursed with Vulnerability"]={{[1]={[1]={type="Condition",var="AffectedByVulnerability"},value=true,type="FLAG",keywordFlags=0,name="Condition:LowLife",flags=0}},nil}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability "}c["Enemies you kill are Shocked"]={nil,"Enemies you kill are Shocked "}c["Rampage 1% increased Rarity of Items found per 15 Rampage Kills"]={nil,"Rampage 1% increased Rarity of Items found per 15 Rampage Kills "}c["5% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=5,name="LootQuantity",keywordFlags=0}},nil}c["Manifested Dancing Dervish disables both weapon slots"]={{},nil}c["10% increased Cast Speed"]={{[1]={flags=16,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes "}c["10% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,type="INC",value=-10,name="BlockChance",keywordFlags=0},[2]={flags=0,type="INC",value=-10,name="SpellBlockChance",keywordFlags=0}},nil}c["Nearby allies Recover 2% of your maximum Life when you Die"]={nil,"Nearby allies Recover 2% of your maximum Life when you Die "}c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "}c["70% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Mines cannot be Damaged for 5 seconds after being Placed "}c["0.2% of Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,type="BASE",value=0.2,name="DamageManaLeech",keywordFlags=0}},nil}c["25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=25,name="ElementalDamage",keywordFlags=65536}},nil}c["10% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,type="INC",value=-10,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},nil}c["0.2% of Physical Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["18% increased Armour"]={{[1]={flags=0,type="INC",value=18,name="Armour",keywordFlags=0}},nil}c["+13% to Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",keywordFlags=0}},nil}c["+78 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=78,name="EnergyShield",keywordFlags=0}},nil}c["+50% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="ChaosResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 25 Blessing"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAuraDuration",level=25},name="ExtraSupport",keywordFlags=0}},nil}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You and your Totems Regenerate 1% of Life per second per Totem "}c["+45 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=45,name="EnergyShield",keywordFlags=0}},nil}c["Adds 60 to 110 Chaos Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=60,name="ChaosMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=110,name="ChaosMax",keywordFlags=0}},nil}c["Adds 60 to 110 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=60,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=110,name="FireMax",keywordFlags=0}},nil}c["Skills used by Traps have 20% increased Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=4096}},nil}c["Counts as Dual Wielding"]={{[1]={value={key="countsAsDualWielding",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant "}c["25% of Block Chance applied to Spells {variant:4}+7% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=25,name="BlockChance",keywordFlags=0}}," applied to s {variant:4}+7% chance to Block Spell Damage "}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["+50 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds "}c["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=65536,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportIncreasedAreaOfEffect",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill "}c["28% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-28,name="Speed",keywordFlags=0}},nil}c["Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredBoneNova",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-25,name="Speed",keywordFlags=0}},nil}c["8% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=1,type="BASE",value=25,name="BleedChance",keywordFlags=262144}},nil}c["18% increased Intelligence"]={{[1]={flags=0,type="INC",value=18,name="Int",keywordFlags=0}},nil}c["30% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=30,name="EnergyShield",keywordFlags=0}},nil}c["Minions deal 30% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit "}c["45% increased Damage"]={{[1]={flags=0,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["Rampage 2% increased Area of Effect per 25 Rampage Kills"]={nil,"Rampage 2% increased Area of Effect per 25 Rampage Kills "}c["+20% chance to be Pierced by Projectiles {variant:2,3}Projectiles Pierce you"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by {variant:2,3}Projectiles Pierce you "}c["212% increased Physical Damage"]={{[1]={flags=0,type="INC",value=212,name="PhysicalDamage",keywordFlags=0}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",keywordFlags=0}},nil}c["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",value=15,name="FireMin",keywordFlags=262144},[2]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",value=25,name="FireMax",keywordFlags=262144}},nil}c["Adds 90 to 180 Cold Damage"]={{[1]={flags=0,type="BASE",value=90,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=180,name="ColdMax",keywordFlags=0}},nil}c["45% increased Cold Damage"]={{[1]={flags=0,type="INC",value=45,name="ColdDamage",keywordFlags=0}},nil}c["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded "}c["+10 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}},nil}c["20% chance to attack with Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredMoltenStrike",level=16},name="ExtraSkill",keywordFlags=0}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegenPercent",keywordFlags=0}},nil}c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="BASE",value=2,name="Life",keywordFlags=0}},nil}c["Templar: Damage Penetrates 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["Adds 40 to 85 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=85,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 13 to 31 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=31,name="PhysicalMax",keywordFlags=0}},nil}c["30% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["-1 Maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=-1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["+40 Life gained when you Block {variant:2,3}+48 Life gained when you Block"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}}," gained when you Block {variant:2,3}+48 Life gained when you Block "}c["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["+90 to Strength"]={{[1]={flags=0,type="BASE",value=90,name="Str",keywordFlags=0}},nil}c["Adds 45 to 90 Physical Damage"]={{[1]={flags=0,type="BASE",value=45,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="PhysicalMax",keywordFlags=0}},nil}c["+23 to Strength"]={{[1]={flags=0,type="BASE",value=23,name="Str",keywordFlags=0}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=262144}}," against Rare monsters "}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary "}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill "}c["24% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["305% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=305,name="Defences",keywordFlags=0}},nil}c["Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"]={nil,"Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill "}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage "}c["225% increased Physical Damage"]={{[1]={flags=0,type="INC",value=225,name="PhysicalDamage",keywordFlags=0}},nil}c["25% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=25,name="LightningDamage",keywordFlags=0}},nil}c["You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike "}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["Immune to Elemental Ailments while Phasing"]={nil,"Immune to Elemental Ailments while Phasing "}c["Nearby Allies have 30% increased Item Rarity {variant:1}Nearby Allies' spells have Culling Strike"]={{}," Item Rarity {variant:1}Nearby Allies' s have Culling Strike "}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdPenetration",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["+12% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ChaosResist",keywordFlags=0}},nil}c["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity "}c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity "}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,type="INC",value=-25,name="ChaosDamageTakenOverTime",keywordFlags=0}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "}c["+23% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=23,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="LightningResist",keywordFlags=0}},nil}c["Adds 10 to 21 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="PhysicalMax",keywordFlags=0}},nil}c["Attacks have Blood Magic"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=1}},nil}c["You gain 8% increased Damage for each Trap"]={{[1]={flags=0,type="BASE",value=8,name="Damage",keywordFlags=4096}},"% increased for each "}c["130% increased Physical Damage"]={{[1]={flags=0,type="INC",value=130,name="PhysicalDamage",keywordFlags=0}},nil}c["1.2% of Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=1.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["5% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy "}c["Adds 330 to 480 Cold Damage"]={{[1]={flags=0,type="BASE",value=330,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=480,name="ColdMax",keywordFlags=0}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire "}c["26% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,type="INC",value=26,name="Damage",keywordFlags=0}},nil}c["+6% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=6,name="ElementalResist",keywordFlags=0}},nil}c["20% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockEffect",keywordFlags=0}},nil}c["150% increased Elemental Damage if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="INC",value=150,name="ElementalDamage",keywordFlags=0}},nil}c["25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=262144}},nil}c["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ColdResist",keywordFlags=0}},nil}c["Your Physical Damage can Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PhysicalCanChill",flags=0}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill "}c["Adds 60 to 150 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=150,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["Adds 70 to 165 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=165,name="PhysicalMax",keywordFlags=0}},nil}c["210% increased Energy Shield"]={{[1]={flags=0,type="INC",value=210,name="EnergyShield",keywordFlags=0}},nil}c["+10 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=10,name="LifeOnHit",keywordFlags=0}},nil}c["+13% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=13,name="SpellBlockChance",keywordFlags=0}},nil}c["You gain Onslaught for 3 seconds on Culling Strike"]={nil,"You gain Onslaught for 3 seconds on Culling Strike "}c["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike "}c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["Triggers Level 20 Blinding Aura when Equipped"]={nil,nil}c["Grants Summon Harbinger of Focus Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfFocus",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies "}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,type="LIST",value={skillId="LightningWarp",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 9 to 17 Physical Damage"]={{[1]={flags=0,type="BASE",value=9,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 13 to 21 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="PhysicalMax",keywordFlags=0}},nil}c["50% reduced Life Leeched per second"]={{[1]={flags=0,type="INC",value=-50,name="LifeLeechRate",keywordFlags=0}},nil}c["Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={{[1]={[1]={type="MultiplierThreshold",var="NonShaperItem",upper=true,threshold=0},value=true,type="FLAG",keywordFlags=0,name="IgnoreChaosResistance",flags=0}},nil}c["+23 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=23,name="EnergyShield",keywordFlags=0}},nil}c["Has 1 Socket"]={{[1]={flags=0,type="BASE",value=1,name="SocketCount",keywordFlags=0}},nil}c["50% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=200},flags=1025,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell "}c["15% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["+44 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=44,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Effect of Heralds on you"]={{[1]={[1]={type="SkillType",skillType=63},flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}},nil}c["Adds 13 to 28 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=28,name="PhysicalMax",keywordFlags=0}},nil}c["+350 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=350,name="Accuracy",keywordFlags=0}},nil}c["15% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["Adds 15 to 30 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="PhysicalMax",keywordFlags=0}},nil}c["88% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="INC",value=88,name="PhysicalDamage",keywordFlags=786432}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-30,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["Adds 12 to 22 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,type="INC",value=22,name="Mana",keywordFlags=0}},nil}c["14% increased Damage with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["Cover Enemies in Ash when they Hit you Avatar of Fire"]={nil,"Cover Enemies in Ash when they Hit you Avatar of Fire "}c["Adds 270 to 315 Cold Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=270,name="ColdMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=315,name="ColdMax",keywordFlags=0}},nil}c["Adds 270 to 315 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=270,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=315,name="FireMax",keywordFlags=0}},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["350% increased Armour"]={{[1]={flags=0,type="INC",value=350,name="Armour",keywordFlags=0}},nil}c["120% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Adds 5 to 11 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=11,name="PhysicalMax",keywordFlags=0}},nil}c["100% increased Damage with Ignites inflicted on Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=100,name="Damage",keywordFlags=4194304}},nil}c["Enemies Chilled by you take 40% increased Burning Damage"]={{[1]={[1]={type="ActorCondition",var="Chilled",actor="enemy"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="FireDamageTakenOverTime",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["+1 maximum Energy Shield per 5 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=5},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}},nil}c["+500 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=500,name="Accuracy",keywordFlags=0}},nil}c["Adds 56 to 84 Chaos Damage to Spells"]={{[1]={flags=0,type="BASE",value=56,name="ChaosMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=84,name="ChaosMax",keywordFlags=131072}},nil}c["Adds 285 to 330 Cold Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=285,name="ColdMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=330,name="ColdMax",keywordFlags=0}},nil}c["20% increased Damage with Bows"]={{[1]={flags=8192,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Minions gain Unholy Might for 5 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill "}c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=60}},nil}c["Adds 285 to 330 Fire Damage in Main Hand"]={{[1]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=285,name="FireMin",keywordFlags=0},[2]={[1]={type="InSlot",num=1},flags=0,type="BASE",value=330,name="FireMax",keywordFlags=0}},nil}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-5,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Adds 237 to 272 Fire Damage"]={{[1]={flags=0,type="BASE",value=237,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=272,name="FireMax",keywordFlags=0}},nil}c["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},value=true,type="FLAG",keywordFlags=0,name="IgnoreFireResistance",flags=0}},nil}c["+250 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=250,name="Accuracy",keywordFlags=0}},nil}c["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=3,name="LifeOnHit",keywordFlags=0}},nil}c["Adds 10 to 23 Fire Damage"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="FireMax",keywordFlags=0}},nil}c["20% increased Golem Damage for each Golem you have Summoned"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Golem you have Summoned "}c["25% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["8% increased Attack Speed with Staves"]={{[1]={flags=131073,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["10% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Adds 15 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,type="INC",value=30,name="LifeRecoveryRate",keywordFlags=0}},nil}c["25% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=1048576}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,type="BASE",keywordFlags=0,name="PoisonChance",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed "}c["+220 to maximum Life"]={{[1]={flags=0,type="BASE",value=220,name="Life",keywordFlags=0}},nil}c["40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,type="BASE",value=40,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["250% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=250,name="Evasion",keywordFlags=0}},nil}c["10% chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["Adds 4 to 10 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=4,name="FireMin",keywordFlags=65536},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=10,name="FireMax",keywordFlags=65536}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-30,name="Speed",keywordFlags=0}},nil}c["3% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,type="BASE",value=3,name="DamageTaken",keywordFlags=0}}," gained as Mana over 4 seconds when Hit "}c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}}," Enemies to Flee on hit "}c["+5 to Level of Socketed Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="all",value=5},name="GemProperty",keywordFlags=0}},nil}c["+1 to Minimum Endurance Charges"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMin",keywordFlags=0}},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["-40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-40,name="ColdResist",keywordFlags=0}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["+23% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=23,name="LightningResist",keywordFlags=0}},nil}c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill "}c["Attack Skills deal 16% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=16,name="Damage",keywordFlags=65536}},nil}c["+17 to Dexterity and Intelligence"]={{[1]={flags=0,type="BASE",value=17,name="Dex",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="Int",keywordFlags=0}},nil}c["+17 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=17,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="Dex",keywordFlags=0}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+3000 to Armour during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}},nil}c["+1% Chance to Block Attack Damage per 50 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=50},flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}},nil}c["+2% Critical Strike Chance while at maximum Power Charges"]={{[1]={[1]={type="StatThreshold",stat="PowerCharges",thresholdStat="PowerChargesMax"},flags=0,type="BASE",value=2,name="CritChance",keywordFlags=0}},nil}c["+6% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=6,name="ElementalResist",keywordFlags=0}},nil}c["Witch: 0.5% of Maximum Mana Regenerated per second"]={{[1]={[1]={type="Condition",var="ConnectedToWitchStart"},flags=0,type="BASE",value=0.5,name="ManaRegenPercent",keywordFlags=0}},nil}c["Adds 251 to 277 Physical Damage"]={{[1]={flags=0,type="BASE",value=251,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=277,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["+88 to maximum Life"]={{[1]={flags=0,type="BASE",value=88,name="Life",keywordFlags=0}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments "}c["15 Life Regenerated per second for each Uncorrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="NonCorruptedItem"},flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}},nil}c["10% increased total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=10,name="LifeLeechRate",keywordFlags=0}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=13,name="FireResist",keywordFlags=0}},nil}c["+10% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=10,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["+75 to Intelligence"]={{[1]={flags=0,type="BASE",value=75,name="Int",keywordFlags=0}},nil}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage "}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["Spectres have 100% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life "}c["40% increased Damage against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["15% increased Damage against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="INC",value=15,name="Damage",keywordFlags=262144}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperItem"},flags=0,type="BASE",value=5,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["3% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=3,name="LifeRegenPercent",keywordFlags=0}},nil}c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence "}c["+48% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=48,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies "}c["Temporal Chains has 30% reduced Effect on You"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="INC",value=-30,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="ManaOnHit",keywordFlags=0}},nil}c["Adds 20 to 55 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=55,name="PhysicalMax",keywordFlags=0}},nil}c["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=60,name="LifeOnHit",keywordFlags=0}},nil}c["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="LifeOnHit",keywordFlags=0}},nil}c["0.5% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-50,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["50% increased Movement Speed"]={{[1]={flags=0,type="INC",value=50,name="MovementSpeed",keywordFlags=0}},nil}c["Nearby Enemies take 10% increased Elemental Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="ElementalDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances"]={nil,"Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances "}c["Can't use other Rings"]={nil,"Can't use other Rings "}c["+12 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportConcentratedEffect",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["10% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["Adds 9 to 18 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=9,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=18,name="ColdMax",keywordFlags=196608}},nil}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=50,name="AvoidChilled",keywordFlags=0}},nil}c["4% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},nil}c["If you've Attacked Recently, you"]={nil,"If you've Attacked Recently, you "}c["Cannot be Ignited"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=0}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=150,name="CritMultiplier",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}}," to gain a Power Charge 40% chance "}c["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=27,name="CritChance",keywordFlags=0}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=4096}},nil}c["20% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["+22% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=22,name="ElementalResist",keywordFlags=0}},nil}c["65% increased Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="EnergyShield",keywordFlags=0}},nil}c["Adds 53 to 76 Chaos Damage"]={{[1]={flags=0,type="BASE",value=53,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="ChaosMax",keywordFlags=0}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=15,name="ElementalDamage",keywordFlags=0}},nil}c["Adds 2 to 66 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=458752},[2]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",value=66,name="LightningMax",keywordFlags=458752}},nil}c["+25% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=25,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},nil}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=43,name="ManaRegen",keywordFlags=0}},nil}c["Your Lightning Damage can Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanIgnite",flags=0}},nil}c["15% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=15,name="Damage",keywordFlags=512}},nil}c["6% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=0,type="INC",value=6,name="FireDamage",keywordFlags=134217728}}," for each Enemy you have Shocked Recently "}c["Projectiles from Spells cannot Pierce"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotPierce",flags=2}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life "}c["Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells cannot Fork "}c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={type="SlotNumber",num=2},value=1,type="BASE",keywordFlags=0,name="ChainCount",flags=1026}},nil}c["Adds 25 to 90 Lightning Damage to Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=25,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=90,name="LightningMax",keywordFlags=131072}},nil}c["Brand Skills have 10% increased Duration"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=10,name="Duration",keywordFlags=0}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=20,name="AvoidStun",keywordFlags=0}},nil}c["Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells Fork "}c["Left ring slot: Projectiles from Spells cannot Chain"]={{[1]={[1]={type="SlotNumber",num=1},value=true,type="FLAG",keywordFlags=0,name="CannotChain",flags=1026}},nil}c["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,type="LIST",value={skillId="TouchOfGod",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,type="INC",value=22,name="ColdDamage",keywordFlags=0}},nil}c["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,type="LIST",value={skillId="Purity",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["Damage Penetrates 4% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalPenetration",keywordFlags=0}},nil}c["Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Immune to Elemental Ailments while you have Arcane Surge "}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers "}c["Left ring slot: 40% reduced Reflected Elemental Damage taken {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-40,name="ElementalDamageTaken",keywordFlags=0}}," Reflected {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken "}c["+90 to maximum Mana"]={{[1]={flags=0,type="BASE",value=90,name="Mana",keywordFlags=0}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-40,name="ElementalDamageTaken",keywordFlags=0}}," Reflected "}c["50% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds "}c["12% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=12,name="ChaosDamage",keywordFlags=0}},nil}c["20% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["20% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-20,name="LootRarity",keywordFlags=0}},nil}c["Gain 8% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=8,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice "}c["Left ring slot: 40 Mana Regenerated per second"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="BASE",value=40,name="ManaRegen",keywordFlags=0}},nil}c["116% increased Spell Damage"]={{[1]={flags=2,type="INC",value=116,name="Damage",keywordFlags=0}},nil}c["+40 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["Right ring slot: 3% of Energy Shield Regenerated per second"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=3,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Adds 19 to 35 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=19,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=35,name="ColdMax",keywordFlags=131072}},nil}c["Right ring slot: 4% of Energy Shield Regenerated per second"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="BASE",value=4,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["+48% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=48,name="ElementalResist",keywordFlags=0}},nil}c["+333 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=333,name="Accuracy",keywordFlags=0}},nil}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",value=100,name="FireDamage",keywordFlags=786432}},nil}c["20% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["8% increased Attack Damage"]={{[1]={flags=1,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["10% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill "}c["+1 Melee Weapon and Unarmed Range"]={{[1]={flags=0,type="BASE",value=1,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="UnarmedRange",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMinionDamage",level=17},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 12 Lesser Multiple Projectiles"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLesserMultipleProjectiles",level=12},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 12 to 30 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=12,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="FireMax",keywordFlags=65536}},nil}c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill "}c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["+3% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,type="INC",value=100,name="ColdDamage",keywordFlags=0}},nil}c["Minions have +2% Chance to Block Attack Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-6,name="ManaCost",keywordFlags=0}},nil}c["8% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,type="BASE",value=8,name="DamageTaken",keywordFlags=0}}," gained as Mana over 4 seconds when Hit "}c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=55,name="ManaRegen",keywordFlags=0}},nil}c["12 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=12,name="LifeRegen",keywordFlags=0}},nil}c["Cannot Be Stunned while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},value=100,type="BASE",keywordFlags=0,name="AvoidStun",flags=0}},nil}c["Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PointBlank",flags=0}},nil}c["2% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,type="INC",value=2,name="Int",keywordFlags=0}},nil}c["+100 to Maximum Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges "}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"]={nil,"30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies "}c["82% increased Spell Damage"]={{[1]={flags=2,type="INC",value=82,name="Damage",keywordFlags=0}},nil}c["Minions deal 48 to 72 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=48,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=72,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Chaos Damage can Ignite, Chill and Shock"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ChaosCanIgnite",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="ChaosCanChill",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="ChaosCanShock",flags=0}},nil}c["Critical Strikes do not always Freeze"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CritsDontAlwaysFreeze",flags=0}},nil}c["+500 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=500,name="Evasion",keywordFlags=0}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," gained for each Ignited Enemy hit by your Attacks "}c["Adds 10 to 20 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=10,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=20,name="ColdMax",keywordFlags=196608}},nil}c["Socketed Gems are Supported by level 16 Increased Minion Speed"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMinionSpeed",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["5% Chance to Shock"]={{[1]={flags=0,type="BASE",value=5,name="EnemyShockChance",keywordFlags=0}},nil}c["-80 Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles"]={{[1]={flags=0,type="BASE",value=-80,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks 200% increased Armour against Projectiles "}c["Gain Phasing for 4 seconds on Kill"]={nil,"Gain Phasing for 4 seconds on Kill "}c["15% chance to gain a Power Charge on Throwing a Trap {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap "}c["8% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-8,name="EnergyShield",keywordFlags=0}},nil}c["Golems Deal 45% less Damage"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="MORE",value=-45,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["8% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-8,name="Life",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill "}c["20% increased Attack Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["35% increased Physical Damage"]={{[1]={flags=0,type="INC",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["10% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["15% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-15,name="Life",keywordFlags=0}},nil}c["Adds 1 to 100 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=100,name="LightningMax",keywordFlags=65536}},nil}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["+2 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=2,name="LifeOnHit",keywordFlags=0}},nil}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow "}c["80% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,type="INC",value=80,name="Damage",keywordFlags=0}},nil}c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-30,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["+20% to all Elemental Resistances while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=20,name="ElementalResist",keywordFlags=0}},nil}c["Adds 29 to 45 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=29,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=45,name="ColdMax",keywordFlags=65536}},nil}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine"]={{[1]={flags=0,type="BASE",value=8,name="AreaOfEffect",keywordFlags=8192}},"% increased for each 20% chance when Placing Mines to Place an additional Mine "}c["5% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=5,name="ProjectileSpeed",keywordFlags=0}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",keywordFlags=0}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item "}c["Adds 32 to 48 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=32,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=48,name="ColdMax",keywordFlags=65536}},nil}c["50% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-50,name="Damage",keywordFlags=0}},nil}c["Adds 4 to 14 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=14,name="PhysicalMax",keywordFlags=65536}},nil}c["Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-25,name="FlaskEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," Elemental Equilibrium "}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage "}c["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised "}c["+4% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,type="BASE",value=4,name="BlockChanceMax",keywordFlags=0}},nil}c["25% increased Light Radius during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Attack Skills deal 10% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-40,name="FlaskEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," Elemental Equilibrium "}c["Socketed Gems have Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect"]={nil,"Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect "}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium "}c["+100% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White"]={{[1]={flags=0,type="BASE",value=100,name="LightningResist",keywordFlags=0}}," when Socketed with a Blue Gem All Sockets are White "}c["+100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,type="BASE",value=100,name="LightningResist",keywordFlags=0}}," when Socketed with a Blue Gem "}c["50% Chance to avoid being Stunned during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="AvoidStun",keywordFlags=0}},nil}c["200% increased Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EnergyShield",keywordFlags=0}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=13,name="EnergyShield",keywordFlags=0}},nil}c["+23% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=23,name="ChaosResist",keywordFlags=0}},nil}c["320% increased Energy Shield"]={{[1]={flags=0,type="INC",value=320,name="EnergyShield",keywordFlags=0}},nil}c["Lightning Spells have 15% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,type="BASE",value=15,name="PhysicalDamageConvertToLightning",keywordFlags=64}},nil}c["7% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=7,name="MovementSpeed",keywordFlags=0}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=9,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["50% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={type="MultiplierThreshold",actor="enemy",var="Spider's WebStack",threshold=3},flags=0,type="INC",value=50,name="Damage",keywordFlags=786432}},nil}c["+18% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",keywordFlags=0}},nil}c["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you "}c["+25% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=25,name="ChaosResist",keywordFlags=0}},nil}c["31% increased Light Radius"]={{[1]={flags=0,type="INC",value=31,name="LightRadius",keywordFlags=0}},nil}c["8% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-20,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned "}c["25% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=0}},nil}c["1 Life Regenerated per second per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="LifeRegen",keywordFlags=0}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "}c["0.4% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=0.4,name="LifeRegenPercent",keywordFlags=0}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["+10 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",keywordFlags=0}},nil}c["25% increased maximum Mana"]={{[1]={flags=0,type="INC",value=25,name="Mana",keywordFlags=0}},nil}c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "}c["Cold Spells have 10% of Physical Damage Converted to Cold Damage"]={{[1]={flags=2,type="BASE",value=10,name="PhysicalDamageConvertToCold",keywordFlags=32}},nil}c["Adds 22 to 33 Cold Damage"]={{[1]={flags=0,type="BASE",value=22,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="ColdMax",keywordFlags=0}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level Can Consume 4 Support Gems"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level Can Consume 4 Support Gems "}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["13 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=13,name="LifeRegen",keywordFlags=0}},nil}c["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death "}c["1% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={[1]={type="Multiplier",limit=50,var="EnemyKilledRecently",limitTotal=true},flags=0,type="INC",value=1,name="AreaOfEffect",keywordFlags=0}},nil}c["15 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}},nil}c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=33,name="CritChance",keywordFlags=0}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=400,name="Accuracy",keywordFlags=0}},nil}c["5% increased maximum Mana"]={{[1]={flags=0,type="INC",value=5,name="Mana",keywordFlags=0}},nil}c["1% increased Damage per 8 Strength when in Main Hand"]={{[1]={[1]={type="PerStat",stat="Str",div=8},[2]={type="SlotNumber",num=1},flags=0,type="INC",keywordFlags=0,name="Damage",value=1}},nil}c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=18,name="AreaOfEffect",keywordFlags=0}},nil}c["Curse Skills have 15% increased Cast Speed"]={{[1]={[1]={type="SkillType",skillType=32},flags=16,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["5% additional Block Chance while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["Projectiles Pierce an additional Target"]={{[1]={value=1,type="BASE",keywordFlags=0,name="PierceCount",flags=0}},nil}c["50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["625% increased Armour"]={{[1]={flags=0,type="INC",value=625,name="Armour",keywordFlags=0}},nil}c["Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Vulnerability"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage "}c["40% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=40,name="ManaReserved",keywordFlags=0}},nil}c["200% increased Armour"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}},nil}c["Adds 375 to 550 Fire Damage"]={{[1]={flags=0,type="BASE",value=375,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=550,name="FireMax",keywordFlags=0}},nil}c["Socketed Gems Reserve No Mana"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value=-100,type="MORE",keywordFlags=0,name="ManaReserved",flags=0}},nil}c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={flags=0,type="BASE",value=100,name="FireResist",keywordFlags=0}}," when Socketed with a Red Gem "}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy "}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies "}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IgniteCanStack",flags=0}},nil}c["+5 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",keywordFlags=0}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds "}c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit "}c["Cannot Evade Enemy Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotEvade",flags=0}},nil}c["+280 to Armour"]={{[1]={flags=0,type="BASE",value=280,name="Armour",keywordFlags=0}},nil}c["Every 5 seconds, remove Curses and Elemental Ailments from you"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you "}c["+325 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=325,name="Accuracy",keywordFlags=0}},nil}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill "}c["+300 to Armour"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=0}},nil}c["Adds 190 to 220 Physical Damage"]={{[1]={flags=0,type="BASE",value=190,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=220,name="PhysicalMax",keywordFlags=0}},nil}c["10% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=35,name="ManaRegen",keywordFlags=0}},nil}c["6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}},nil}c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=40,name="LightningDamageConvertToCold",keywordFlags=0}},nil}c["4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,type="INC",value=4,name="Damage",keywordFlags=0}},nil}c["0.5% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.5,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["14% increased Totem Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=16384}},nil}c["Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=20,name="LifeGainAsEnergyShield",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Knockback"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportKnockback",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=0}},nil}c["+2 to Level of Socketed Golem Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="golem",value=2},name="GemProperty",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=8192}},nil}c["+18% to Quality {variant:8}{crafted}16% increased Attack Speed"]={{[1]={flags=1,type="BASE",value=18,name="Speed",keywordFlags=0}}," Quality {variant:8}{crafted}16% increased "}c["60% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=60,name="PoisonChance",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["+35% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=35,name="ColdResist",keywordFlags=0}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect "}c["+150 to maximum Life"]={{[1]={flags=0,type="BASE",value=150,name="Life",keywordFlags=0}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill"]={nil,nil}c["15% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=15,name="AuraEffect",keywordFlags=0}},nil}c["5% reduced Damage taken"]={{[1]={flags=0,type="INC",value=-5,name="DamageTaken",keywordFlags=0}},nil}c["+95 to maximum Life"]={{[1]={flags=0,type="BASE",value=95,name="Life",keywordFlags=0}},nil}c["Adds 14 to 28 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=14,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=28,name="FireMax",keywordFlags=65536}},nil}c["100% of Damage Leeched as Life if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,type="BASE",value=100,name="DamageLifeLeech",keywordFlags=0}},nil}c["+5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=5,name="ElementalResist",keywordFlags=0}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["75% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-75,name="SelfChillEffect",keywordFlags=0}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},[2]={limit=2,limitTotal=true,type="Multiplier",var="PoisonStack",actor="enemy"},flags=1,type="BASE",keywordFlags=262144,name="CritChance",value=50}}," to Maim on Hit +0.1% to "}c["+15% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ElementalResist",keywordFlags=0}},nil}c["0.4% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.4,name="DamageLifeLeech",keywordFlags=0}},nil}c["3% reduced Damage taken per Ghost Shroud"]={{[1]={flags=0,type="INC",value=-3,name="DamageTaken",keywordFlags=0}}," per Ghost Shroud "}c["Adds 10 to 20 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=20,name="FireMax",keywordFlags=65536}},nil}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=30,name="PoisonChance",keywordFlags=0}},nil}c["200% increased Critical Strike Chance while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire "}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"]={nil,"Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost "}c["If you've used a Skill Recently, you and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="UsedSkillRecently"},value={mod={value=true,type="FLAG",keywordFlags=0,name="Condition:Tailwind",flags=0}},type="LIST",keywordFlags=0,name="ExtraAura",flags=0}},nil}c["33% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-33,name="CurseEffect",keywordFlags=0}},nil}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,type="LIST",value={skillId="SummonRockGolem",level=12},name="ExtraSkill",keywordFlags=0}},nil}c["15% increased Movement Speed"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Causes Bleeding on Melee Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}c["80% of Block Chance applied to Spells {variant:3}+24% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=80,name="BlockChance",keywordFlags=0}}," applied to s {variant:3}+24% chance to Block Spell Damage "}c["Adds 23 to 40 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=23,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=40,name="FireMax",keywordFlags=196608}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["+14% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=14,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="LightningResist",keywordFlags=0}},nil}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine "}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each time you've Blocked in the past 10 seconds "}c["Adds 35 to 55 Physical Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=55,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 25 to 50 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=50,name="FireMax",keywordFlags=196608}},nil}c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=16,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="LightningResist",keywordFlags=0}},nil}c["+25% additional Block Chance against Projectiles"]={{[1]={flags=0,type="BASE",value=25,name="BlockChance",keywordFlags=0}}," against Projectiles "}c["80% increased Energy Shield"]={{[1]={flags=0,type="INC",value=80,name="EnergyShield",keywordFlags=0}},nil}c["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"]={nil,"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 "}c["10% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=10,name="EnemyShockEffect",keywordFlags=0}},nil}c["Gain a Spirit Charge every second"]={nil,"Gain a Spirit Charge every second "}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "}c["Herald of Thunder has 74% increased Buff Effect"]={{[1]={[1]={type="SkillName",skillName="Herald of Thunder"},flags=0,type="INC",value=74,name="BuffEffect",keywordFlags=0}},nil}c["Ranger: 7% increased Movement Speed"]={{[1]={[1]={type="Condition",var="ConnectedToRangerStart"},flags=0,type="INC",value=7,name="MovementSpeed",keywordFlags=0}},nil}c["1% of Damage against Shocked Enemies Leeched as Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=262144}},nil}c["Adds 1 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=196608}},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,type="LIST",value={mod={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies Taunted by you take 10% increased "}c["60% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=60,name="LootRarity",keywordFlags=0}},nil}c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=2,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Minion per you own "}c["Elemental Hit deals 13% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Elemental Hit"},flags=0,type="INC",value=13,name="Damage",keywordFlags=0}},nil}c["20% less chance to Evade Melee Attacks"]={{[1]={flags=0,type="MORE",value=-20,name="MeleeEvadeChance",keywordFlags=0}},nil}c["Cannot Leech {variant:3,4}Cannot Leech Life"]={nil,"Cannot Leech {variant:3,4}Cannot Leech Life "}c["11% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=11,name="LootRarity",keywordFlags=0}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-20,name="ElementalResist",keywordFlags=0}},nil}c["6% chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["10% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=10,name="EnergyShield",keywordFlags=0}},nil}c["60% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=60,name="Damage",keywordFlags=786432}},nil}c["Minions deal 6% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["100% increased Totem Duration"]={{[1]={flags=0,type="INC",value=100,name="TotemDuration",keywordFlags=0}},nil}c["+85 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=85,name="EnergyShield",keywordFlags=0}},nil}c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="ElementalDamage",keywordFlags=0}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-30,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken "}c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,type="INC",keywordFlags=0,name="Evasion",value=50}},nil}c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=2,type="INC",value=1,name="Damage",keywordFlags=0}},nil}c["Grants level 1 Icestorm Skill"]={{[1]={flags=0,type="LIST",value={skillId="IcestormUniqueStaff12",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["+1 to Level of Socketed Support Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="support",value=1},name="GemProperty",keywordFlags=0}},nil}c["360% increased Physical Damage"]={{[1]={flags=0,type="INC",value=360,name="PhysicalDamage",keywordFlags=0}},nil}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-18,name="EnemyStunThreshold",keywordFlags=0}},nil}c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=45,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["Adds 19 to 35 Fire Damage"]={{[1]={flags=0,type="BASE",value=19,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="FireMax",keywordFlags=0}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=60,name="MineLayingSpeed",keywordFlags=0}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["15% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage "}c["8% chance to Freeze"]={{[1]={flags=0,type="BASE",value=8,name="EnemyFreezeChance",keywordFlags=0}},nil}c["40% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",keywordFlags=0}},nil}c["+2 to Level of Socketed Cold Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="cold",value=2},name="GemProperty",keywordFlags=0}},nil}c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,type="BASE",value=40,name="EnemyShockChance",keywordFlags=0}}," Attackers for 4 seconds on Block "}c["20% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="EnergyShield",keywordFlags=0}},nil}c["Minions deal 51 to 78 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=51,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=78,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Enemies you Curse have Malediction"]={{[1]={value={mod={value=10,type="INC",keywordFlags=0,name="DamageTaken",flags=0}},type="LIST",keywordFlags=0,name="AffectedByCurseMod",flags=0}},nil}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy "}c["Spectres have a Base Duration of 20 seconds"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={key="duration",value=6},name="SkillData",keywordFlags=0}},nil}c["Adds 6 to 80 Lightning Damage"]={{[1]={flags=0,type="BASE",value=6,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=80,name="LightningMax",keywordFlags=0}},nil}c["Golems have 45% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=45,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 30 to 53 Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=53,name="ColdMax",keywordFlags=0}},nil}c["100% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 10 to 90 Lightning Damage"]={{[1]={flags=0,type="BASE",value=10,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="LightningMax",keywordFlags=0}},nil}c["5% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},nil}c["Adds 35 to 60 Cold Damage"]={{[1]={flags=0,type="BASE",value=35,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="ColdMax",keywordFlags=0}},nil}c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"]={nil,"Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block "}c["With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"]={{[1]={[1]={type="Condition",var="HaveGhastlyEyeJewelIn{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=1000,name="Accuracy",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "}c["+4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=65536}},nil}c["+30 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="LifeOnKill",keywordFlags=0}},nil}c["Adds 40 to 60 Cold Damage against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="BASE",value=40,name="ColdMin",keywordFlags=262144},[2]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="BASE",value=60,name="ColdMax",keywordFlags=262144}},nil}c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,type="BASE",value=50,name="EnemyShockChance",keywordFlags=0}}," Chilled Enemies "}c["Temporal Chains has 100% reduced Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMeleePhysicalDamage",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["+20 to All Attributes"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["70% increased Burning Damage"]={{[1]={flags=0,type="INC",value=70,name="FireDamage",keywordFlags=134217728}},nil}c["+2 to Level of Socketed Elemental Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="elemental",value=2},name="GemProperty",keywordFlags=0}},nil}c["6% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=6,name="Damage",keywordFlags=512}},nil}c["Adds 13 to 23 Cold Damage"]={{[1]={flags=0,type="BASE",value=13,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="ColdMax",keywordFlags=0}},nil}c["Grants Summon Harbinger of Directions Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfDirections",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="ColdMax",keywordFlags=0}},nil}c["100% increased Attack Speed"]={{[1]={flags=1,type="INC",value=100,name="Speed",keywordFlags=0}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["Socketed Gems are Supported by level 5 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportColdToFire",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["1% of Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="ManaRegenPercent",keywordFlags=0}},nil}c["+1 to Level of Socketed Cold Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="cold",value=1},name="GemProperty",keywordFlags=0}},nil}c["100% increased maximum Mana"]={{[1]={flags=0,type="INC",value=100,name="Mana",keywordFlags=0}},nil}c["160% increased Spell Damage"]={{[1]={flags=2,type="INC",value=160,name="Damage",keywordFlags=0}},nil}c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["+0.3% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=0.3,name="CritChance",keywordFlags=0}},nil}c["30% increased Burning Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=134217728}},nil}c["Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",keywordFlags=65536,name="LightningMin",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Int",div=10},flags=0,type="BASE",keywordFlags=65536,name="LightningMax",value=10}},nil}c["Adds 240 to 325 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=240,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=325,name="FireMax",keywordFlags=131072}},nil}c["20% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["+300 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=300,name="IntRequirement",keywordFlags=0}},nil}c["60% increased Physical Damage"]={{[1]={flags=0,type="INC",value=60,name="PhysicalDamage",keywordFlags=0}},nil}c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "}c["Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="Ignited"},[2]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=15}},"Immune and Chill Damage "}c["100% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredSummonSpider",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["16% increased Intelligence"]={{[1]={flags=0,type="INC",value=16,name="Int",keywordFlags=0}},nil}c["100% increased Fire Damage"]={{[1]={flags=0,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}c["Grants level 15 Vengeance Skill"]={{[1]={flags=0,type="LIST",value={skillId="Vengeance",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["Adds 250 to 350 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=250,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=350,name="FireMax",keywordFlags=131072}},nil}c["15% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["You have Vaal Pact if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},value="Vaal Pact",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Adds 185 to 205 Physical Damage"]={{[1]={flags=0,type="BASE",value=185,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=205,name="PhysicalMax",keywordFlags=0}},nil}c["Your Curses can apply to Hexproof Enemies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CursesIgnoreHexproof",flags=0}},nil}c["+3% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,type="BASE",value=3,name="BlockChanceMax",keywordFlags=0}},nil}c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to gain a Power Charge if you Knock an Enemy Back with "}c["Adds 10 to 20 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=20,name="ColdMax",keywordFlags=65536}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "}c["Chaos Damage does not bypass Energy Shield"]={nil,"Chaos Damage does not bypass Energy Shield "}c["+13% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=13,name="ChaosResist",keywordFlags=0}},nil}c["+3 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=3,name="ManaOnHit",keywordFlags=0}},nil}c["+3% to all maximum Resistances"]={{[1]={flags=0,type="BASE",value=3,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="ChaosResistMax",keywordFlags=0}},nil}c["275% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=275,name="Damage",keywordFlags=0}},nil}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,type="BASE",value=2.5,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["30% increased Attack Speed"]={{[1]={flags=1,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["1% of Damage is taken from Mana before Life per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=1,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["15% increased Strength"]={{[1]={flags=0,type="INC",value=15,name="Str",keywordFlags=0}},nil}c["6% increased Fire Damage"]={{[1]={flags=0,type="INC",value=6,name="FireDamage",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="Unknown",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 16 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrap",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["Gain 1 Rage when you Kill an Enemy"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:CanGainRage",flags=0},[2]={[1]={type="Condition",var="CanGainRage"},value=1,type="DUMMY",keywordFlags=0,name="Dummy",flags=0}},nil}c["Socketed Gems are Supported by level 8 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrap",level=8},name="ExtraSupport",keywordFlags=0}},nil}c["Minions Regenerate 2% Life per Second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,type="INC",value=18,name="Duration",keywordFlags=256}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,type="BASE",value=70,name="ColdMin",keywordFlags=0},[2]={[1]={type="Condition",var="AffectedByHatred"},flags=0,type="BASE",value=104,name="ColdMax",keywordFlags=0}},nil}c["200% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding "}c["Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,type="BASE",value=6,name="PierceCount",keywordFlags=0}},nil}c["3% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["12% increased Minion Damage per Spectre you own"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=12,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," Minion per you own "}c["2% increased Minion Duration per Zombie you own 12% increased Minion Damage per Spectre you own"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={[1]={type="SkillType",skillType=21},flags=0,type="INC",value=2,name="Duration",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," per you own 12% increased Minion Damage per Spectre you own "}c["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={[1]={type="SkillType",skillType=21},flags=0,type="INC",value=2,name="Duration",keywordFlags=0}},name="MinionModifier",keywordFlags=0}}," per you own "}c["15% reduced Accuracy Rating"]={{[1]={flags=0,type="INC",value=-15,name="Accuracy",keywordFlags=0}},nil}c["Nearby Enemies have -20% to Cold Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=-20,name="ColdResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Adds 185 to 225 Physical Damage"]={{[1]={flags=0,type="BASE",value=185,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=225,name="PhysicalMax",keywordFlags=0}},nil}c["Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={nil,"Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace "}c["Nearby Enemies have 18% increased Effect of Curses on them"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=18,name="CurseEffectOnSelf",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Grants Summon Harbinger of Time Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfTime",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["+15% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["120% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,type="INC",value=120,name="Damage",keywordFlags=0}},nil}c["70% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=70,name="LootRarity",keywordFlags=0}},nil}c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="Accuracy",keywordFlags=0}},nil}c["4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["Adds 13 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=196608},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=16,name="PhysicalMax",keywordFlags=196608}},nil}c["+1 to Maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={flags=2,type="BASE",value=10,name="Damage",keywordFlags=0}}," to gain a Power Charge when you Block "}c["0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=0.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 10 seconds on Kill "}c["175% increased Energy Shield"]={{[1]={flags=0,type="INC",value=175,name="EnergyShield",keywordFlags=0}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["40% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=1,name="PhysicalDamageReductionWhenHit",keywordFlags=0}},nil}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=4,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["Celestial Footprints"]={nil,"Celestial Footprints "}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=2,type="BASE",value=25,name="PhysicalDamage",keywordFlags=0}}," to gain a Siphoning Charge when you use a Skill Adds 14 to 16 to Attacks and s "}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill "}c["Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrapAndMineDamage",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["13% increased Area Damage"]={{[1]={flags=512,type="INC",value=13,name="Damage",keywordFlags=0}},nil}c["Temporal Chains has 50% reduced Effect on You"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="INC",value=-50,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["Skills Chain +1 times"]={{[1]={flags=0,type="BASE",value=1,name="ChainCountMax",keywordFlags=0}},nil}c["4% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}},nil}c["25% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=25,name="ChaosDamage",keywordFlags=0}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="RareOrUnique"},flags=1,type="INC",value=22,name="Speed",keywordFlags=0}},nil}c["also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"also grant an equal chance to gain an Endurance Charge on Kill "}c["28% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=28,name="Damage",keywordFlags=65536}},nil}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["Minions have 15% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Gain 24% of Physical Damage as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,type="BASE",value=24,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets "}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=0},[2]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="AvoidChill",flags=0},[3]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="AvoidCurse",flags=0},[4]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="AvoidStun",flags=0}},nil}c["20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="MORE",value=20,name="Damage",keywordFlags=0}},nil}c["+75 to all Attributes"]={{[1]={flags=0,type="BASE",value=75,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=75,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=75,name="Int",keywordFlags=0}},nil}c["each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block "}c["Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=65536},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=65536}},nil}c["Adds 15 to 140 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=15,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=140,name="LightningMax",keywordFlags=131072}},nil}c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=5,name="LightningResistMax",keywordFlags=0}},nil}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=50,name="CooldownRecovery",keywordFlags=4}},nil}c["+1 to Level of Socketed Lightning Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="lightning",value=1},name="GemProperty",keywordFlags=0}},nil}c["18% Chance to Block"]={{[1]={flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-40,name="ChaosDamageTaken",keywordFlags=0}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level "}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item "}c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=40,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=196608},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,type="BASE",value=16,name="PhysicalMax",keywordFlags=196608}},nil}c["Projectiles Pierce while Phasing {variant:2}Projectiles Pierce 5 additional Targets while you have Phasing"]={nil,"Projectiles Pierce while Phasing {variant:2}Projectiles Pierce 5 additional Targets while you have Phasing "}c["Projectiles gain 18% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={type="PerStat",stat="Chain"},flags=1024,type="BASE",value=18,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["Adds 25 to 36 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="FireMax",keywordFlags=0}},nil}c["You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["Attacks Chain an additional time when in Main Hand"]={{[1]={[1]={type="SlotNumber",num=1},value=1,type="BASE",keywordFlags=0,name="ChainCountMax",flags=1}},nil}c["50% increased Area of Effect"]={{[1]={flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=0}},nil}c["210% increased Armour"]={{[1]={flags=0,type="INC",value=210,name="Armour",keywordFlags=0}},nil}c["100 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=100,name="LifeRegen",keywordFlags=0}},nil}c["10% chance of Arrows Piercing {variant:2}Arrows Pierce an additional Target"]={{}," of Arrows Piercing {variant:2}Arrows Pierce an additional Target "}c["You have Crimson Dance if you have dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},value="Crimson Dance",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["If you've Impaled an Enemy Recently, you"]={nil,"If you've Impaled an Enemy Recently, you "}c["+2 to Melee Weapon and Unarmed range"]={{[1]={flags=0,type="BASE",value=2,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=2,name="UnarmedRange",keywordFlags=0}},nil}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-20,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["350% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=350,name="Evasion",keywordFlags=0}},nil}c["300% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+210 to maximum Life"]={{[1]={flags=0,type="BASE",value=210,name="Life",keywordFlags=0}},nil}c["30% increased Trap Trigger Radius {variant:2}60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=4096}}," Trigger {variant:2}60% increased Trap Trigger Area of Effect "}c["35% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=35,name="Accuracy",keywordFlags=0}},nil}c["Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=40,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=100,name="ColdMax",keywordFlags=65536}},nil}c["20% increased Movement Speed when on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=15,name="DamageTaken",keywordFlags=0}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=30,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Adds 1 to 325 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=325,name="LightningMax",keywordFlags=0}},nil}c["Gain 18 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={type="MultiplierThreshold",threshold=1,var="Spider's WebStack",actor="enemy"},flags=0,type="BASE",value=18,name="EnergyShieldOnHit",keywordFlags=0}},nil}c["+50% to all Elemental Resistances during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="ElementalResist",keywordFlags=0}},nil}c["160% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEvasion",keywordFlags=0}},nil}c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},flags=0,type="BASE",value=60,name="PoisonChance",keywordFlags=262144}},nil}c["Regenerate 8 Life over 1 second for each Spell you Cast"]={nil,"Regenerate 8 Life over 1 second for each Spell you Cast "}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Spider"},value={mod={value=1,type="BASE",keywordFlags=0,name="Multiplier:SpiderWebApplyStackMax",flags=0}},type="LIST",keywordFlags=0,name="ExtraSkillMod",flags=0}},nil}c["+28% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=28,name="LightningResist",keywordFlags=0}},nil}c["+30 to Intelligence"]={{[1]={flags=0,type="BASE",value=30,name="Int",keywordFlags=0}},nil}c["2% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Lose 7% of maximum Mana per Second"]={{[1]={[1]={type="PerStat",stat="Mana"},flags=0,type="BASE",value=0.07,name="ManaDegen",keywordFlags=0}},nil}c["12% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=12,name="MineLayingSpeed",keywordFlags=0}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,type="BASE",value=55,name="Mana",keywordFlags=0}},nil}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect "}c["Lose 40 Mana per Second"]={{[1]={flags=0,type="BASE",value=40,name="ManaDegen",keywordFlags=0}},nil}c["2 additional Arrows"]={{[1]={flags=1,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["10% chance to Dodge Spell Hits"]={{[1]={flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningResist",keywordFlags=0}},nil}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground "}c["+15 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="LifeOnKill",keywordFlags=0}},nil}c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["13% chance to Ignite"]={{[1]={flags=0,type="BASE",value=13,name="EnemyIgniteChance",keywordFlags=0}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=55,name="FireResist",keywordFlags=0}},nil}c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="INC",value=40,name="Damage",keywordFlags=262144}},nil}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Attack Skills deal 10% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["+100 to Maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You "}c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=12,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=12,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=12,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Minions have 4% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=4,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["28% increased Attack Speed"]={{[1]={flags=1,type="INC",value=28,name="Speed",keywordFlags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry "}c["2 Additional Arrows"]={{[1]={flags=1,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}c["0.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.8,name="LifeRegenPercent",keywordFlags=0}},nil}c["Adds 1 to 80 Chaos Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=80,name="ChaosMax",keywordFlags=65536}},nil}c["25% increased Defences"]={{[1]={flags=0,type="INC",value=25,name="Defences",keywordFlags=0}},nil}c["0.2% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=0.2,name="LifeRegenPercent",keywordFlags=0}},nil}c["+160% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=160,name="CritMultiplier",keywordFlags=0}},nil}c["+2 seconds to Avian's Flight Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Avian"},flags=0,type="BASE",value=2,name="SecondaryDuration",keywordFlags=0}},nil}c["40% increased Movement Speed"]={{[1]={flags=0,type="INC",value=40,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 28 to 45 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=28,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=45,name="ColdMax",keywordFlags=131072}},nil}c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={type="SkillType",skillType=63},flags=0,type="LIST",value={key="manaCostForced",value=45},name="SkillData",keywordFlags=0}},nil}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground "}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["Adds 30 to 50 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=30,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=131072}},nil}c["100% reduced Conductivity Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Conductivity"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",varList={[1]="ElderItem",[2]="ShaperItem"}},flags=0,type="BASE",value=1,name="SiphoningChargesMax",keywordFlags=0}},nil}c["Adds 18 to 28 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=18,name="ChaosMin",keywordFlags=196608},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=28,name="ChaosMax",keywordFlags=196608}},nil}c["6% chance to Dodge Attacks while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["+50 to Total Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=50,name="ManaCost",keywordFlags=0}},nil}c["Adds 55 to 130 Physical Damage"]={{[1]={flags=0,type="BASE",value=55,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=130,name="PhysicalMax",keywordFlags=0}},nil}c["14% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy "}c["20% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-20,name="LightRadius",keywordFlags=0}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit "}c["55% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=55,name="ArmourAndEvasion",keywordFlags=0}},nil}c["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEvasion",keywordFlags=0}},nil}c["13% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=13,name="LootQuantity",keywordFlags=0}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to you and Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.2,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAuraEffect",keywordFlags=0}},nil}c["-25% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-25,name="ElementalResist",keywordFlags=0}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["+8 to Dexterity"]={{[1]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0}},nil}c["100% increased Rarity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=100,name="LootRarity",keywordFlags=0}},nil}c["40% increased Energy Shield from Equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=40,name="EnergyShield",keywordFlags=0}},nil}c["Adds 70 to 350 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=350,name="PhysicalMax",keywordFlags=0}},nil}c["2% of Life Regenerated Per Second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={nil,"Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage "}c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 84 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=84,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 75 to 130 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=130,name="PhysicalMax",keywordFlags=0}},nil}c["270% increased Physical Damage"]={{[1]={flags=0,type="INC",value=270,name="PhysicalDamage",keywordFlags=0}},nil}c["25% chance to gain a Power Charge on Critical Strike 6% reduced Mana Reserved"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=25,name="ManaReserved",keywordFlags=0}}," to gain a Power Charge 6% reduced "}c["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["4% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 50 Cold Damage to Melee Attackers "}c["2% of Energy Shield regenerated per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=2,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["1.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["100% increased Mine Arming Speed"]={{}," Arming Speed "}c["35% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=35,name="MovementSpeed",keywordFlags=0}},nil}c["4% additional Physical Damage Reduction while Channelling"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}}," while Channelling "}c["70% increased Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="EnergyShield",keywordFlags=0}},nil}c["18% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="PowerChargesDuration",keywordFlags=0}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire "}c["6% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Adds 53 to 110 Physical Damage"]={{[1]={flags=0,type="BASE",value=53,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=110,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 20 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportSpellTotem",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["40% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=40,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["Poison Cursed Enemies on hit"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Cursed"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=0}},nil}c["Adds 98 to 140 Physical Damage"]={{[1]={flags=0,type="BASE",value=98,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=140,name="PhysicalMax",keywordFlags=0}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=25,name="LifeOnHit",keywordFlags=0}},nil}c["Has 1 Abyssal Socket"]={{[1]={flags=0,type="BASE",value=1,name="AbyssalSocketCount",keywordFlags=0}},nil}c["40% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ColdDamage",keywordFlags=0}},nil}c["Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike"]={nil,"Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike "}c["25% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=25,name="BlockChance",keywordFlags=0}}," applied to s "}c["7% increased Intelligence"]={{[1]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements "}c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges "}c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to "}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["8% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=8,name="FlaskDuration",keywordFlags=0}},nil}c["400% increased Energy Shield Recharge Rate during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=400,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["10% chance to Dodge Spell Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["You and nearby allies have 10% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FirePenetration",keywordFlags=0}},nil}c["Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving "}c["Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,type="BASE",value=15,name="FirePenetration",keywordFlags=0}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth "}c["Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15 "}c["Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["45% chance to avoid Bleeding"]={{[1]={flags=0,type="BASE",value=45,name="AvoidBleed",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 30 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMulticast",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["+50 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=50,name="Evasion",keywordFlags=0}},nil}c["Socketed Gems fire an additional Projectile"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value={mod={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=0}},type="LIST",keywordFlags=0,name="ExtraSkillMod",flags=0}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=16,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,type="INC",value=30,name="MovementSpeed",keywordFlags=4096}}," for 9 seconds on Throwing a {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap "}c["Projectiles deal 10% more Damage for each remaining Chain"]={{[1]={[1]={type="PerStat",stat="ChainRemaining"},flags=1024,type="MORE",value=10,name="Damage",keywordFlags=0}},nil}c["Adds 35 to 130 Lightning Damage to Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=35,name="LightningMin",keywordFlags=65536},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=130,name="LightningMax",keywordFlags=65536}},nil}c["You have Phasing while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="ActorCondition",actor="enemy",var="LowLife"},flags=0,type="INC",keywordFlags=262144,name="Damage",value=6}},nil}c["20% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["+6% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=6,name="SpellBlockChance",keywordFlags=0}},nil}c["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=-3,name="Speed",keywordFlags=0}},nil}c["Your Counterattacks deal Double Damage"]={nil,"Your Counterattacks deal Double Damage "}c["20% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers "}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellDodgeChance",keywordFlags=0}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["8% chance to Ignite"]={{[1]={flags=0,type="BASE",value=8,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Socketed Golem Skills have 5% Life Regenerated per second"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="golem"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="LifeRegenPercent",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped "}c["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy "}c["65% increased Armour"]={{[1]={flags=0,type="INC",value=65,name="Armour",keywordFlags=0}},nil}c["Warcries Knock Enemies Back in an Area"]={nil,"Warcries Knock Enemies Back in an Area "}c["+26% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=26,name="LightningResist",keywordFlags=0}},nil}c["10% increased Totem Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=16384}},nil}c["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["25% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["Chaos Damage does not bypass Energy Shield during effect"]={nil,"Chaos Damage does not bypass Energy Shield during effect "}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}},nil}c["4% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=4,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,type="BASE",value=40,name="PhysicalDamage",keywordFlags=0}}," taken reflected to Attacker "}c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=9,name="PhysicalMax",keywordFlags=65536}},nil}c["+175 to maximum Life"]={{[1]={flags=0,type="BASE",value=175,name="Life",keywordFlags=0}},nil}c["+50% Chance to Block Attack Damage for 2 seconds every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,type="BASE",value=50,name="BlockChance",keywordFlags=0}},nil}c["Cannot Be Slowed to Below Base Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=0}},nil}c["Adds 15 to 30 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=15,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="ColdMax",keywordFlags=65536}},nil}c["50% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ManaOnHit",keywordFlags=0}},nil}c["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality "}c["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back "}c["50% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="SupportUniqueMjolnerLightningSpellsCastOnHit",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["10% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=10,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["+5 to Intelligence"]={{[1]={flags=0,type="BASE",value=5,name="Int",keywordFlags=0}},nil}c["Recover 1% of Maximum Life on Kill"]={nil,"Recover 1% of Maximum Life on Kill "}c["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding "}c["20% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["Gain a Void Charge every 0.5 seconds Elder Item"]={nil,"Gain a Void Charge every 0.5 seconds Elder Item "}c["20% increased Movement Speed"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning "}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["Adds 2 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=196608}},nil}c["120% increased Armour"]={{[1]={flags=0,type="INC",value=120,name="Armour",keywordFlags=0}},nil}c["Adds 30 to 45 Cold Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=30,name="ColdMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=45,name="ColdMax",keywordFlags=196608}},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=35,name="StunRecovery",keywordFlags=0}},nil}c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,type="LIST",value={skillId="LightningResistAura",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,type="LIST",value={skillId="FireResistAura",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["15% reduced Mine Laying Speed"]={{[1]={flags=0,type="INC",value=-15,name="MineLayingSpeed",keywordFlags=0}},nil}c["165% increased Armour"]={{[1]={flags=0,type="INC",value=165,name="Armour",keywordFlags=0}},nil}c["Cannot be Stunned if you have at least 10 Crab Barriers"]={{[1]={[1]={type="StatThreshold",stat="CrabBarriers",threshold=10},flags=0,type="BASE",value=100,name="AvoidStun",keywordFlags=0}},nil}c["25% increased Movement Speed"]={{[1]={flags=0,type="INC",value=25,name="MovementSpeed",keywordFlags=0}},nil}c["When hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["0.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["300% increased Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EnergyShield",keywordFlags=0}},nil}c["Gain 18% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=18,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["24% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=24,name="Evasion",keywordFlags=0}},nil}c["+25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you "}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding "}c["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use "}c["20% of Life Regenerated per Second while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,type="BASE",value=20,name="LifeRegenPercent",keywordFlags=0}},nil}c["30% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=30,name="ManaLeechRate",keywordFlags=0}},nil}c["165% increased Energy Shield"]={{[1]={flags=0,type="INC",value=165,name="EnergyShield",keywordFlags=0}},nil}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={type="MultiplierThreshold",actor="enemy",var="Spider's WebStack",threshold=3},flags=0,type="INC",value=60,name="Damage",keywordFlags=786432}},nil}c["20% increased Arrow Speed"]={{[1]={flags=8192,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect "}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Critical Strike Chance is increased by Lightning Resistance"]={{[1]={[1]={type="PerStat",stat="LightningResist",div=1},value=1,type="INC",keywordFlags=0,name="CritChance",flags=0}},nil}c["40% chance to Avoid being Stunned while Channelling Channelling Skills deal 30% increased Damage Channelling Skills have -3 to Total Mana Cost"]={{[1]={flags=0,type="BASE",value=40,name="AvoidStun",keywordFlags=0}}," while Channelling Channelling Skills deal 30% increased Damage Channelling Skills have -3 to Total Mana Cost "}c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+15 to all Attributes"]={{[1]={flags=0,type="BASE",value=15,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=15,name="Int",keywordFlags=0}},nil}c["5% increased Projectile Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1024,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use "}c["10% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["Cannot be Stunned while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},value=100,type="BASE",keywordFlags=0,name="AvoidStun",flags=0}},nil}c["10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 10% chance to gain a Power Charge on Kill "}c["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["45% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=200},flags=1025,type="INC",value=45,name="Damage",keywordFlags=0}},nil}c["+11 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=11,name="EnergyShield",keywordFlags=0}},nil}c["+470 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=470,name="Accuracy",keywordFlags=0}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["+10 to all Attributes"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["+14% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",keywordFlags=0}},nil}c["50% of Block Chance applied to Spells {variant:2}+15% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=50,name="BlockChance",keywordFlags=0}}," applied to s {variant:2}+15% chance to Block Spell Damage "}c["+1 to maximum Energy Shield per 6 Evasion Rating on Body Armour"]={{[1]={[1]={type="PerStat",stat="EvasionOnBody Armour",div=6},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}},nil}c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=100,name="ManaRegen",keywordFlags=0}},nil}c["50% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=50,name="BlockChance",keywordFlags=0}}," applied to s "}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,type="LIST",value={skillId="MerveilWarp",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["and your Totems to each gain an Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge "}c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell "}c["15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7.5,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["50% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["4% increased maximum Mana"]={{[1]={flags=0,type="INC",value=4,name="Mana",keywordFlags=0}},nil}c["5% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=5,name="EnergyShield",keywordFlags=0}},nil}c["Adds 115 to 205 Physical Damage"]={{[1]={flags=0,type="BASE",value=115,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=205,name="PhysicalMax",keywordFlags=0}},nil}c["Minions have 15% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Nearby Allies gain 2% of Life Regenerated per Second"]={{[1]={flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Adds 51 to 59 Chaos Damage"]={{[1]={flags=0,type="BASE",value=51,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=59,name="ChaosMax",keywordFlags=0}},nil}c["Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Gain Soul Eater for 10 seconds when you use a Vaal Skill "}c["+8% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=8,name="LightningResist",keywordFlags=0}},nil}c["Items and Gems have 50% increased Attribute Requirements"]={{[1]={flags=0,type="INC",value=50,name="GlobalAttributeRequirements",keywordFlags=0}},nil}c["35% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=35,name="ColdDamage",keywordFlags=65536}},nil}c["20% increased Bleeding Duration"]={{[1]={flags=0,type="INC",value=20,name="EnemyBleedDuration",keywordFlags=0}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=1048576,type="BASE",value=7,name="CritChance",keywordFlags=0}},nil}c["10% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit "}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="LifeRecoveryRate",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="ManaRecoveryRate",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="EnergyShieldRecoveryRate",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased "}c["+100 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="ManaOnKill",keywordFlags=0}},nil}c["Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Elemental Weakness on Blocking a Spell "}c["10% increased Movement Speed if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["+18% to Quality"]={{}," Quality "}c["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=99,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Adds 3 to 52 Lightning Damage"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=52,name="LightningMax",keywordFlags=0}},nil}c["Adds 23 to 35 Cold Damage"]={{[1]={flags=0,type="BASE",value=23,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ColdMax",keywordFlags=0}},nil}c["36% increased Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=16,type="INC",value=36,name="Speed",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedColdDamage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["140% increased Armour"]={{[1]={flags=0,type="INC",value=140,name="Armour",keywordFlags=0}},nil}c["Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=-10,name="GlobalAttributeRequirements",keywordFlags=0}},nil}c["You have Phasing while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},value=true,type="FLAG",keywordFlags=0,name="Condition:Phasing",flags=0}},nil}c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["12% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit "}c["20% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=20,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=20,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["Minions have 7% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=7,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["22% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=22,name="ChaosDamage",keywordFlags=0}},nil}c["Golems have 90% increased Movement Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=90,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=40,name="AreaOfEffect",keywordFlags=0}},nil}c["Adds 450 to 575 Fire Damage"]={{[1]={flags=0,type="BASE",value=450,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=575,name="FireMax",keywordFlags=0}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,type="INC",value=25,name="ColdDamage",keywordFlags=0}},nil}c["+100% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=100,name="FireResist",keywordFlags=0}},nil}c["100% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=300},flags=0,type="INC",value=100,name="Damage",keywordFlags=1048576}},nil}c["Adds 1 to 4 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=1,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=4,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=8192}},nil}c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={flags=0,type="INC",value=-25,name="Damage",keywordFlags=0}}," Size Golems Deal 45% less "}c["+22% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=22,name="LightningResist",keywordFlags=0}},nil}c["Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% "}c["Stun Threshold is based on 500% of your Mana instead of Life"]={nil,"Stun Threshold is based on 500% of your Mana instead of Life "}c["+25% chance to be Poisoned +3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=25,name="FireResistMax",keywordFlags=0},[2]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=25,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=25,name="LightningResistMax",keywordFlags=0},[4]={[1]={type="Condition",var="Poisoned"},flags=0,type="BASE",value=25,name="ChaosResistMax",keywordFlags=0}}," to be Poisoned +3% to "}c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HavePhysicalGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveLightningGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[3]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveColdGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[4]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveFireGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[5]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={[1]={type="ActorCondition",var="HaveChaosGolem",actor="parent"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["4% increased Cast Speed with Chaos Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=128}},nil}c["Socketed Gems are Supported by Level 10 Lesser Poison"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLesserPoison",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky "}c["10% reduced Character Size"]={{}," Character Size "}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+20% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=20,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Cast When Stunned"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportCastOnStunned",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=100,name="ManaCost",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedChaosDamage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["+425 to Armour"]={{[1]={flags=0,type="BASE",value=425,name="Armour",keywordFlags=0}},nil}c["28% increased Fire Damage"]={{[1]={flags=0,type="INC",value=28,name="FireDamage",keywordFlags=0}},nil}c["35% increased Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["10% increased Effect of Flasks on you"]={{[1]={flags=0,type="INC",value=10,name="FlaskEffect",keywordFlags=0}},nil}c["+16% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=16,name="ElementalResist",keywordFlags=0}},nil}c["-5% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="BASE",value=-5,name="ElementalResist",keywordFlags=0},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="BASE",value=-5,name="ChaosResist",keywordFlags=0}},nil}c["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={nil,"You cannot Recharge or Regenerate Energy Shield "}c["Non-critical strikes deal 40% Damage"]={{[1]={[1]={type="Condition",neg=true,var="CriticalStrike"},flags=4,type="MORE",value=-60,name="Damage",keywordFlags=0}},nil}c["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=240,name="CritMultiplier",keywordFlags=0}},nil}c["12 Mana Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,type="BASE",value=12,name="ManaRegen",keywordFlags=0}},nil}c["+120 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=120,name="Accuracy",keywordFlags=0}},nil}c["50% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-50,name="Speed",keywordFlags=0}},nil}c["3% increased Poison Duration per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=3,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["10% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-10,name="ManaReserved",keywordFlags=0}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=10,name="Damage",keywordFlags=1048576}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["Totems are Immune to Fire Damage Totems have 50% of your Armour"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour "}c["During Flask Effect, Damage Penetrates 13% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="LightningPenetration",value=13},[2]={[1]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="ColdPenetration",value=13},[3]={[1]={type="StatThreshold",stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=13}},nil}c["25% increased Poison Duration"]={{[1]={flags=0,type="INC",value=25,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons "}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=40,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=100,name="ColdMax",keywordFlags=65536}},"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["35% increased Damage over Time"]={{[1]={flags=8,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range"]={nil,"Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range "}c["Adds 18 to 26 Chaos Damage"]={{[1]={flags=0,type="BASE",value=18,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=26,name="ChaosMax",keywordFlags=0}},nil}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item "}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy "}c["15% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Adds 13 to 47 Lightning Damage"]={{[1]={flags=0,type="BASE",value=13,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=47,name="LightningMax",keywordFlags=0}},nil}c["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a Flask "}c["Adds 24 to 36 Cold Damage"]={{[1]={flags=0,type="BASE",value=24,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="ColdMax",keywordFlags=0}},nil}c["Adds 24 to 36 Fire Damage"]={{[1]={flags=0,type="BASE",value=24,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=36,name="FireMax",keywordFlags=0}},nil}c["Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="BASE",value=10,name="FirePenetration",keywordFlags=262144}},nil}c["Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["10% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["+150 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=150,name="Accuracy",keywordFlags=0}},nil}c["15% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=15,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="BASE",value=20,name="ColdPenetration",keywordFlags=262144}},"Blind Chilled Enemies on Hit "}c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on 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["75% increased Charges used"]={{[1]={flags=0,type="INC",value=75,name="FlaskChargesUsed",keywordFlags=0}},nil}c["30% increased Cold Damage"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=0}},nil}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 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage "}c["Socketed Gems are Supported by level 10 Remote Mine"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportRemoteMine",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Trigger level 20 Storm Cascade when you Attack"]={{[1]={flags=0,type="LIST",value={skillId="StormCascadeTriggered",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={type="PerStat",stat="Chain"},flags=1024,type="BASE",value=20,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"]={nil,"Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times "}c["+2 to Maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=2,name="ActiveZombieLimit",keywordFlags=0}},nil}c["15% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={type="MultiplierThreshold",var="MagicItem",threshold=1},flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["260% increased Physical Damage"]={{[1]={flags=0,type="INC",value=260,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Accuracy Rating with Bows"]={{[1]={flags=8192,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Increased Minion Life"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportMinionLife",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["+450 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="BASE",value=450,name="Accuracy",keywordFlags=0}},nil}c["20% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=20,name="Damage",keywordFlags=512}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Maimed"},flags=1,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=262144}},nil}c["Gain 24% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,type="BASE",value=24,name="PhysicalDamage",keywordFlags=0}}," as Extra Damage of a random Element "}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="INC",value=-10,name="ElementalDamageTaken",keywordFlags=0}}," Reflected Damage Penetrates 5% Elemental Resistance "}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsFire",keywordFlags=0}},nil}c["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsLightning",keywordFlags=0}},nil}c["50% increased Maximum Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="EnergyShield",keywordFlags=0}},nil}c["50% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=50,name="StunRecovery",keywordFlags=0}},nil}c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsFire",keywordFlags=0}},nil}c["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill "}c["20% chance to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill "}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=16}},nil}c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["70% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=2097152}},nil}c["24% increased maximum Life"]={{[1]={flags=0,type="INC",value=24,name="Life",keywordFlags=0}},nil}c["20% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-40,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-40,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=60,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=60,name="LightningDamage",keywordFlags=0}},nil}c["Adds 90 to 240 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=90,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=240,name="LightningMax",keywordFlags=131072}},nil}c["60% increased Cold Damage"]={{[1]={flags=0,type="INC",value=60,name="ColdDamage",keywordFlags=0}},nil}c["Projectiles Pierce 2 additional Targets"]={{[1]={flags=0,type="BASE",value=2,name="PierceCount",keywordFlags=0}},nil}c["20% of Block Chance applied to Spells"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," applied to s "}c["+2 to maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=2,name="ActiveZombieLimit",keywordFlags=0}},nil}c["2% of Fire Damage Leeched as Life while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=2,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["Take 100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"]={nil,"100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited "}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy "}c["Cannot be Chilled"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidChill",flags=0}},nil}c["Damage penetrates 25% Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,type="BASE",value=25,name="FirePenetration",keywordFlags=0}},nil}c["70% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["15% increased Movement Speed while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=10,name="Life",keywordFlags=0}}," to gain Onslaught for 10 seconds on Kill Recover 1% of on Kill "}c["12% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=12,name="Damage",keywordFlags=512}},nil}c["180% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=180,name="Evasion",keywordFlags=0}},nil}c["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant "}c["10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill "}c["+2% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=2,name="BlockChance",keywordFlags=0}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire "}c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill "}c["4% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=4,name="PhysicalDamage",keywordFlags=0}},nil}c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill "}c["+50 to Strength"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=0}},nil}c["+25% chance to be Ignited 125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=25,name="Life",keywordFlags=0}}," to be Ignited 125 Regenerated per second "}c["50% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShield",keywordFlags=0}},nil}c["20% increased Burning Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=134217728}},nil}c["+325 to Armour"]={{[1]={flags=0,type="BASE",value=325,name="Armour",keywordFlags=0}},nil}c["2% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["23% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=23,name="CritChance",keywordFlags=0}},nil}c["+140 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=140,name="EnergyShield",keywordFlags=0}},nil}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8% of Non-Chaos Damage as extra Chaos Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,type="BASE",keywordFlags=0,name="NonChaosDamageGainAsChaos",value=8}},nil}c["13% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=13,name="LightningDamage",keywordFlags=0}},nil}c["70% increased Physical Damage"]={{[1]={flags=0,type="INC",value=70,name="PhysicalDamage",keywordFlags=0}},nil}c["25% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-25,name="Life",keywordFlags=0}},nil}c["12% increased Burning Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",keywordFlags=134217728}},nil}c["10 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="LifeRegen",keywordFlags=0}},nil}c["Adds 10 to 20 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=65536}},nil}c["-8% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-8,name="ElementalResist",keywordFlags=0}},nil}c["+10 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Dex",keywordFlags=0}},nil}c["100% reduced Arctic Armour Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Arctic Armour"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["60% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=60,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+5 to Strength"]={{[1]={flags=0,type="BASE",value=5,name="Str",keywordFlags=0}},nil}c["3% of Life Regenerated per second during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=3,name="LifeRegenPercent",keywordFlags=0}},nil}c["+2 to Level of Socketed Minion Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="minion",value=2},name="GemProperty",keywordFlags=0}},nil}c["3% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["20% increased Attack Damage"]={{[1]={flags=1,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus "}c["+2 Life Gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="LifeOnHit",keywordFlags=0}},nil}c["You have Fortify"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Fortify",flags=0}},nil}c["You can apply an additional Curse"]={{[1]={value=1,type="BASE",keywordFlags=0,name="EnemyCurseLimit",flags=0}},nil}c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=-40,name="CritChance",keywordFlags=0}},nil}c["30% reduced Damage"]={{[1]={flags=0,type="INC",value=-30,name="Damage",keywordFlags=0}},nil}c["8% increased Accuracy Rating with Staves"]={{[1]={flags=131072,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["10% increased Mana Regeneration Rate Per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=10,name="ManaRegen",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportDebilitate",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["+24 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=24,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}c["Recover 2% of Maximum Life on Kill"]={nil,"Recover 2% of Maximum Life on Kill "}c["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=35,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["12% increased Attack Damage"]={{[1]={flags=1,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["+18 to all Attributes"]={{[1]={flags=0,type="BASE",value=18,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=18,name="Int",keywordFlags=0}},nil}c["17% increased Strength"]={{[1]={flags=0,type="INC",value=17,name="Str",keywordFlags=0}},nil}c["Purity of Lightning Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="LightningResistAura"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Haste Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Haste"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary "}c["Grace Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="Grace"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["50% increased Mine Arming Speed Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={{}," Arming Speed Skills which Place Mines place up to 1 additional Mine "}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect "}c["+45% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=45,name="ColdResist",keywordFlags=0}},nil}c["Adds 35 to 70 Cold Damage"]={{[1]={flags=0,type="BASE",value=35,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=70,name="ColdMax",keywordFlags=0}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed "}c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"Nearby Enemies grant 25% increased Flask Charges "}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled "}c["220% increased Evasion Rating and Armour"]={{[1]={flags=0,type="INC",value=220,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+1 second to Summon Skeleton Cooldown"]={{}," second toCooldown "}c["30% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-30,name="FlaskDuration",keywordFlags=0}},nil}c["12 to 14 Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=12,name="ColdMin",keywordFlags=0},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=14,name="ColdMax",keywordFlags=0}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "}c["Grants Level 15 Envy Skill"]={{[1]={flags=0,type="LIST",value={skillId="Envy",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["8% increased total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=8,name="LifeLeechRate",keywordFlags=0}},nil}c["+35% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=35,name="CritMultiplier",keywordFlags=0}},nil}c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=90,name="ManaRegen",keywordFlags=0}},nil}c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["+13 to all Attributes"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=13,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=13,name="Int",keywordFlags=0}},nil}c["20% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}},nil}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["+100 to all Attributes"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=100,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=100,name="Int",keywordFlags=0}},nil}c["Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks "}c["+8% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=8,name="ColdDotMultiplier",keywordFlags=0}},nil}c["+20% to Critical Strike Multiplier with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=0}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=13,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["You gain 100 Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=100,name="Evasion",keywordFlags=0}},nil}c["+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",keywordFlags=0}}," while you do not have Avatar of Fire "}c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "}c["Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block "}c["10% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["You gain an Endurance Charge on use {variant:1}100% increased Charges used"]={nil,"You gain an Endurance Charge on use {variant:1}100% increased Charges used "}c["Damage Penetrates 6% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=6,name="LightningPenetration",keywordFlags=0}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block "}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["+24 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=24,name="Mana",keywordFlags=0}}," gained when you Block "}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["+30 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="ManaOnKill",keywordFlags=0}},nil}c["Gain a Void Charge every 0.5 seconds"]={nil,"Gain a Void Charge every 0.5 seconds "}c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportElementalProliferation",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["+180 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=180,name="Evasion",keywordFlags=0}},nil}c["+40 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=40,name="ManaOnKill",keywordFlags=0}},nil}c["+100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=100,name="Accuracy",keywordFlags=0}},nil}c["+110 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=110,name="EnergyShield",keywordFlags=0}},nil}c["Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds"]={nil,"Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds "}c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=150,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,type="INC",value=16,name="AreaOfEffect",keywordFlags=0}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShield",keywordFlags=0}},nil}c["Attack skills can have 1 additional Totem Summoned at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTotemLimit",keywordFlags=65536}},nil}c["+45% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}}," against Enemies that are affected "}c["Projectiles Fork"]={nil,"Projectiles Fork "}c["Gain 20% of Physical Damage as Extra Chaos Damage against Poisoned Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=262144}},nil}c["25% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=25,name="ProjectileSpeed",keywordFlags=0}},nil}c["33% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=33,name="ChaosDamage",keywordFlags=0}},nil}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="LightningPenetration",value=15},[2]={[1]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="ColdPenetration",value=15},[3]={[1]={type="StatThreshold",stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=15}},nil}c["Damage penetrates 25% Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,type="BASE",value=25,name="LightningPenetration",keywordFlags=0}},nil}c["30% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="LightningDamageLifeLeech",keywordFlags=0}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=15,name="DamageTakenLifeLeech",keywordFlags=0}}," from Hits "}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"]={{[1]={[1]={type="StatThreshold",upper=true,stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",upper=true,stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="INC",keywordFlags=0,name="LightningDamageTaken",value=-10},[2]={[1]={type="StatThreshold",upper=true,stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",upper=true,stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="INC",keywordFlags=0,name="ColdDamageTaken",value=-10},[3]={[1]={type="StatThreshold",upper=true,stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",upper=true,stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="INC",keywordFlags=0,name="FireDamageTaken",value=-10}},nil}c["350% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=350,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit"]={nil,nil}c["10% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["140% increased Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EnergyShield",keywordFlags=0}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Vaal Skills deal 40% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="MORE",value=40,name="Damage",keywordFlags=256}},nil}c["Minions have 8% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=8,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of "}c["+40 to Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets "}c["8% increased Attack Speed"]={{[1]={flags=1,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["Adds 90 to 345 Physical Damage"]={{[1]={flags=0,type="BASE",value=90,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=345,name="PhysicalMax",keywordFlags=0}},nil}c["+200 to maximum Life"]={{[1]={flags=0,type="BASE",value=200,name="Life",keywordFlags=0}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["50% reduced Duration"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}},nil}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="ColdResistTotal"},[2]={type="StatThreshold",stat="LightningResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="LightningPenetration",value=20},[2]={[1]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="ColdResistTotal",thresholdStat="FireResistTotal"},flags=0,type="BASE",keywordFlags=0,name="ColdPenetration",value=20},[3]={[1]={type="StatThreshold",stat="FireResistTotal",thresholdStat="LightningResistTotal"},[2]={type="StatThreshold",stat="FireResistTotal",thresholdStat="ColdResistTotal"},flags=0,type="BASE",keywordFlags=0,name="FirePenetration",value=20}},nil}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,type="INC",value=3,name="Int",keywordFlags=0}}," Character Size 6% increased "}c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["20% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="PowerChargesDuration",keywordFlags=0},[2]={flags=0,type="INC",value=20,name="FrenzyChargesDuration",keywordFlags=0},[3]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["If you've Blocked in the past 10 seconds, you"]={nil,"If you've Blocked in the past 10 seconds, you "}c["Fire Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=16}},nil}c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={type="Condition",neg=true,var="CriticalStrike"},flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["Traps and Mines deal 5 to 15 additional Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=12288},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=12288}},nil}c["15% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["1% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["Summoned Sentinels of Purity have 50% increased Area of Effect"]={nil,"Summoned Sentinels of Purity have 50% increased Area of Effect "}c["2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"]={nil,"2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used "}c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,type="LIST",value={skillId="ColdResistAura",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges "}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy "}c["50% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=50,name="LootRarity",keywordFlags=0}},nil}c["4% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=4,name="MineLayingSpeed",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["+8% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=8,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["-30% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="LightningResist",keywordFlags=0}},nil}c["15% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=15,name="EnemyStunDuration",keywordFlags=0}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["-4% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="BASE",value=-4,name="ElementalResist",keywordFlags=0},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="BASE",value=-4,name="ChaosResist",keywordFlags=0}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["Increases and Reductions to Minion Attack Speed also affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MinionAttackSpeedAppliesToPlayer",flags=0}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill "}c["8% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=8,name="SpellBlockChance",keywordFlags=0}},nil}c["10% increased Light Radius"]={{[1]={flags=0,type="INC",value=10,name="LightRadius",keywordFlags=0}},nil}c["+6 to maximum Life"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}},nil}c["170% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=170,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["6% increased Attributes"]={{[1]={flags=0,type="INC",value=6,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=6,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=6,name="Int",keywordFlags=0}},nil}c["Gain 10% of Wand Physical Damage as Extra Cold Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,type="INC",value=18,name="Speed",keywordFlags=0}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=4096}},nil}c["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["Unwavering Stance"]={{[1]={value="Unwavering Stance",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill "}c["Cannot take Reflected Elemental Damage"]={nil,"Cannot take Reflected Elemental Damage "}c["50% reduced Experience gain 0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="INC",value=-50,name="PhysicalDamage",keywordFlags=0}}," Experience gain 0.4% of Leeched as Mana "}c["+4% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["Cannot Knock Enemies Back"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotKnockback",flags=0}},nil}c["10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered"]={nil,"No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered "}c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={{}," to gain an Endurance Charge when you Stun an Enemy "}c["5% increased Physical Damage"]={{[1]={flags=0,type="INC",value=5,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Cold Damage"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}},nil}c["25% chance to Poison on Hit during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=25,name="PoisonChance",keywordFlags=0}},nil}c["27% increased Damage over Time"]={{[1]={flags=8,type="INC",value=27,name="Damage",keywordFlags=0}},nil}c["+40 to maximum Life"]={{[1]={flags=0,type="BASE",value=40,name="Life",keywordFlags=0}},nil}c["12% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,type="BASE",value=1.5,name="LightningDamageManaLeech",keywordFlags=0}},nil}c["Socketed Gems have Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=0}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=30,name="Damage",keywordFlags=65536}},nil}c["15% increased Accuracy Rating with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["20% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain a Power Charge after spending a total of 200 Mana"]={nil,"Gain a Power Charge after spending a total of 200 Mana "}c["Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportLifeLeech",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=4096}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill "}c["100% increased Ignite Duration on You"]={{[1]={flags=0,type="INC",value=100,name="EnemyIgniteDuration",keywordFlags=0}}," on You "}c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=20}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},[2]={type="Condition",var="UsedSkillRecently"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDegen",value=150}},nil}c["1% increased Energy Shield per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="INC",value=1,name="EnergyShield",keywordFlags=0}},nil}c["+24% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=24,name="ElementalResist",keywordFlags=0}},nil}c["70% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=70,name="Evasion",keywordFlags=0}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["80% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-80,name="Damage",keywordFlags=0}},nil}c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={type="SkillName",skillName="Discipline"},flags=0,type="INC",value=60,name="AuraEffect",keywordFlags=0}},nil}c["Adds 13 to 24 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=13,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=24,name="ColdMax",keywordFlags=65536}},nil}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["250% increased Physical Damage"]={{[1]={flags=0,type="INC",value=250,name="PhysicalDamage",keywordFlags=0}},nil}c["Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredIcicleNova",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges "}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+21% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=21,name="ChaosResist",keywordFlags=0}},nil}c["170% increased Physical Damage"]={{[1]={flags=0,type="INC",value=170,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 100 Life when an Endurance Charge expires or is consumed"]={nil,"Gain 100 Life when an Endurance Charge expires or is consumed "}c["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit "}c["3% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=8,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,type="INC",value=25,name="Damage",keywordFlags=65536}},nil}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="LightningPenetration",keywordFlags=0}},nil}c["100% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyStunDuration",keywordFlags=0}},nil}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy "}c["Curses on Slain Enemies are transferred to a nearby Enemy"]={nil,"Curses on Slain Enemies are transferred to a nearby Enemy "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill "}c["+150 to maximum Mana"]={{[1]={flags=0,type="BASE",value=150,name="Mana",keywordFlags=0}},nil}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge "}c["25% increased Mine Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8192}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["150% increased Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EnergyShield",keywordFlags=0}},nil}c["Poison you inflict with Critical Strikes deals 30% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="MORE",value=30,name="Damage",keywordFlags=1048576}},nil}c["40% increased Mine Detonation Area of Effect"]={{[1]={flags=0,type="INC",value=40,name="MineDetonationAreaOfEffect",keywordFlags=0}},nil}c["Spell Skills deal no Damage"]={nil,"no Damage "}c["Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Green Sockets have +10% to Quality "}c["100% increased Critical Strike Chance against Enemies that are affected by no Elemental Ailments"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"},neg=true,actor="enemy"},[2]={type="Condition",var="Effective"},flags=0,type="INC",keywordFlags=262144,name="CritChance",value=100}},nil}c["10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},flags=0,type="MORE",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["Adds 1 to 135 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=135,name="LightningMax",keywordFlags=0}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}c["You have Resolute Technique while you do not have Elemental Overload"]={nil,"You have Resolute Technique while you do not have Elemental Overload "}c["You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range "}c["+50% Global Critical Strike Multiplier while you have no Frenzy Charges"]={{[1]={[1]={type="Global"},[2]={type="StatThreshold",stat="FrenzyCharges",upper=true,threshold=0},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=50}},nil}c["Adds 1 to 300 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="LightningMax",keywordFlags=0}},nil}c["45% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Spider"},flags=0,type="INC",value=45,name="Duration",keywordFlags=0}},nil}c["Adds 1 to 85 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=85,name="LightningMax",keywordFlags=0}},nil}c["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit "}c["10% increased Spell Damage"]={{[1]={flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["+20 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=20,name="LifeOnKill",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Totems gain +10% to all Elemental Resistances"]={nil,"Totems gain +10% to all Elemental Resistances "}c["Reflects 4 Physical Damage to Melee Attackers"]={{},nil}c["30% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["60 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=60,name="LifeRegen",keywordFlags=0}},nil}c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "}c["20% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["Adds 36 to 360 Physical Damage"]={{[1]={flags=0,type="BASE",value=36,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=360,name="PhysicalMax",keywordFlags=0}},nil}c["10% increased Damage taken"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},nil}c["Adds 9 to 26 Physical Damage"]={{[1]={flags=0,type="BASE",value=9,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=26,name="PhysicalMax",keywordFlags=0}},nil}c["50% increased Herald of Ice Damage"]={{[1]={[1]={type="SkillName",skillName="Herald of Ice"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["15% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=15,name="SpellBlockChance",keywordFlags=0}},nil}c["+125 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=125,name="EnergyShield",keywordFlags=0}},nil}c["22% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=22,name="CritChance",keywordFlags=0}},nil}c["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike "}c["Adds 1 to 25 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="LightningMax",keywordFlags=0}},nil}c["Adds 38 to 58 Physical Damage"]={{[1]={flags=0,type="BASE",value=38,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=58,name="PhysicalMax",keywordFlags=0}},nil}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["30% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=16384,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["Cannot Leech Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0}},nil}c["Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="Maimed"},flags=0,type="INC",value=10,name="PhysicalDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=8192,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun "}c["Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy "}c["Adds 150 to 300 Cold Damage"]={{[1]={flags=0,type="BASE",value=150,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="ColdMax",keywordFlags=0}},nil}c["20% chance to Avoid Projectiles while Phasing You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="Phasing"},[2]={type="Condition",var="KilledRecently"},flags=0,type="BASE",keywordFlags=0,name="ProjectileCount",value=20}}," to Avoid You have Phasing "}c["10% chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}c["30% less Damage with Hits"]={{[1]={flags=0,type="MORE",value=-30,name="Damage",keywordFlags=262144}},nil}c["You have Onslaught while not on Low Mana"]={{[1]={[1]={type="Condition",neg=true,var="LowMana"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=0}},nil}c["Adds 20 to 35 Physical Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="PhysicalMax",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage"]={nil,"Totems are Immune to Fire Damage "}c["50% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-50,name="LootRarity",keywordFlags=0}},nil}c["10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies Nearby Enemies are Blinded "}c["7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level"]={nil,"7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level "}c["Adds 13 to 18 Physical Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=18,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Attack Skills deal 15% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["Adds 12 to 15 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=12,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=15,name="ColdMax",keywordFlags=65536}},nil}c["100% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=100}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown "}c["6% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks {variant:1}{crafted}+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="ActorCondition",actor="enemy",var="RareOrUnique"},flags=0,type="BASE",keywordFlags=65536,name="CritMultiplier",value=50}}," to Maim Enemies {variant:1}{crafted}+45% "}c["+5 Life gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy "}c["Adds 70 to 210 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=210,name="PhysicalMax",keywordFlags=0}},nil}c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="vaal",value=2},name="GemProperty",keywordFlags=0}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life "}c["10% increased Mine Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=8192}},nil}c["Adds 40 to 60 Physical Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="PhysicalMax",keywordFlags=0}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["Gain 10% of Wand Physical Damage as Extra Fire Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Adds 56 to 78 Physical Damage"]={{[1]={flags=0,type="BASE",value=56,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=78,name="PhysicalMax",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["Adds 30 to 58 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=58,name="PhysicalMax",keywordFlags=0}},nil}c["16% increased Physical Weapon Damage per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=8388608,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration "}c["Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill "}c["18% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=18,name="EnemyChillEffect",keywordFlags=0}},nil}c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["Grants level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonBeastialRhoa",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["Your Offerings have 50% reduced Effect on you"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"}},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-50,name="BuffEffectOnPlayer",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["14% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=14,name="Evasion",keywordFlags=0}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire "}c["12% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["1% of maximum Mana gained on Kill Removes 1% of maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill Removes 1% of maximum Life on Kill "}c["10% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=5,name="LifeOnHit",keywordFlags=0}},nil}c["1% additional Physical Damage Reduction per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="BASE",value=1,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=8192}},nil}c["Minions have 3% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. "}c["Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"]={nil,"Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage "}c["20% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="LifeRecoveryRate",keywordFlags=0}},nil}c["Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of "}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Grants Perfect Agony during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value="Perfect Agony",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["8% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,type="INC",value=8,name="Damage",keywordFlags=0}},nil}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["45% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=45,name="Duration",keywordFlags=0}},nil}c["13% reduced Mine Laying Speed"]={{[1]={flags=0,type="INC",value=-13,name="MineLayingSpeed",keywordFlags=0}},nil}c["Your Maximum Resistances are 78%"]={{[1]={flags=0,type="OVERRIDE",value=78,name="FireResistMax",keywordFlags=0},[2]={flags=0,type="OVERRIDE",value=78,name="ColdResistMax",keywordFlags=0},[3]={flags=0,type="OVERRIDE",value=78,name="LightningResistMax",keywordFlags=0},[4]={flags=0,type="OVERRIDE",value=78,name="ChaosResistMax",keywordFlags=0}},nil}c["+50 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=50,name="EnergyShield",keywordFlags=0}},nil}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlasphemy",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["15% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["+5% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=5,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["+1000 to Armour and Evasion Rating while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="BASE",value=1000,name="ArmourAndEvasion",keywordFlags=0}},nil}c["8% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["+30% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="ColdDotMultiplier",keywordFlags=0}},nil}c["15% chance to Avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=15,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=15,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=15,name="AvoidIgnite",keywordFlags=0}},nil}c["50% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=0}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,type="INC",value=-3,name="DamageTaken",keywordFlags=0}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["30% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=65536}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=460,name="Accuracy",keywordFlags=0}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 "}c["Adds 23 to 83 Physical Damage"]={{[1]={flags=0,type="BASE",value=23,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=83,name="PhysicalMax",keywordFlags=0}},nil}c["+20 to all Attributes"]={{[1]={flags=0,type="BASE",value=20,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["5% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=5,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["15% chance to Ignite"]={{[1]={flags=0,type="BASE",value=15,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Curse Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={type="SkillType",skillType=32},flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["Adds 11 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=11,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["Debuffs on you expire 20% faster"]={nil,"Debuffs on you expire 20% faster "}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8%"]={nil,"When you Kill an Enemy, for each Curse on that Enemy, gain 8% "}c["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=12,name="Accuracy",keywordFlags=0}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["100% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=4}},nil}c["6% increased Damage with Bows"]={{[1]={flags=8192,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["6% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=6,name="EnergyShield",keywordFlags=0}},nil}c["Recover 4% of Maximum Mana on Kill"]={nil,"Recover 4% of Maximum Mana on Kill "}c["You and nearby allies have 6% increased Attack, Cast and Movement Speed if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=6,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=6,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,type="BASE",value=6,name="FirePenetration",keywordFlags=0}},nil}c["Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="MORE",value=40,name="Damage",keywordFlags=1048576}},nil}c["50% increased Critical Strike Chance with Staves"]={{[1]={flags=131072,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["Nearby Allies have 4% increased Defences per 100 Strength you have"]={{[1]={[1]={type="PerStat",stat="Str",div=100},flags=0,type="LIST",value={onlyAllies=true,mod={flags=0,type="INC",value=4,name="Defences",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted "}c["Adds 15 to 33 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=33,name="PhysicalMax",keywordFlags=0}},nil}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["20% increased Damage with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead"]={{[1]={[1]={type="MultiplierThreshold",var="CorruptedItem",threshold=5},value=true,type="FLAG",keywordFlags=0,name="LifeLeechBasedOnChaosDamage",flags=0}},nil}c["80% increased Critical Strike Chance during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life "}c["50% increased Convocation Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillName="Convocation"},flags=0,type="INC",value=50,name="CooldownRecovery",keywordFlags=0}},nil}c["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies "}c["10% increased Damage Taken while Energy Shield is Full Corrupted"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," while Energy Shield is Full Corrupted "}c["10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=10,name="PhysicalDamage",keywordFlags=262144}}," to Blind Enemies Maimed by you take 10% increased "}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage "}c["+350 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=350,name="Evasion",keywordFlags=0}},nil}c["5% increased Damage taken"]={{[1]={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},nil}c["Gain 75% increased Area of Effect for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionAreaOfEffect"},flags=0,type="INC",value=75,name="AreaOfEffect",keywordFlags=0}},nil}c["15% increased Cold Damage"]={{[1]={flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["1% increased Fire Damage per 20 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=20},flags=0,type="INC",value=1,name="FireDamage",keywordFlags=0}},nil}c["40% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=40,name="PoisonChance",keywordFlags=0}},nil}c["You are Shocked during Flask effect"]={nil,"You are Shocked during Flask effect "}c["10% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["Action Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value "}c["+75% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=75,name="ColdResist",keywordFlags=0}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage "}c["+45% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"},actor="enemy"},flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["20% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",keywordFlags=0}},nil}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use "}c["+30 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=30,name="Accuracy",keywordFlags=0}},nil}c["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={type="SkillName",skillName="Raise Spectre"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=900,name="CritChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}c["15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is Detonated targeting an Enemy "}c["Minions have +5% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=5,name="ChaosResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["12% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},nil}c["10% chance to gain Unholy Might on block for 3 seconds +5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}}," to gain Unholy Might on block for 3 seconds +5% Chance "}c["10% increased Physical Damage"]={{[1]={flags=0,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=8192}},nil}c["-5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-5,name="ElementalResist",keywordFlags=0}},nil}c["10% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["30% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=30,name="AvoidFrozen",keywordFlags=0}},nil}c["+24 to Intelligence"]={{[1]={flags=0,type="BASE",value=24,name="Int",keywordFlags=0}},nil}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["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=1,type="BASE",value=3,name="DamageLifeLeech",keywordFlags=262144}},nil}c["1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,type="INC",value=1,name="Mana",keywordFlags=0}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["Immune to Elemental Ailments during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect "}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=10,name="CritMultiplier",keywordFlags=0}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,type="INC",value=20,name="TotemDuration",keywordFlags=0}},nil}c["Minions Regenerate 2% Life per second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions have 28% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=28,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage. "}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",keywordFlags=0,name="FireDegen",value=400}},nil}c["5% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=5,name="AreaOfEffect",keywordFlags=0}},nil}c["Damage Penetrates 6% Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdPenetration",keywordFlags=0}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies "}c["30% increased Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Adds 96 to 118 Physical Damage"]={{[1]={flags=0,type="BASE",value=96,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=118,name="PhysicalMax",keywordFlags=0}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit {variant:1}Attacks Cause Bleeding when Hitting Cursed Enemies"]={{}," to Curse Enemies with level 10on Hit {variant:1}Attacks Cause Bleeding "}c["60% increased Energy Shield"]={{[1]={flags=0,type="INC",value=60,name="EnergyShield",keywordFlags=0}},nil}c["40% increased Strength Requirement"]={{[1]={flags=0,type="INC",value=40,name="StrRequirement",keywordFlags=0}},nil}c["15% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=15,name="ProjectileSpeed",keywordFlags=0}},nil}c["Counts as all One Handed Melee Weapon Types"]={{[1]={value={key="countsAsAll1H",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit "}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},flags=0,type="BASE",value=15,name="ElementalDamageTaken",keywordFlags=16384}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced "}c["Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire "}c["When you or your Totems Kill a Burning Enemy, 20% chance for you"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you "}c["+18% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["10% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently "}c["Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,type="BASE",value=15,name="FirePenetration",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "}c["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["8 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=8,name="LifeRegen",keywordFlags=0}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire "}c["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,type="INC",value=16,name="Speed",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike "}c["You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen "}c["6% increased maximum Life"]={{[1]={flags=0,type="INC",value=6,name="Life",keywordFlags=0}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,type="BASE",value=65,name="Mana",keywordFlags=0}},nil}c["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=65536}},nil}c["35% increased Fire Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",keywordFlags=0}},nil}c["Minions have 10% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning "}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you "}c["60% reduced Mana Cost of Totem Skills that cast an Aura Corrupted"]={{[1]={flags=0,type="INC",value=-60,name="ManaCost",keywordFlags=16384}}," Skills that cast an Aura Corrupted "}c["160% increased Physical Damage"]={{[1]={flags=0,type="INC",value=160,name="PhysicalDamage",keywordFlags=0}},nil}c["240% increased Physical Damage"]={{[1]={flags=0,type="INC",value=240,name="PhysicalDamage",keywordFlags=0}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing "}c["24% increased Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ColdDamage",keywordFlags=0}},nil}c["+6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["30% increased Mana Regeneration if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="INC",value=30,name="ManaRegen",keywordFlags=0}},nil}c["Your Cold Damage can Ignite but not Freeze or Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ColdCanIgnite",flags=0},[2]={value=true,type="FLAG",keywordFlags=0,name="ColdCannotFreeze",flags=0},[3]={value=true,type="FLAG",keywordFlags=0,name="ColdCannotChill",flags=0}},nil}c["10% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,type="INC",value=10,name="Damage",keywordFlags=512}},nil}c["Cannot inflict Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotIgnite",flags=0}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}},nil}c["12% increased Damage over Time"]={{[1]={flags=8,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge when you Stun an Enemy"]={{}," to gain aCharge when you Stun an Enemy "}c["4% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,type="INC",value=40,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Nearby Enemies take 16% increased Elemental Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=16,name="ElementalDamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["You can inflict Bleeding on an Enemy up to 8 times"]={nil,"You can inflict Bleeding on an Enemy up to 8 times "}c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=175,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["20% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=20,name="StunRecovery",keywordFlags=0}},nil}c["+15% to Elemental Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ElementalResist",keywordFlags=0}},nil}c["+10 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=16384}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",keywordFlags=262144,name="FireMin",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",keywordFlags=262144,name="FireMax",value=200}},nil}c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use "}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills "}c["20% increased Fire Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=0}},nil}c["13% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="INC",value=13,name="AreaOfEffect",keywordFlags=0}},nil}c["+2 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,type="BASE",value=2,name="MeleeWeaponRange",keywordFlags=0},[2]={flags=0,type="BASE",value=2,name="UnarmedRange",keywordFlags=0}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["30% increased Zombie Resistances 25% increased Zombie Size"]={{}," Resistances 25% increased Zombie Size "}c["Adds 80 to 180 Chaos Damage"]={{[1]={flags=0,type="BASE",value=80,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=180,name="ChaosMax",keywordFlags=0}},nil}c["3% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=3,name="LifeRegenPercent",keywordFlags=0}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={type="SlotNumber",num=1},flags=0,type="INC",value=-30,name="ElementalDamageTaken",keywordFlags=0}}," Reflected {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken "}c["Knocks Back Enemies if you get a Critical Strike with a Bow"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=8192}},nil}c["20% increased Area Damage"]={{[1]={flags=512,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["3% chance to Block Attack Damage"]={{[1]={flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["+18% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ElementalResist",keywordFlags=0}},nil}c["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="ColdPenetration",keywordFlags=0}},nil}c["Minions have 8% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["17 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=17,name="LifeRegen",keywordFlags=0}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill "}c["Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"]={nil,"Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block "}c["Adds 40 to 60 Cold Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=60,name="ColdMax",keywordFlags=0}},nil}c["Creates Consecrated Ground on Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike "}c["10% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldLeechRate",keywordFlags=0}},nil}c["40% increased Damage if you've taken no Damage from Hits Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFasterCast",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["15% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-15,name="LootRarity",keywordFlags=0}},nil}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws 20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=16384,type="BASE",value=25,name="Damage",keywordFlags=0}}," to Steal Power, Frenzy, and Endurance Charges on Hit 20% increased with Ailments from Attack Skills "}c["Blood Magic"]={{[1]={value="Blood Magic",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Attack Skills deal 20% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},nil}c["Arrow Dancing"]={{[1]={value="Arrow Dancing",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["25% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["20% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="LightningDamageLifeLeech",keywordFlags=0}},nil}c["20% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["You and nearby Allies deal 4 to 8 added Physical Damage for each Impale on Enemy"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="PhysicalMin",keywordFlags=0}},name="ExtraAura",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=8,name="PhysicalMax",keywordFlags=0}},name="ExtraAura",keywordFlags=0}}," for each Impale on Enemy "}c["50% reduced Duration of Curses on you {variant:3}10% additional Block chance while not Cursed"]={{[1]={[1]={type="Condition",neg=true,var="Cursed"},flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}}," of Curses on you {variant:3}10% additional Block chance "}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," from Hits is Converted to a random Element "}c["+400 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=400,name="Evasion",keywordFlags=0}},nil}c["+170 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=170,name="EnergyShield",keywordFlags=0}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootQuantity",keywordFlags=0}},nil}c["8% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=8,name="AvoidStun",keywordFlags=0}},nil}c["Raging Spirits' Hits always Ignite"]={{[1]={[1]={type="SkillName",skillName="Summon Raging Spirit"},value={mod={value=100,type="BASE",keywordFlags=0,name="EnemyIgniteChance",flags=0}},type="LIST",keywordFlags=0,name="MinionModifier",flags=0}},nil}c["100% increased Duration of Curses on you"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=0}}," of Curses on you "}c["Cannot take Reflected Physical Damage"]={nil,"Cannot take Reflected Physical Damage "}c["20% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-50,name="FireResist",keywordFlags=0}},nil}c["You can't deal Damage with Skills yourself"]={nil,"You can't deal Damage with Skills yourself "}c["6% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["12% increased Physical Damage"]={{[1]={flags=0,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEvasion",keywordFlags=0}},nil}c["50% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=50,name="LootRarity",keywordFlags=0}},nil}c["+4 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=2},flags=0,type="BASE",value=4,name="Accuracy",keywordFlags=0}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,type="INC",value=8,name="FireDamage",keywordFlags=0}},nil}c["80% increased Physical Damage"]={{[1]={flags=0,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["50% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={type="StatThreshold",stat="ManaReserved",upper=true,threshold=0},flags=2,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["26% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=26,name="Damage",keywordFlags=65536}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=20,name="EnemyStunDuration",keywordFlags=0}}," to double "}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,type="BASE",value=5,name="EnemyFreezeChance",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="EnemyShockChance",keywordFlags=0},[3]={flags=0,type="BASE",value=5,name="EnemyIgniteChance",keywordFlags=0}},nil}c["15% reduced Intelligence"]={{[1]={flags=0,type="INC",value=-15,name="Int",keywordFlags=0}},nil}c["Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Energy Shield on Kill "}c["15% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["20% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=-20,name="Duration",keywordFlags=0}},nil}c["100% increased Physical Damage while you have Resolute Technique"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}}," while you have Resolute Technique "}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=8}},nil}c["20% increased Critical Strike Chance with Traps"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=4096}},nil}c["4% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=4,name="Damage",keywordFlags=0}},nil}c["Nearby Allies' Damage with Hits is Lucky"]={nil,"Nearby Allies' Damage with Hits is Lucky "}c["15% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=15,name="EnemyChillEffect",keywordFlags=0}},nil}c["40% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=40}},nil}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,type="BASE",value=56,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=400,name="PhysicalMax",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["20% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["20% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies "}c["+36% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=36,name="CritMultiplier",keywordFlags=0}},nil}c["15% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["5% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["40% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Shocked"},flags=0,type="INC",value=40,name="CritChance",keywordFlags=262144}},nil}c["20% increased Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["0.4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.4,name="LifeRegenPercent",keywordFlags=0}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed "}c["30% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}c["Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Shocks from your Hits always increase Damage taken by at least 20% "}c["Attack Skills deal 26% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=26,name="Damage",keywordFlags=65536}},nil}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Adds 173 to 213 Physical Damage"]={{[1]={flags=0,type="BASE",value=173,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=213,name="PhysicalMax",keywordFlags=0}},nil}c["170% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=170,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Adds 53 to 76 Physical Damage"]={{[1]={flags=0,type="BASE",value=53,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="PhysicalMax",keywordFlags=0}},nil}c["You Cannot Be Shocked While Frozen"]={nil,"You Cannot Be Shocked While Frozen "}c["18% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=18,name="LootRarity",keywordFlags=0}},nil}c["+14 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=14,name="EnergyShield",keywordFlags=0}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=15,name="FlaskManaRecovery",keywordFlags=0}},nil}c["+10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=35,name="ColdDotMultiplier",keywordFlags=0}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed "}c["10% increased Cold Damage"]={{[1]={flags=0,type="INC",value=10,name="ColdDamage",keywordFlags=0}},nil}c["30% chance to Avoid being Frozen during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="AvoidFrozen",keywordFlags=0}},nil}c["+17 to Strength and Intelligence"]={{[1]={flags=0,type="BASE",value=17,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=17,name="Int",keywordFlags=0}},nil}c["5% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["Left ring slot: Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times "}c["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ClawAttackSpeedAppliesToUnarmed",flags=0}},nil}c["235% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["15% reduced Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}c["+15 to maximum Mana"]={{[1]={flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["Minions deal 40% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["20% chance to Ignite"]={{[1]={flags=0,type="BASE",value=20,name="EnemyIgniteChance",keywordFlags=0}},nil}c["10% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill "}c["Minions have 3% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=3,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Minions have +4% Chance to Block Attack Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Attack Skills deal 24% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["+190 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=190,name="Evasion",keywordFlags=0}},nil}c["Recover 60 Life when you Ignite an Enemy"]={nil,"Recover 60 Life when you Ignite an Enemy "}c["650% increased Armour"]={{[1]={flags=0,type="INC",value=650,name="Armour",keywordFlags=0}},nil}c["24% increased Damage with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=24,name="Damage",keywordFlags=0}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,type="BASE",value=20,name="DamageLifeLeech",keywordFlags=0}}," Overkill "}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{[1]={flags=0,type="BASE",value=8,name="AreaOfEffect",keywordFlags=8192}},"% increased for each 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed "}c["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="SpellDodgeChance",keywordFlags=0}}," if you have Energy Shield "}c["10% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=10,name="LightningDamage",keywordFlags=0}},nil}c["+1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},nil}c["Cannot be Poisoned"]={nil,"Cannot be Poisoned "}c["130% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=130,name="CritChance",keywordFlags=262144}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for "}c["10% increased Scorching Ray beam length"]={{},"beam length "}c["20% increased Onslaught duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Onslaught "}c["20% increased Trap Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=4096}},nil}c["2% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges "}c["Projectiles from Attacks have 20% 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"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},[3]={type="Condition",var="HaveBestialMinion"},[4]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",keywordFlags=0,name="ProjectileCount",value=20}}," to Maim on Hit {variant:2} from Attacks have 20% chance to Poison on Hit "}c["60% increased Energy Shield from Equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=60,name="EnergyShield",keywordFlags=0}},nil}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["30% increased Area of Effect"]={{[1]={flags=0,type="INC",value=30,name="AreaOfEffect",keywordFlags=0}},nil}c["An additional Curse can be applied to you"]={nil,"An additional Curse can be applied to you "}c["113% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=113,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Attack Skills deal 12% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}c["Summoned Sentinels use Crusade Slam"]={{[1]={value={skillId="SentinelHolySlam",minionList={[1]="AxisEliteSoldierHeraldOfLight",[2]="AxisEliteSoldierDominatingBlow"}},type="LIST",keywordFlags=0,name="ExtraMinionSkill",flags=0}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["Can Allocate Passives from the Witch's starting point"]={{},nil}c["9% increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["Hits with this Weapon always inflict Elemental Ailments"]={nil,"Hits with this Weapon always inflict Elemental Ailments "}c["15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,type="BASE",value=15,name="ManaRegen",keywordFlags=0}},nil}c["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=120,name="CritChance",keywordFlags=0}},nil}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect "}c["Trigger a Socketed Spell when you Use a Skill"]={nil,"Trigger a Socketed Spell when you Use a Skill "}c["5% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Enemies on Consecrated Ground you create during Effect take 10% increased Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="LIST",value={mod={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={{[1]={[1]={type="StatThreshold",stat="PierceCount",threshold=1},flags=0,type="INC",value=50,name="Damage",keywordFlags=786944}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes "}c["Projectiles have 100% increased Critical Strike Chance against Targets they Pierce"]={{[1]={[1]={type="StatThreshold",stat="PierceCount",threshold=1},flags=1024,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,type="INC",value=190,name="PhysicalDamage",keywordFlags=0}},nil}c["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"]={nil,"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 "}c["You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique"]={nil,"You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique "}c["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack Gore Footprints"]={{}," to be inflicted when Hit by an Attack Gore Footprints "}c["Effects granted for having Rage are Doubled"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:RageEffect",flags=0}},nil}c["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=700,name="PhysicalDamage",keywordFlags=0}},nil}c["+15 to Intelligence"]={{[1]={flags=0,type="BASE",value=15,name="Int",keywordFlags=0}},nil}c["15% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=1048576}},nil}c["Adds 14-23 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=65536},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",value=23,name="PhysicalMax",keywordFlags=65536}},nil}c["+16% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=16,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="LightningResist",keywordFlags=0}},nil}c["You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={nil,"You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage "}c["Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["25% chance on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground "}c["30% increased Damage when you have no Energy Shield {variant:2}100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," when you have no Energy Shield {variant:2}100% increased Armour when you have no Energy Shield "}c["14% increased Trap Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=4096}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyStunDuration",keywordFlags=0}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,type="INC",value=120,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=256,type="INC",value=30,name="Damage",keywordFlags=262144}},nil}c["Minions deal 1% increased Damage per 10 Dexterity"]={{[1]={[1]={type="PerStat",stat="Dex",div=10},flags=0,type="LIST",value={mod={flags=0,type="INC",value=1,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Purity of Fire Reserves no Mana"]={{[1]={[1]={type="SkillId",skillId="FireResistAura"},flags=0,type="LIST",value={key="manaCostForced",value=0},name="SkillData",keywordFlags=0}},nil}c["+45% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=45,name="FireResist",keywordFlags=0}},nil}c["Adds 29 to 39 Cold Damage"]={{[1]={flags=0,type="BASE",value=29,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=39,name="ColdMax",keywordFlags=0}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike 30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=50,name="MovementSpeed",keywordFlags=0}}," to gain a Flask Charge when you deal a Critical Strike 30% increased "}c["Life Regeneration is applied to Energy Shield instead"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ZealotsOath",flags=0}},nil}c["20% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,type="INC",value=20,name="Armour",keywordFlags=0}},nil}c["Minions have 100% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=100,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+35% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="BASE",keywordFlags=0,name="CritMultiplier",value=35}},nil}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedChaosDamage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["7% increased Attributes"]={{[1]={flags=0,type="INC",value=7,name="Str",keywordFlags=0},[2]={flags=0,type="INC",value=7,name="Dex",keywordFlags=0},[3]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["Channelling Skills deal 30% increased Damage"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["+80 to Armour"]={{[1]={flags=0,type="BASE",value=80,name="Armour",keywordFlags=0}},nil}c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=20,name="FlaskManaRecovery",keywordFlags=0}},nil}c["30% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,name="Speed",keywordFlags=16384}},nil}c["1% increased Maximum Life per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,type="INC",value=1,name="Life",keywordFlags=0}},nil}c["100% increased Accuracy Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=100,name="Accuracy",keywordFlags=0}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,nil}c["12% increased maximum Mana"]={{[1]={flags=0,type="INC",value=12,name="Mana",keywordFlags=0}},nil}c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=10,name="BleedChance",keywordFlags=0}},nil}c["+10 to Strength"]={{[1]={flags=0,type="BASE",value=10,name="Str",keywordFlags=0}},nil}c["6% chance to Knock Enemies Back on hit"]={{[1]={flags=0,type="BASE",value=6,name="EnemyKnockbackChance",keywordFlags=0}},nil}c["Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["You cannot be Hindered"]={nil,"You cannot be Hindered "}c["Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={[1]={type="Multiplier",actor="enemy",var="Spider's WebStack"},flags=0,type="BASE",value=10,name="ChaosMin",keywordFlags=0},[2]={[1]={type="Multiplier",actor="enemy",var="Spider's WebStack"},flags=0,type="BASE",value=15,name="ChaosMax",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire "}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect "}c["Gain 30% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=524288,type="BASE",value=30,name="PhysicalDamageGainAsLightning",keywordFlags=0}},nil}c["15% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage "}c["Minion Instability"]={{[1]={value="Minion Instability",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Gain 30% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=30,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+10 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="ManaOnKill",keywordFlags=0}},nil}c["15% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=15,name="EnemyShockEffect",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage "}c["Adds 260 to 285 Physical Damage"]={{[1]={flags=0,type="BASE",value=260,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=285,name="PhysicalMax",keywordFlags=0}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,type="INC",value=17,name="Speed",keywordFlags=0}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown "}c["When used in the Synthesiser, the new item will have an additional Herald Modifier"]={nil,"When used in the Synthesiser, the new item will have an additional Herald Modifier "}c["10% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["259% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=259,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamage",keywordFlags=0}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed "}c["8% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Vaal Skills deal 100% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=100,name="Damage",keywordFlags=256}},nil}c["3% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Adds 15 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["Channelling Skills have 6% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["150% increased Physical Damage"]={{[1]={flags=0,type="INC",value=150,name="PhysicalDamage",keywordFlags=0}},nil}c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit "}c["Adds 10 to 14 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="PhysicalMax",keywordFlags=0}},nil}c["do not have Adrenaline"]={nil,"do not have Adrenaline "}c["Adds 12 to 24 Physical Damage"]={{[1]={flags=0,type="BASE",value=12,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="PhysicalMax",keywordFlags=0}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["Adds 30 to 40 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=40,name="PhysicalMax",keywordFlags=0}},nil}c["20% reduced Mana Cost of Skills during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=-20,name="ManaCost",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["+2 to Level of Socketed Aura Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="aura",value=2},name="GemProperty",keywordFlags=0}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge if you or your s kill an Enemy "}c["12% increased Area Damage"]={{[1]={flags=512,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["22% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=22,name="ElementalDamage",keywordFlags=0}},nil}c["+8% Chance to Block Attack Damage if you were Damaged by a Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,type="BASE",value=8,name="BlockChance",keywordFlags=0}},nil}c["+30 to Maximum Mana"]={{[1]={flags=0,type="BASE",value=30,name="Mana",keywordFlags=0}},nil}c["12% increased Armour"]={{[1]={flags=0,type="INC",value=12,name="Armour",keywordFlags=0}},nil}c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,type="LIST",value={skillId="BloodOffering",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=65536}},nil}c["50% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=50,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom "}c["18% increased Burning Damage"]={{[1]={flags=0,type="INC",value=18,name="FireDamage",keywordFlags=134217728}},nil}c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,type="INC",value=40,name="EnemyChillEffect",keywordFlags=0}}," ed Ground "}c["Adds 16 to 24 Physical Damage"]={{[1]={flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=24,name="PhysicalMax",keywordFlags=0}},nil}c["24% increased Armour"]={{[1]={flags=0,type="INC",value=24,name="Armour",keywordFlags=0}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=15,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["+15% to Cold and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}},nil}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,type="MORE",value=40,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=0,type="BASE",value=25,name="Life",keywordFlags=0}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full "}c["+68 to maximum Life"]={{[1]={flags=0,type="BASE",value=68,name="Life",keywordFlags=0}},nil}c["+6% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=6,name="FireResistMax",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=6,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=6,name="LightningResistMax",keywordFlags=0}},nil}c["Channelling Skills deal 14% increased Damage"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["Golems have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=15,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+90 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=90,name="Evasion",keywordFlags=0}},nil}c["28% increased Spell Damage"]={{[1]={flags=2,type="INC",value=28,name="Damage",keywordFlags=0}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",keywordFlags=0}},nil}c["200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,type="INC",value=200,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire "}c["Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplierAppliesToDegen",keywordFlags=0}},nil}c["60% increased Spell Damage"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}},nil}c["+25 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=25,name="LifeOnKill",keywordFlags=0}},nil}c["Adds 21 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,type="BASE",value=21,name="FireMin",keywordFlags=196608},[2]={flags=0,type="BASE",value=33,name="FireMax",keywordFlags=196608}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["35% increased Burning Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",keywordFlags=134217728}},nil}c["For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,type="INC",value=40,name="FireDamage",keywordFlags=0},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}},nil}c["Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill "}c["Your Lightning Damage can Poison"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanPoison",flags=0}},nil}c["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect "}c["50% increased Damage if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["15% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,type="INC",value=15,name="CritChance",keywordFlags=16384}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["60% increased Area of Effect of Curse Skills"]={{[1]={flags=0,type="INC",value=60,name="AreaOfEffect",keywordFlags=2}},nil}c["32% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=32,name="CritChance",keywordFlags=0}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=16,name="Damage",keywordFlags=65536}},nil}c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["15% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=15,name="CritChance",keywordFlags=0}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=0}},nil}c["220% increased Armour"]={{[1]={flags=0,type="INC",value=220,name="Armour",keywordFlags=0}},nil}c["10% chance to Poison on Hit with Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=65536}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.15,name="EnergyShield",keywordFlags=0}},name="GrantReservedManaAsAura",keywordFlags=0}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootRarity",keywordFlags=0}},nil}c["Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges"]={nil,"Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges "}c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=18,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=56,name="LightningMax",keywordFlags=131072}},nil}c["5% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["6% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="INC",value=6,name="AreaOfEffect",keywordFlags=0}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",keywordFlags=0}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use "}c["20% chance to Avoid being Stunned while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=20,name="AvoidStun",keywordFlags=0}},nil}c["8% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=8,name="AttackDodgeChance",keywordFlags=0}},nil}c["40% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=40,name="Armour",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit "}c["13% increased Physical Damage"]={{[1]={flags=0,type="INC",value=13,name="PhysicalDamage",keywordFlags=0}},nil}c["7% Global chance to Blind Enemies on hit"]={nil,"7% Global chance to Blind Enemies on hit "}c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=-25,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ChaosResist",keywordFlags=0}},nil}c["Flasks gain 3 Charges every 3 seconds"]={nil,"Flasks gain 3 Charges every 3 seconds "}c["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"]={nil,"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 "}c["+12 to maximum Life"]={{[1]={flags=0,type="BASE",value=12,name="Life",keywordFlags=0}},nil}c["Reflects 44 Physical Damage to Attackers on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block "}c["10% increased Skeleton Cast speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=16,type="INC",value=10,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["All Attacks with this Weapon are Critical Strikes"]={{[1]={value={key="CritChance",value=100},type="LIST",keywordFlags=0,name="WeaponData",flags=0}},nil}c["Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["Adds 2 to 59 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=2,name="LightningMin",keywordFlags=0},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,type="BASE",value=59,name="LightningMax",keywordFlags=0}},nil}c["20% increased Physical Damage"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["No Block Chance"]={{[1]={value={key="BlockChance",value=0},type="LIST",keywordFlags=0,name="ArmourData",flags=0}},nil}c["8% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=8,name="ChaosDamage",keywordFlags=0}},nil}c["You have Phasing during Onslaught Gain Phasing for 4 seconds on Kill"]={nil,"You have Phasing during Onslaught Gain Phasing for 4 seconds on Kill "}c["500% increased Attribute Requirements"]={{[1]={flags=0,type="INC",value=500,name="StrRequirement",keywordFlags=0},[2]={flags=0,type="INC",value=500,name="DexRequirement",keywordFlags=0},[3]={flags=0,type="INC",value=500,name="IntRequirement",keywordFlags=0}},nil}c["Socketed Gems have 10% increased Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["+1 to Level of Socketed Strength Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="strength",value=1},name="GemProperty",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=60,name="CritChance",keywordFlags=0}},nil}c["30% increased Mine Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=8192}},nil}c["210% increased Physical Damage"]={{[1]={flags=0,type="INC",value=210,name="PhysicalDamage",keywordFlags=0}},nil}c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating "}c["60% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=60,name="Evasion",keywordFlags=0}},nil}c["12% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=12,name="Evasion",keywordFlags=0}},nil}c["+27% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=27,name="CritMultiplier",keywordFlags=0}},nil}c["+450 to Accuracy against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=450,name="Accuracy",keywordFlags=262144}},nil}c["135% increased Charges used"]={{[1]={flags=0,type="INC",value=135,name="FlaskChargesUsed",keywordFlags=0}},nil}c["+2% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=2,name="SpellBlockChance",keywordFlags=0}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill "}c["1.5% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.5,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block "}c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,type="INC",value=3,name="AuraEffect",keywordFlags=0}},nil}c["18% increased Strength"]={{[1]={flags=0,type="INC",value=18,name="Str",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="Damage",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased "}c["5% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=5,name="CooldownRecovery",keywordFlags=4096}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy "}c["Gain 13% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=13,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark "}c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["15% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=150,name="CritChance",keywordFlags=0}},nil}c["Attack Skills deal 18% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,type="INC",value=18,name="Damage",keywordFlags=65536}},nil}c["28% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"]={nil,"Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge "}c["10% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,type="INC",value=10,name="ManaLeechRate",keywordFlags=0}},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["Adds 1 to 13 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=13,name="LightningMax",keywordFlags=65536}},nil}c["125% increased Energy Shield"]={{[1]={flags=0,type="INC",value=125,name="EnergyShield",keywordFlags=0}},nil}c["180% increased Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="EnergyShield",keywordFlags=0}},nil}c["+65 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=65,name="EnergyShield",keywordFlags=0}},nil}c["Melee Critical Strikes cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}c["+125 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=125,name="Evasion",keywordFlags=0}},nil}c["0.2% of Lightning Damage Leeched as Energy Shield"]={{[1]={flags=0,type="BASE",value=0.2,name="LightningDamageEnergyShieldLeech",keywordFlags=0}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints "}c["+450 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=450,name="Accuracy",keywordFlags=0}},nil}c["5% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=5},flags=2,type="INC",value=5,name="Damage",keywordFlags=0}},nil}c["You can Cast an additional Brand 20% increased Damage with Brand Skills"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills "}c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},flags=0,type="INC",keywordFlags=0,name="CritChance",value=50}},nil}c["5% increased Experience gain"]={{}," Experience gain "}c["+21 to all Attributes"]={{[1]={flags=0,type="BASE",value=21,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=21,name="Int",keywordFlags=0}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="RareOrUnique"},flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["3% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["0.6% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,type="BASE",value=0.6,name="DamageEnergyShieldLeech",keywordFlags=0}},nil}c["-10 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-10,name="ChaosDamageTaken",keywordFlags=0}},nil}c["Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell "}c["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CastSpeedAppliesToTrapThrowingSpeed",flags=0}},nil}c["25% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-25,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}}," against Enemies that are affected "}c["1% of Energy Shield Regenerated per second for each Enemy you or your Minions have Killed Recently, up to 30%"]={{[1]={[1]={type="Multiplier",limit=30,varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"},limitTotal=true},flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["Bow Attacks have 15% chance to cause Bleeding"]={{[1]={flags=0,type="BASE",value=15,name="BleedChance",keywordFlags=512}},nil}c["18% increased Damage"]={{[1]={flags=0,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,type="INC",value=6,name="Mana",keywordFlags=0}},nil}c["24% increased Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=24,name="Damage",keywordFlags=0}},nil}c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "}c["Adds 103 to 245 Physical Damage"]={{[1]={flags=0,type="BASE",value=103,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=245,name="PhysicalMax",keywordFlags=0}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=25,name="Damage",keywordFlags=65536}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of "}c["8% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=8,name="EnemyShockEffect",keywordFlags=0},[2]={flags=0,type="INC",value=8,name="EnemyChillEffect",keywordFlags=0},[3]={flags=0,type="INC",value=8,name="EnemyFreezeEffech",keywordFlags=0}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="LifeOnKill",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["12% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,type="BASE",value=25,name="PhysicalDamageGainAsLightning",keywordFlags=0}},nil}c["10% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=10,name="Evasion",keywordFlags=0}},nil}c["+25 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life "}c["100% increased Armour"]={{[1]={flags=0,type="INC",value=100,name="Armour",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["50% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["10% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["18% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=18,name="CurseEffect",keywordFlags=0}},nil}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used "}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+7% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=7,name="SpellBlockChance",keywordFlags=0}},nil}c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=200,name="Armour",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["420% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=420,name="Evasion",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Magma Orb"]={nil,"With at least 40 Intelligence in Radius, Magma Orb "}c["100% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["+450 to Armour"]={{[1]={flags=0,type="BASE",value=450,name="Armour",keywordFlags=0}},nil}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge "}c["Minions' Attacks deal 8 to 16 additional Physical Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=8,name="PhysicalMin",keywordFlags=0}},name="MinionModifier",keywordFlags=0},[2]={flags=0,type="LIST",value={mod={flags=1,type="BASE",value=16,name="PhysicalMax",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["6% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=6,name="ElementalDamage",keywordFlags=0}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you "}c["6% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={type="PerStat",stat="BlockChance",div=5},flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["13% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=13,name="AuraEffect",keywordFlags=0}},nil}c["Damage Penetrates 10% of Enemy Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["Life Leech from Hits with this Weapon applies instantly"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0}},nil}c["+15% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=15,name="ColdResist",keywordFlags=0}},nil}c["380% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=380,name="Evasion",keywordFlags=0}},nil}c["+36% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=36,name="ColdResist",keywordFlags=0}},nil}c["1% reduced Elemental Damage taken when Hit per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=-1,name="ElementalDamageTakenWhenHit",keywordFlags=0}},nil}c["-60% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=-60,name="LightningResist",keywordFlags=0}},nil}c["+30 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={flags=0,type="BASE",value=30,name="EnergyShield",keywordFlags=0}}," gained on Killing a Shocked Enemy "}c["90% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=90,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-25,name="EnemyStunThreshold",keywordFlags=0}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=10,name="ElementalDamage",keywordFlags=0}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments Nearby Enemies take 10% increased "}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={{[1]={flags=0,type="LIST",value={skillId="PoachersMark",level=30,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["160% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Gain 5 Rage when you use a Warcry"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:CanGainRage",flags=0},[2]={[1]={type="Condition",var="CanGainRage"},value=1,type="DUMMY",keywordFlags=0,name="Dummy",flags=0}},nil}c["70 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=70,name="LifeRegen",keywordFlags=0}},nil}c["12% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["5% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=16}},nil}c["+25 to Intelligence"]={{[1]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}c["Socketed Gems have 20% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-20,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={nil,"Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect "}c["6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,type="INC",value=-6,name="DamageTaken",keywordFlags=0}}," for 4 seconds after Spending a total of 200 Mana "}c["20% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,type="INC",value=20,name="ManaLeechRate",keywordFlags=0}},nil}c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=16384}},nil}c["30% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",value=30,name="Damage",keywordFlags=786432}},nil}c["3% increased Attack Speed with Bows"]={{[1]={flags=8193,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Adds 65 to 155 Chaos Damage"]={{[1]={flags=0,type="BASE",value=65,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=155,name="ChaosMax",keywordFlags=0}},nil}c["While at Maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={type="StatThreshold",stat="FrenzyCharges",thresholdStat="FrenzyChargesMax"},value=100,type="BASE",keywordFlags=0,name="PoisonChance",flags=1}},nil}c["No Critical Strike Multiplier"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoCritMultiplier",flags=0}},nil}c["Nearby Enemies have -20% to Chaos Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=-20,name="ChaosResist",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}},nil}c["to 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"to 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["Skills used during Flask effect grant 800% of Mana Cost as Life"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life "}c["Elemental Resistances are Zero"]={{[1]={value=0,type="OVERRIDE",keywordFlags=0,name="FireResist",flags=0},[2]={value=0,type="OVERRIDE",keywordFlags=0,name="ColdResist",flags=0},[3]={value=0,type="OVERRIDE",keywordFlags=0,name="LightningResist",flags=0}},nil}c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="LootRarity",keywordFlags=0}},nil}c["15% increased Character Size Spell Skills deal no Damage"]={{[1]={flags=2,type="INC",value=15,name="Damage",keywordFlags=0}}," Character Size Skills deal no "}c["50% increased Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="EnergyShield",keywordFlags=0}},nil}c["Adds 300 to 380 Physical Damage"]={{[1]={flags=0,type="BASE",value=300,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=380,name="PhysicalMax",keywordFlags=0}},nil}c["-7 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-7,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers "}c["40% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=40,name="EnemyShockEffect",keywordFlags=0}},nil}c["50% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Blinded"},flags=0,type="INC",value=50,name="Damage",keywordFlags=786432}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage "}c["30% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=30,name="Damage",keywordFlags=65536}},nil}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={{[1]={flags=0,type="LIST",value={skillId="OnHitWhileCursedTriggeredCurseNova",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances "}c["20% increased Spell Damage if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=2,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge "}c["began Recently"]={nil,"began Recently "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={type="StatThreshold",stat="EnduranceCharges",threshold=1},flags=0,type="BASE",value=50,name="ElementalDamageTaken",keywordFlags=16384}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["10% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+80 to Intelligence"]={{[1]={flags=0,type="BASE",value=80,name="Int",keywordFlags=0}},nil}c["12% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=12,name="MovementSpeed",keywordFlags=0}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems"]={nil,"You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems "}c["Primordial"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:PrimordialItem",flags=0}},nil}c["50% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,type="INC",value=-50,name="ManaCost",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill"]={{}," to gain aCharge and a Power Charge on Kill "}c["Adds 190 to 220 Cold Damage in Off Hand"]={{[1]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=190,name="ColdMin",keywordFlags=0},[2]={[1]={type="InSlot",num=2},flags=0,type="BASE",value=220,name="ColdMax",keywordFlags=0}},nil}c["140% increased Physical Damage"]={{[1]={flags=0,type="INC",value=140,name="PhysicalDamage",keywordFlags=0}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances "}c["35% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,type="INC",value=24,name="FireDamage",keywordFlags=0}},nil}c["Minions have 5% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=5,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,type="INC",value=15,name="Mana",keywordFlags=0}},nil}c["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use "}c["+6 to maximum Mana"]={{[1]={flags=0,type="BASE",value=6,name="Mana",keywordFlags=0}},nil}c["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,type="LIST",value={skillId="VoidGaze",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use "}c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "}c["8% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["Gain Life and Mana from Leech instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0},[2]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="InstantManaLeech",flags=0}},nil}c["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.5,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use "}c["187% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=187,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["33% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=33,name="ElementalDamage",keywordFlags=0}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["5% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Chaos Skills have 50% increased Area of Effect"]={{[1]={flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=128}},nil}c["5% increased Cast Speed with Cold Skills"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=32}},nil}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyStunDuration",keywordFlags=0}},nil}c["50% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=2097152}},nil}c["5% increased Experience gain {variant:2,3}3% increased Experience gain"]={{}," Experience gain {variant:2,3}3% increased Experience gain "}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use "}c["Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds "}c["Gain +30 Life when you Hit a Bleeding Enemy"]={{[1]={[1]={type="ActorCondition",var="Bleeding",actor="enemy"},flags=0,type="BASE",value=30,name="LifeOnHit",keywordFlags=0}},nil}c["Gain Igniting Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="IgnitingConflux"},value=100,type="BASE",keywordFlags=0,name="EnemyIgniteChance",flags=0},[2]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="PhysicalCanIgnite",flags=0},[3]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="LightningCanIgnite",flags=0},[4]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="ColdCanIgnite",flags=0},[5]={[1]={type="Condition",var="IgnitingConflux"},value=true,type="FLAG",keywordFlags=0,name="ChaosCanIgnite",flags=0}},nil}c["+75 to maximum Life"]={{[1]={flags=0,type="BASE",value=75,name="Life",keywordFlags=0}},nil}c["Leech applies instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="InstantLifeLeech",flags=0},[2]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="InstantManaLeech",flags=0}},nil}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Socketed Gems have 30% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-30,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["2% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="INC",value=2,name="Evasion",keywordFlags=0}},nil}c["+1 to Minimum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=1,name="FrenzyChargesMin",keywordFlags=0}},nil}c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=0}},nil}c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["Channelling Skills have 3% increased Attack and Cast Speed"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["30% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsCold",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage "}c["15% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=15,name="Evasion",keywordFlags=0}},nil}c["+3 to Level of Socketed Golem Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="golem",value=3},name="GemProperty",keywordFlags=0}},nil}c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,type="INC",value=10,name="Damage",keywordFlags=262144}},nil}c["90% increased Charges used"]={{[1]={flags=0,type="INC",value=90,name="FlaskChargesUsed",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["Maximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellBlockChanceMaxIsBlockChanceMax",flags=0}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",keywordFlags=0}},nil}c["+20 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={type="Multiplier",var="PoisonAppliedRecently"},flags=0,type="INC",value=5,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},flags=0,type="INC",keywordFlags=0,name="CritChance",value=60}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["20% increased Warcry Buff Effect"]={{[1]={flags=0,type="INC",value=20,name="BuffEffect",keywordFlags=4}},nil}c["Cannot be Stunned by Hits you Block"]={nil,"Cannot be Stunned by Hits you Block "}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["+5 to Dexterity"]={{[1]={flags=0,type="BASE",value=5,name="Dex",keywordFlags=0}},nil}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["+50 to Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},[3]={type="Condition",var="HaveBestialMinion"},flags=0,type="BASE",keywordFlags=0,name="PoisonChance",value=20}},nil}c["10% chance to gain a Frenzy Charge when you Block Attack Damage 10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={[1]={type="SkillName",skillName="Frenzy"},flags=3,type="BASE",value=10,name="Damage",keywordFlags=0}}," to gain aCharge when you Block 10% chance to gain a Power Charge when you Block Damage "}c["+15% to Fire and Chaos Resistances"]={{[1]={flags=0,type="BASE",value=15,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="ChaosResist",keywordFlags=0}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee on Hit "}c["18% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=18,name="Damage",keywordFlags=262144}},nil}c["7% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=7,name="LootQuantity",keywordFlags=0}},nil}c["12% chance to Knock Enemies Back on hit"]={{[1]={flags=0,type="BASE",value=12,name="EnemyKnockbackChance",keywordFlags=0}},nil}c["Cannot be Frozen if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=0}},nil}c["+25 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Dex",keywordFlags=0}},nil}c["+50 to maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",keywordFlags=0}},nil}c["+160 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=160,name="EnergyShield",keywordFlags=0}},nil}c["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,type="LIST",value={skillId="TemporalChains",level=10,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["15% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,type="INC",value=15,name="AuraEffect",keywordFlags=0}},nil}c["+70 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=70,name="EnergyShield",keywordFlags=0}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["15 Mana Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=15,name="ManaRegen",keywordFlags=0}},nil}c["30% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy "}c["+290 to Armour and Evasion Rating"]={{[1]={flags=0,type="BASE",value=290,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Golems have +900 to Armour"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=900,name="Armour",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-40,name="LootRarity",keywordFlags=0}},nil}c["Passives in Radius can be Allocated without being connected to your tree"]={{[1]={value={key="intuitiveLeap",value=true},type="LIST",keywordFlags=0,name="JewelData",flags=0}},nil}c["120% of Block Chance applied to Spells when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,type="BASE",value=120,name="BlockChance",keywordFlags=0}}," applied to s "}c["20% chance to Block Spells if you've Blocked an Attack Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,type="BASE",value=20,name="SpellBlockChance",keywordFlags=0}},nil}c["50% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,type="INC",value=-50,name="MaxLifeLeechInstance",keywordFlags=0}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"]={{}," Maximum Spirit Charges Gain a Spirit Charge every second "}c["20% chance to Freeze, Shock and Ignite during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="EnemyFreezeChance",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="EnemyShockChance",keywordFlags=0},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Adds 33 to 47 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=33,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=47,name="ColdMax",keywordFlags=65536}},nil}c["30% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="LightningDamageManaLeech",keywordFlags=0}},nil}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["+18 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=18,name="EnergyShield",keywordFlags=0}},nil}c["Take 30 Chaos Damage per Second during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="ChaosDegen",keywordFlags=0}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 15% of your Reserved Mana to "}c["30% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="LowLife"},flags=0,type="INC",value=30,name="Damage",keywordFlags=262144}},nil}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,type="BASE",value=-2,name="ManaCost",keywordFlags=0}},nil}c["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by "}c["+500 to Accuracy against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=500,name="Accuracy",keywordFlags=262144}},nil}c["20% chance to gain a Frenzy Charge on Kill {variant:22}20% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill {variant:22}20% chance to gain a Power Charge on Kill "}c["Projectiles Pierce 3 additional Targets"]={{[1]={flags=0,type="BASE",value=3,name="PierceCount",keywordFlags=0}},nil}c["Gain Accuracy Rating equal to your Strength"]={{[1]={[1]={type="PerStat",stat="Str"},value=1,type="BASE",keywordFlags=0,name="Accuracy",flags=0}},nil}c["+50% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=50,name="ChaosResist",keywordFlags=0}},nil}c["+8 to Intelligence"]={{[1]={flags=0,type="BASE",value=8,name="Int",keywordFlags=0}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",keywordFlags=0}},nil}c["+2 to Level of Socketed Movement Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="movement",value=2},name="GemProperty",keywordFlags=0}},nil}c["25% reduced Bleed duration"]={{[1]={flags=0,type="INC",value=-25,name="EnemyBleedDuration",keywordFlags=0}},nil}c["33% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=1,type="INC",value=33,name="Damage",keywordFlags=262144}},nil}c["0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.4,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken "}c["Has 2 Abyssal Sockets"]={{[1]={flags=0,type="BASE",value=2,name="AbyssalSocketCount",keywordFlags=0}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["30% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill "}c["4% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,type="INC",keywordFlags=0,name="CritChance",value=30}},nil}c["+80 to maximum Life"]={{[1]={flags=0,type="BASE",value=80,name="Life",keywordFlags=0}},nil}c["75% chance to cause Enemies to Flee on use {variant:1}100% increased Charges used"]={{[1]={flags=0,type="BASE",value=75,name="FlaskChargesUsed",keywordFlags=0}}," to cause Enemies to Flee on use {variant:1}100% increased "}c["9% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["135% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=135,name="ArmourAndEvasion",keywordFlags=0}},nil}c["You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken "}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage "}c["40% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=40,name="LootRarity",keywordFlags=0}},nil}c["20% less Cold Damage taken"]={{[1]={flags=0,type="MORE",value=-20,name="ColdDamageTaken",keywordFlags=0}},nil}c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["5% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=5,name="AreaOfEffect",keywordFlags=0}},nil}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "}c["30% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,type="INC",value=30,name="Damage",keywordFlags=65536}},nil}c["25% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,type="MORE",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}}," if you Summoned a in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},"Flasks gain 3 Charges every 3 seconds "}c["Adds 21 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=21,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=140,name="CritChance",keywordFlags=0}},nil}c["1% reduced Mana Reserved per 250 total attributes"]={{[1]={[1]={type="PerStat",statList={[1]="Str",[2]="Dex",[3]="Int"},div=250},flags=0,type="INC",value=-1,name="ManaReserved",keywordFlags=0}},nil}c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Gain Unholy Might for 3 seconds on Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage "}c["8% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Socketed Curse Gems have 12% reduced Mana Reservation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}",keyword="curse"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-12,name="ManaReserved",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}},nil}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=20,name="ManaRegen",keywordFlags=0}},nil}c["Damage Penetrates 10% Fire Resistance"]={{[1]={flags=0,type="BASE",value=10,name="FirePenetration",keywordFlags=0}},nil}c["Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 30 Chaos Damage to Melee Attackers "}c["Reflects 20 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers "}c["Adds 250 to 300 Cold Damage to Counterattacks"]={{[1]={flags=0,type="BASE",value=250,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=300,name="ColdMax",keywordFlags=0}}," to Counterattacks "}c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy "}c["20% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=20,name="Accuracy",keywordFlags=0}},nil}c["23% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,type="INC",value=23,name="Damage",keywordFlags=0}},nil}c["+7 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=7,name="LifeOnKill",keywordFlags=0}},nil}c["15% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=15,name="MaxLifeLeechRate",keywordFlags=0}},nil}c["+11 to all Attributes"]={{[1]={flags=0,type="BASE",value=11,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=11,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=11,name="Int",keywordFlags=0}},nil}c["+8% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResist",keywordFlags=0}},nil}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2,name="SelfExtraCritChance",keywordFlags=0}},name="EnemyModifier",keywordFlags=0}},nil}c["+0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={limit=2,limitTotal=true,type="Multiplier",var="PoisonStack",actor="enemy"},flags=0,type="BASE",value=0.1,name="CritChance",keywordFlags=0}},nil}c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block "}c["13% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=13,name="ChaosDamage",keywordFlags=0}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=-40,name="FlaskEffect",keywordFlags=0}},name="ExtraSkillMod",keywordFlags=0}}," Elemental Equilibrium {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect "}c["+35 to Dexterity"]={{[1]={flags=0,type="BASE",value=35,name="Dex",keywordFlags=0}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Adds 17 to 29 Chaos Damage"]={{[1]={flags=0,type="BASE",value=17,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=0}},nil}c["Cannot be Frozen"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=0}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-65,name="FlaskRecovery",keywordFlags=0}},nil}c["+23% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ChaosResist",keywordFlags=0}},nil}c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=90,name="CritMultiplier",keywordFlags=0}},nil}c["+60 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=60,name="EnergyShield",keywordFlags=0}},nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",keywordFlags=0}},nil}c["4% additional Physical Damage Reduction while Channelling Channelling Skills have 6% increased Attack and Cast Speed"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}}," while Channelling Channelling Skills have 6% increased Attack and Cast Speed "}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="PhysicalDamage",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges "}c["Adds 9 to 14 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={[1]={type="Multiplier",actor="enemy",var="Spider's WebStack"},flags=0,type="BASE",value=9,name="ChaosMin",keywordFlags=0},[2]={[1]={type="Multiplier",actor="enemy",var="Spider's WebStack"},flags=0,type="BASE",value=14,name="ChaosMax",keywordFlags=0}},nil}c["110% increased Armour"]={{[1]={flags=0,type="INC",value=110,name="Armour",keywordFlags=0}},nil}c["+100 Strength Requirement"]={{[1]={flags=0,type="BASE",value=100,name="StrRequirement",keywordFlags=0}},nil}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage "}c["20% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-20,name="MovementSpeed",keywordFlags=0}},nil}c["25% increased Maximum total Recovery per second from Mana Leech"]={{[1]={flags=0,type="INC",value=25,name="MaxManaLeechRate",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="LightningDamageConvertToFire",keywordFlags=0},[3]={flags=0,type="BASE",value=50,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy "}c["10% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "}c["+6% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=6,name="SpellBlockChance",keywordFlags=0}},nil}c["10% reduced Frenzy Charge Duration per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="INC",value=-10,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["Leech Energy Shield instead of Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="GhostReaver",flags=0}},nil}c["70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=70,name="LifeRecoveryRate",keywordFlags=0},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=70,name="ManaRecoveryRate",keywordFlags=0},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,type="INC",value=70,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Added Lightning Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportAddedLightningDamage",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["+350 to Armour"]={{[1]={flags=0,type="BASE",value=350,name="Armour",keywordFlags=0}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}c["+160 to Armour"]={{[1]={flags=0,type="BASE",value=160,name="Armour",keywordFlags=0}},nil}c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={flags=0,type="INC",value=1,name="LootRarity",keywordFlags=0}}," per 15 Rampage Kills "}c["90% increased Armour"]={{[1]={flags=0,type="INC",value=90,name="Armour",keywordFlags=0}},nil}c["14% increased Melee Damage"]={{[1]={flags=256,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={[1]={type="PerStat",stat="LightningResistOver75",div=1},flags=0,type="INC",value=20,name="LightningDamage",keywordFlags=0}},nil}c["+10% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalResist",keywordFlags=0}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="OnConsecratedGround"},[2]={type="Condition",var="UsingFlask"},flags=0,type="BASE",keywordFlags=0,name="CritChance",value=2}},nil}c["36% increased Duration"]={{[1]={flags=0,type="INC",value=36,name="Duration",keywordFlags=0}},nil}c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"]={nil,"You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death "}c["Recover 100% of your maximum Life on use"]={nil,"Recover 100% of your maximum Life on use "}c["70% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["35% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=35,name="EnemyStunDuration",keywordFlags=0}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage "}c["Using Warcries is Instant 20% increased Warcry Buff Effect"]={nil,"Using Warcries is Instant 20% increased Warcry Buff Effect "}c["+30% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}c["Adds 19 to 30 Chaos Damage"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="ChaosMax",keywordFlags=0}},nil}c["Unaffected by Temporal Chains while affected by Haste {variant:25}Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="BASE",value=70,name="ColdMin",keywordFlags=0},[2]={[1]={type="SkillName",skillName="Temporal Chains"},flags=0,type="BASE",value=104,name="ColdMax",keywordFlags=0}},"Unaffected bywhile affected by Haste {variant:25} while affected by Hatred "}c["40% increased Damage if you have consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["+23% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=23,name="CritMultiplier",keywordFlags=0}},nil}c["40% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="ColdMin",keywordFlags=131072},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=20,name="ColdMax",keywordFlags=131072}},nil}c["320% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=320,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit"]={{}," to Fortify "}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you "}c["+64 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=64,name="EnergyShield",keywordFlags=0}},nil}c["Nearby Enemies have 100% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 100% reduced Life Regeneration rate "}c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["8% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=8,name="SpellDodgeChance",keywordFlags=0}},nil}c["10% increased Movement Speed"]={{[1]={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits"]={{}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits "}c["+29% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=29,name="LightningResist",keywordFlags=0}},nil}c["8% increased Movement Speed"]={{[1]={flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskManaRecovery",keywordFlags=0}},nil}c["150% increased Armour"]={{[1]={flags=0,type="INC",value=150,name="Armour",keywordFlags=0}},nil}c["30% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=30,name="EnemyShockEffect",keywordFlags=0}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second "}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=0}}," for each Summoned Can Summon up to 1 additional Golem at a time "}c["Adds 10 to 23 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=23,name="PhysicalMax",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 11 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportTrap",level=11},name="ExtraSupport",keywordFlags=0}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,type="BASE",value=20,name="AttackDodgeChance",keywordFlags=0}},nil}c["Every second, inflict Withered on nearby Enemies for 15 seconds"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds "}c["20% more Damage over Time"]={{[1]={flags=8,type="MORE",value=20,name="Damage",keywordFlags=0}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow "}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="BleedChance",keywordFlags=0}},nil}c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=21,name="PhysicalMax",keywordFlags=0}},nil}c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,type="INC",value=3,name="Dex",keywordFlags=0}}," Character Size 6% increased "}c["40% increased Rarity of Items Dropped by Frozen Enemies 40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=65536}}," Rarity of Items Dropped by Frozen Enemies 40% increased "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 "}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently Damage from your Critical Strikes cannot be Reflected"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,type="BASE",keywordFlags=0,name="PoisonChance",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed Damage from your Critical Strikes cannot be Reflected "}c["25% increased Knockback Distance"]={{[1]={flags=0,type="INC",value=25,name="EnemyKnockbackDistance",keywordFlags=0}},nil}c["Minions have 25% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=25,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["35% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=35,name="Damage",keywordFlags=65536}},nil}c["Adds 32 to 42 Physical Damage"]={{[1]={flags=0,type="BASE",value=32,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=42,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 32 to 42 Cold Damage"]={{[1]={flags=0,type="BASE",value=32,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=42,name="ColdMax",keywordFlags=0}},nil}c["25% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=25,name="EnemyShockEffect",keywordFlags=0}},nil}c["Adds 29 to 39 Physical Damage"]={{[1]={flags=0,type="BASE",value=29,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=39,name="PhysicalMax",keywordFlags=0}},nil}c["10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=8192}},nil}c["24% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Area Damage"]={{[1]={flags=512,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["30% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["Minions have 8% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyShockDuration",keywordFlags=0},[2]={flags=0,type="INC",value=10,name="EnemyFreezeDuration",keywordFlags=0},[3]={flags=0,type="INC",value=10,name="EnemyChillDuration",keywordFlags=0},[4]={flags=0,type="INC",value=10,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["20% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="PowerChargesDuration",keywordFlags=0}},nil}c["You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,type="BASE",value=8,name="AreaOfEffect",keywordFlags=8192}},"% increased for each "}c["Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences "}c["17% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=17,name="BlockChance",keywordFlags=0}},nil}c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=18,name="Defences",keywordFlags=0}},nil}c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,type="BASE",value=10,name="ProjectileSpeed",keywordFlags=0}}," to gain a Power Charge on Kill 5% increased "}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds "}c["Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload "}c["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["15% Chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellBlockChance",keywordFlags=0}},nil}c["30% Chance to Dodge Attack Hits. 50% less Armour, 30% less Energy Shield, 30% less Chance to Block Spell and Attack Damage"]={{[1]={value=30,type="BASE",keywordFlags=0,name="AttackDodgeChance",flags=0},[2]={value=-50,type="MORE",keywordFlags=0,name="Armour",flags=0},[3]={value=-30,type="MORE",keywordFlags=0,name="EnergyShield",flags=0},[4]={value=-30,type="MORE",keywordFlags=0,name="BlockChance",flags=0},[5]={value=-30,type="MORE",keywordFlags=0,name="SpellBlockChance",flags=0}},nil}c["30% more Spell Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,type="MORE",value=30,name="Damage",keywordFlags=0}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["50% chance to Cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["+3% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,type="BASE",value=3,name="BlockChance",keywordFlags=0}},nil}c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,type="LIST",value={skillId="FireBeam",level=25},name="ExtraSkill",keywordFlags=0}},nil}c["32% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=32,name="ElementalDamage",keywordFlags=0}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration "}c["With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit"]={nil,"With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit "}c["40% chance to Avoid being Stunned while Channelling"]={{[1]={flags=0,type="BASE",value=40,name="AvoidStun",keywordFlags=0}}," while Channelling "}c["Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"]={nil,"Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length "}c["10% chance to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit "}c["+1 to Level of Socketed Elemental Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="elemental",value=1},name="GemProperty",keywordFlags=0}},nil}c["2% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-2,name="ManaReserved",keywordFlags=0}},nil}c["45% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=45,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit "}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["10% reduced Damage taken from Blinded Enemies"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies "}c["100% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=100,name="ChaosDamage",keywordFlags=0}},nil}c["Adds 2 to 4 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",value=2,name="FireMin",keywordFlags=65536},[2]={[1]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",value=4,name="FireMax",keywordFlags=65536}},nil}c["38% increased Spell Damage"]={{[1]={flags=2,type="INC",value=38,name="Damage",keywordFlags=0}},nil}c["Adds 8 to 16 Fire Damage to Attacks"]={{[1]={flags=0,type="BASE",value=8,name="FireMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=16,name="FireMax",keywordFlags=65536}},nil}c["3% more Damage per Totem"]={{[1]={[1]={type="PerStat",stat="ActiveTotemLimit"},flags=0,type="MORE",value=3,name="Damage",keywordFlags=0}},nil}c["15% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=15,name="LootQuantity",keywordFlags=0}},nil}c["70% increased Spell Damage"]={{[1]={flags=2,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["Never deal Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NeverCrit",flags=0}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["10% increased Damage with Brand Skills"]={{[1]={[1]={type="SkillType",skillType=76},flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth "}c["+2 to Level of Socketed Chaos Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="chaos",value=2},name="GemProperty",keywordFlags=0}},nil}c["+20 to Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["26% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",keywordFlags=0}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["25% more Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=25,name="Damage",keywordFlags=2097152}},nil}c["Adds 36 to 102 Physical Damage"]={{[1]={flags=0,type="BASE",value=36,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=102,name="PhysicalMax",keywordFlags=0}},nil}c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=800,name="Armour",keywordFlags=0}},nil}c["+30 to all Attributes"]={{[1]={flags=0,type="BASE",value=30,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=30,name="Int",keywordFlags=0}},nil}c["Gain 15 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=15,name="Mana",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["Minions deal 35% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["12% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="INC",value=12,name="ElementalDamage",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["+500 to Zombie maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=500,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% increased Burning Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",keywordFlags=134217728}},nil}c["+2000 to Zombie maximum Life"]={{[1]={[1]={type="SkillName",skillName="Raise Zombie"},flags=0,type="LIST",value={mod={flags=0,type="BASE",value=2000,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["10% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["+145 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=145,name="EnergyShield",keywordFlags=0}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=210,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Spell Damage"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["60% increased Block Recovery"]={{[1]={flags=0,type="INC",value=60,name="BlockRecovery",keywordFlags=0}},nil}c["Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Forking "}c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Hindered"},flags=0,type="INC",value=80,name="Damage",keywordFlags=786432}},nil}c["25% chance to avoid Fire Damage when Hit {variant:2}You always Ignite while Burning"]={{[1]={flags=0,type="BASE",value=25,name="FireDamage",keywordFlags=0}}," to avoid when Hit {variant:2}You always Ignite while Burning "}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own "}c["You and Allies affected by your Aura Skills deal 20% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="AffectedByAuraMod",keywordFlags=0}},nil}c["90% increased Physical Damage"]={{[1]={flags=0,type="INC",value=90,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootRarity",keywordFlags=0}},nil}c["Adds 113 to 338 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=113,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=338,name="LightningMax",keywordFlags=131072}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}}," for each Summoned Sentinel of Purity "}c["15% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["30% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=0}},nil}c["30% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=30,name="Duration",keywordFlags=0}},nil}c["Adds 30 to 50 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="PhysicalMax",keywordFlags=0}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,type="INC",value=75,name="PhysicalDamage",keywordFlags=0}},nil}c["20% less Fire Damage taken"]={{[1]={flags=0,type="MORE",value=-20,name="FireDamageTaken",keywordFlags=0}},nil}c["Minions have 8% increased Cast Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining "}c["Adds 140 to 285 Cold Damage"]={{[1]={flags=0,type="BASE",value=140,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=285,name="ColdMax",keywordFlags=0}},nil}c["Adds 15 to 35 Physical Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="PhysicalMax",keywordFlags=0}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy "}c["Adds 36 to 50 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=36,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=50,name="ColdMax",keywordFlags=65536}},nil}c["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"]={nil,"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 "}c["18% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=18,name="Evasion",keywordFlags=0}},nil}c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=8192}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them "}c["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,type="INC",value=8,name="Speed",keywordFlags=16384}},nil}c["+38 to all Attributes"]={{[1]={flags=0,type="BASE",value=38,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=38,name="Int",keywordFlags=0}},nil}c["Adds 10 to 20 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=20,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 5 to 25 Physical Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill "}c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=true,type="FLAG",keywordFlags=0,name="NoCritMultiplier",flags=0}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=60,name="ChaosResist",keywordFlags=0}},nil}c["+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"]={{[1]={[1]={type="MultiplierThreshold",var="PrimordialItem",threshold=3},flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["+2 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving "}c["Elemental Equilibrium"]={{[1]={value="Elemental Equilibrium",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}c["Eldritch Battery"]={{[1]={value="Eldritch Battery",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["+35% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=35,name="ChaosResist",keywordFlags=0}},nil}c["10% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste"]={nil,"Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste "}c["Resolute Technique"]={{[1]={value="Resolute Technique",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",keywordFlags=65536,name="FireMin",value=4},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="PerStat",stat="Str",div=10},flags=0,type="BASE",keywordFlags=65536,name="FireMax",value=7}},nil}c["16% increased total Recovery per second from Life Leech"]={{[1]={flags=0,type="INC",value=16,name="LifeLeechRate",keywordFlags=0}},nil}c["+35% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=35,name="FireResist",keywordFlags=0}},nil}c["8% chance to Shock"]={{[1]={flags=0,type="BASE",value=8,name="EnemyShockChance",keywordFlags=0}},nil}c["204% increased Energy Shield"]={{[1]={flags=0,type="INC",value=204,name="EnergyShield",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge Gain a Power or Frenzy Charge each second while Channelling"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="Damage",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage Gain a Power or Frenzy Charge each second while Channelling "}c["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["+600 Strength and Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=600,name="StrRequirement",keywordFlags=0},[2]={flags=0,type="BASE",value=600,name="IntRequirement",keywordFlags=0}},nil}c["50% less Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=-50,name="Damage",keywordFlags=2097152}},nil}c["Summoned Skeletons' hits can't be Evaded"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},value={mod={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},type="LIST",keywordFlags=0,name="MinionModifier",flags=0}},nil}c["100% more Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=0,type="MORE",value=100,name="CritChance",keywordFlags=262144}},nil}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["600% increased Energy Shield"]={{[1]={flags=0,type="INC",value=600,name="EnergyShield",keywordFlags=0}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=263,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["18% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=18,name="EnergyShield",keywordFlags=0}},nil}c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=30,name="Mana",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["Gain 75 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="BASE",value=75,name="Armour",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["33% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,type="INC",value=33,name="Damage",keywordFlags=0}},nil}c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,type="INC",value=5,name="ElementalDamage",keywordFlags=0},[2]={flags=0,type="BASE",value=1,name="Multiplier:GrandSpectrum",keywordFlags=0}},nil}c["+6 to Maximum Life per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,type="BASE",value=6,name="Life",keywordFlags=0}},nil}c["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTrapLimit",keywordFlags=0}},nil}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["40% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-40,name="LightRadius",keywordFlags=0}},nil}c["25% of Block Chance applied to Spells {variant:5}+7% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=25,name="BlockChance",keywordFlags=0}}," applied to s {variant:5}+7% chance to Block Spell Damage "}c["280% increased Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EnergyShield",keywordFlags=0}},nil}c["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds "}c["22% increased Fire Damage"]={{[1]={flags=0,type="INC",value=22,name="FireDamage",keywordFlags=0}},nil}c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="FullLife"},flags=0,type="INC",value=100,name="CritChance",keywordFlags=262144}},nil}c["30% increased Elemental Damage with Attack Skills while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=65536}},nil}c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=145,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["Projectiles Pierce while Phasing"]={nil,"Projectiles Pierce while Phasing "}c["Adds Knockback during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},value=100,type="BASE",keywordFlags=0,name="EnemyKnockbackChance",flags=0}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance "}c["6% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,type="INC",value=6,name="Damage",keywordFlags=65536}},nil}c["Golem Skills have 25% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="INC",value=25,name="CooldownRecovery",keywordFlags=0}},nil}c["Adds 27 to 37 Physical Damage"]={{[1]={flags=0,type="BASE",value=27,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=37,name="PhysicalMax",keywordFlags=0}},nil}c["10% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["Your Golems are aggressive Primordial"]={nil,"Your Golems are aggressive Primordial "}c["+35 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=35,name="EnergyShield",keywordFlags=0}},nil}c["25% chance to avoid Fire Damage when Hit"]={{[1]={flags=0,type="BASE",value=25,name="FireDamage",keywordFlags=0}}," to avoid when Hit "}c["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=-25,name="GlobalAttributeRequirements",keywordFlags=0}},nil}c["10% increased Effect of Fortify on you"]={{[1]={flags=0,type="INC",value=10,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={{[1]={flags=0,type="BASE",value=60,name="ChaosPoisonChance",keywordFlags=0}},nil}c["Scion: +25 to All Attributes"]={{[1]={[1]={type="Condition",var="ConnectedToScionStart"},flags=0,type="BASE",value=25,name="Str",keywordFlags=0},[2]={[1]={type="Condition",var="ConnectedToScionStart"},flags=0,type="BASE",value=25,name="Dex",keywordFlags=0},[3]={[1]={type="Condition",var="ConnectedToScionStart"},flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}c["+25% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="LightningResist",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["+3% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=3,name="SpellBlockChance",keywordFlags=0}},nil}c["400% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=400,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius "}c["30% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,type="INC",value=-30,name="EnemyStunThreshold",keywordFlags=0}},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned "}c["Adds 1 to 2 Lightning Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=2,name="LightningMax",keywordFlags=65536}},nil}c["80% less Burning Damage"]={{[1]={flags=0,type="MORE",value=-80,name="FireDamage",keywordFlags=134217728}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=90,name="CritChance",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["Gain a Divine Charge on Hit"]={nil,"Gain a Divine Charge on Hit "}c["Your hits can't be Evaded"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud"]={{[1]={flags=0,type="INC",value=12,name="Speed",keywordFlags=0}}," per Ghost Shroud "}c["Adds 1 to 53 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=53,name="LightningMax",keywordFlags=0}},nil}c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=3,name="ChaosMax",keywordFlags=65536}},nil}c["0.5% of Attack Damage Leeched as Mana against Poisoned Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Poisoned"},flags=1,type="BASE",value=0.5,name="DamageManaLeech",keywordFlags=262144}},nil}c["30% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}c["100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillNameList={[1]="Blink Arrow",[2]="Mirror Arrow"}},flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=0}},nil}c["160% increased Armour"]={{[1]={flags=0,type="INC",value=160,name="Armour",keywordFlags=0}},nil}c["Instant Recovery"]={{[1]={value=100,type="BASE",keywordFlags=0,name="FlaskInstantRecovery",flags=0}},nil}c["10% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=1048576}},nil}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,type="BASE",value=40,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["+24 Mana gained when you Block {variant:1}20% reduced Movement Speed"]={{[1]={flags=0,type="BASE",value=24,name="Mana",keywordFlags=0}}," gained when you Block {variant:1}20% reduced Movement Speed "}c["Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire "}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,type="LIST",value={skillId="CrabAspect",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="MORE",value=-20,name="DamageTaken",keywordFlags=0}},nil}c["+19% to Cold Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=19,name="ColdDotMultiplier",keywordFlags=0}},nil}c["Gain Shocking Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ShockingConflux"},value=100,type="BASE",keywordFlags=0,name="EnemyShockChance",flags=0},[2]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="PhysicalCanShock",flags=0},[3]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="ColdCanShock",flags=0},[4]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="FireCanShock",flags=0},[5]={[1]={type="Condition",var="ShockingConflux"},value=true,type="FLAG",keywordFlags=0,name="ChaosCanShock",flags=0}},nil}c["13% increased Light Radius"]={{[1]={flags=0,type="INC",value=13,name="LightRadius",keywordFlags=0}},nil}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice "}c["each Impale on Enemy"]={nil,"each Impale on Enemy "}c["+120 to maximum Life"]={{[1]={flags=0,type="BASE",value=120,name="Life",keywordFlags=0}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you"]={{[1]={flags=0,type="BASE",value=35,name="AvoidStun",keywordFlags=0}}," for each Herald Skill affecting you "}c["20% increased Damage against Chilled Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Chilled"},flags=0,type="INC",value=20,name="Damage",keywordFlags=262144}},nil}c["+5% chance to Block Spell Damage"]={{[1]={flags=0,type="BASE",value=5,name="SpellBlockChance",keywordFlags=0}},nil}c["10% increased Strength"]={{[1]={flags=0,type="INC",value=10,name="Str",keywordFlags=0}},nil}c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["Socketed Gems are Supported by level 14 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportSpellTotem",level=14},name="ExtraSupport",keywordFlags=0}},nil}c["2% chance to Freeze"]={{[1]={flags=0,type="BASE",value=2,name="EnemyFreezeChance",keywordFlags=0}},nil}c["Elemental Hit deals 15% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Elemental Hit"},flags=0,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["Adds 85 to 160 Physical Damage"]={{[1]={flags=0,type="BASE",value=85,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=160,name="PhysicalMax",keywordFlags=0}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=0}},nil}c["With at least 40 Dexterity in Radius, Burning"]={nil,"With at least 40 Dexterity in Radius, Burning "}c["20% increased Effect of Auras on your Minions"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="AuraEffectOnSelf",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={type="SkillName",skillName="Frenzy"},flags=0,type="BASE",keywordFlags=0,name="Damage",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage "}c["3 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=3,name="ManaRegen",keywordFlags=0}},nil}c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ChaosInoculation",flags=0}},nil}c["Minions have +9% to all Elemental Resistances"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=9,name="ElementalResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={nil,"30 Energy Shield gained for each Enemy Hit while affected by Discipline "}c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["Minions have 5% increased Attack Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=1,type="INC",value=5,name="Speed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["3% increased Character Size 6% increased Strength"]={{[1]={flags=0,type="INC",value=3,name="Str",keywordFlags=0}}," Character Size 6% increased "}c["50% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}},nil}c["125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="BASE",value=125,name="LifeRegen",keywordFlags=0}},nil}c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="INC",value=80,name="CritChance",keywordFlags=262144}},nil}c["13% increased Fire Damage"]={{[1]={flags=0,type="INC",value=13,name="FireDamage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportGenerosity",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems "}c["Adds 15 to 25 Fire Damage"]={{[1]={flags=0,type="BASE",value=15,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="FireMax",keywordFlags=0}},nil}c["24% increased Trap Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=4096}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-20,name="EnemyStunThreshold",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies "}c["10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Crimson Dance"]={{[1]={value="Crimson Dance",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["8% increased Effect of Flasks on you"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["+50 to Armour"]={{[1]={flags=0,type="BASE",value=50,name="Armour",keywordFlags=0}},nil}c["+70 to maximum Life"]={{[1]={flags=0,type="BASE",value=70,name="Life",keywordFlags=0}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},nil}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 {variant:2}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 {variant:2}With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["+500 to maximum Life"]={{[1]={flags=0,type="BASE",value=500,name="Life",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["+30 to Dexterity"]={{[1]={flags=0,type="BASE",value=30,name="Dex",keywordFlags=0}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy "}c["Adds 1 to 30 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=1,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=30,name="ColdMax",keywordFlags=65536}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius "}c["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportFrenzyChargeOnSlayingFrozenEnemy",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill "}c["8% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "}c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you "}c["15% Chance to Block"]={{[1]={flags=0,type="BASE",value=15,name="BlockChance",keywordFlags=0}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,type="MORE",value=30,name="Damage",keywordFlags=0}}," while you have iron Reflexes "}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked "}c["+4% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=4,name="FireResistMax",keywordFlags=0},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=4,name="ColdResistMax",keywordFlags=0},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=4,name="LightningResistMax",keywordFlags=0}},nil}c["16% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill "}c["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["10% increased Warcry Buff Effect"]={{[1]={flags=0,type="INC",value=10,name="BuffEffect",keywordFlags=4}},nil}c["15% increased Fire Damage"]={{[1]={flags=0,type="INC",value=15,name="FireDamage",keywordFlags=0}},nil}c["Found Magic Items drop Identified"]={nil,"Found Magic Items drop Identified "}c["Minions have 7% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=7,name="AreaOfEffect",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Cannot Leech"]={nil,"Cannot Leech "}c["+1 Energy Shield gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="EnergyShield",keywordFlags=0}}," gained on Kill "}c["25% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=60,name="ManaCost",keywordFlags=0}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies "}c["Socketed Gems are Supported by level 10 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportBlind",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["+2 to Level of Socketed Lightning Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="lightning",value=2},name="GemProperty",keywordFlags=0}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["28% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}c["+8% chance to Evade Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,type="BASE",value=8,name="EvadeChance",keywordFlags=0}},nil}c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=15,name="ManaRegen",keywordFlags=0}},nil}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge 20% chance to gain a Power Charge on non-Critical Strike "}c["5% increased Skeleton Movement Speed"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="LIST",value={mod={flags=0,type="INC",value=5,name="MovementSpeed",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["3% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,type="BASE",value=3,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=3,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=3,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=3,name="AvoidIgnite",keywordFlags=0}},nil}c["+100 to Strength"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0}},nil}c["20% increased Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}},nil}c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=30,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-10,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks "}c["15% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="INC",value=15,name="Speed",keywordFlags=0},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["15% chance of Projectiles Piercing {variant:2}Projectiles Pierce an additional Target"]={{[1]={flags=0,type="BASE",value=15,name="ProjectileCount",keywordFlags=0}}," of Piercing {variant:2}Projectiles Pierce an additional Target "}c["2% of Life Regenerated per second with at least 400 Strength"]={{[1]={[1]={type="StatThreshold",stat="Str",threshold=400},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={{}," to gain aCharge on Killing a Frozen Enemy Skills Chain an additional time "}c["8% chance to Avoid Elemental Ailments"]={{[1]={flags=0,type="BASE",value=8,name="AvoidShock",keywordFlags=0},[2]={flags=0,type="BASE",value=8,name="AvoidFrozen",keywordFlags=0},[3]={flags=0,type="BASE",value=8,name="AvoidChilled",keywordFlags=0},[4]={flags=0,type="BASE",value=8,name="AvoidIgnite",keywordFlags=0}},nil}c["12% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",keywordFlags=65536}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova "}c["Grants level 10 Gluttony of Elements Skill"]={{[1]={flags=0,type="LIST",value={skillId="VaalAuraElementalDamageHealing",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["15% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=15,name="PoisonChance",keywordFlags=0}},nil}c["Your Critical Strike Chance is Lucky"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CritChanceLucky",flags=0}},nil}c["10% Chance to Cast level 18 Summon Spectral Wolf on Kill"]={{[1]={flags=0,type="LIST",value={skillId="SummonRigwaldsPack",level=18},name="ExtraSkill",keywordFlags=0}},nil}c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=262144}},nil}c["Minions deal 20% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Adds 20 to 30 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="ChaosMin",keywordFlags=196608},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="ChaosMax",keywordFlags=196608}},nil}c["3% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,type="INC",value=3,name="AreaOfEffect",keywordFlags=0}},nil}c["1% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={type="PerStat",stat="Int",div=10},flags=0,type="INC",value=1,name="Evasion",keywordFlags=0}},nil}c["Curse Enemies with level 10 Flammability on Hit"]={{[1]={flags=0,type="LIST",value={skillId="Flammability",level=10,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["20% increased Armour"]={{[1]={flags=0,type="INC",value=20,name="Armour",keywordFlags=0}},nil}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyChillDuration",keywordFlags=0}},nil}c["1% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["100% increased Chill Duration on Enemies when in Off Hand"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=100,name="EnemyChillDuration",keywordFlags=0}},nil}c["Has an additional Implicit Mod +30 to all Attributes"]={nil,"Has an additional Implicit Mod +30 to all Attributes "}c["30% increased Totem Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=16384}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration "}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy "}c["20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{}," when Placing s to Place an additional Mine 100% increased Mine Arming Speed "}c["Adds 2 to 5 Physical Damage"]={{[1]={flags=0,type="BASE",value=2,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=5,name="PhysicalMax",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,type="BASE",value=50,name="BleedChance",keywordFlags=0}},nil}c["Knocks Back Enemies in an Area on Flask use"]={nil,"Knocks Back Enemies in an Area on Flask use "}c["12% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed "}c["10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={{}," to gain a Power,or Endurance Charge on Hit "}c["Adds 3 to 6 Cold Damage to Spells"]={{[1]={flags=0,type="BASE",value=3,name="ColdMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=6,name="ColdMax",keywordFlags=131072}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=4096}},nil}c["8% additional Physical Damage Reduction while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,type="BASE",value=8,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,type="BASE",value=20,name="Armour",keywordFlags=65536}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy "}c["2% of Life Regenerated per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},nil}c["Adds 160 to 240 Fire Damage"]={{[1]={flags=0,type="BASE",value=160,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=240,name="FireMax",keywordFlags=0}},nil}c["6% increased Damage per Enemy Killed by you or your Totems Recently"]={{[1]={[1]={type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByTotemsRecently"}},flags=0,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,type="BASE",value=30,name="FireResist",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="ColdResist",keywordFlags=0}},nil}c["+6% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=6,name="ElementalResist",keywordFlags=0}},nil}c["8% increased Armour"]={{[1]={flags=0,type="INC",value=8,name="Armour",keywordFlags=0}},nil}c["Adds 60 to 90 Cold Damage"]={{[1]={flags=0,type="BASE",value=60,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=90,name="ColdMax",keywordFlags=0}},nil}c["4% reduced Mana Cost per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,type="INC",value=-4,name="ManaCost",keywordFlags=0}},nil}c["30% chance to Avoid being Chilled during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="AvoidChilled",keywordFlags=0}},nil}c["Adds 4 to 8 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=4,name="FireMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=8,name="FireMax",keywordFlags=0}},nil}c["Adds 80 to 375 Physical Damage"]={{[1]={flags=0,type="BASE",value=80,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=375,name="PhysicalMax",keywordFlags=0}},nil}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength and Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=25,name="Dex",keywordFlags=0}}," to Avoid interruption from Stuns while Casting +20 to "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius "}c["Adds 16 to 53 Lightning Damage to Spells"]={{[1]={flags=0,type="BASE",value=16,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=53,name="LightningMax",keywordFlags=131072}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield "}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted "}c["Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Shocks you inflict spread to other Enemies within a Radius of 15 "}c["Adds 135 to 360 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=135,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=360,name="LightningMax",keywordFlags=131072}},nil}c["Adds 25 to 45 Physical Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=45,name="PhysicalMax",keywordFlags=0}},nil}c["Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage "}c["+2 to Level of Socketed Fire Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="fire",value=2},name="GemProperty",keywordFlags=0}},nil}c["0.3% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.3,name="LifeRegenPercent",keywordFlags=0}},nil}c["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ElementalDamage",keywordFlags=0}},nil}c["Damage Penetrates 1% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=1,name="ElementalPenetration",keywordFlags=0}},nil}c["4% chance to deal Double Damage"]={{[1]={flags=0,type="BASE",value=4,name="DoubleDamageChance",keywordFlags=0}},nil}c["5% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=5,name="ManaRegen",keywordFlags=0}},nil}c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=0}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,type="INC",value=18,name="Mana",keywordFlags=0}},nil}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"]={{[1]={flags=0,type="LIST",value={skillId="BloodRage",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{}," to gain Arcane Surge when you Kill an Enemy "}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased Attack Speed"]={{[1]={flags=1,type="BASE",value=10,name="Speed",keywordFlags=0}}," to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased "}c["36% chance to deal Double Damage while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,type="BASE",value=36,name="DoubleDamageChance",keywordFlags=0}},nil}c["Adds 110 to 158 Physical Damage against Bleeding Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=110,name="PhysicalMin",keywordFlags=262144},[2]={[1]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",value=158,name="PhysicalMax",keywordFlags=262144}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold "}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=128}},nil}c["+25% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",keywordFlags=0}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,type="INC",value=14,name="Damage",keywordFlags=65536}},nil}c["2% increased Attack and Cast Speed for each corpse consumed Recently"]={{[1]={[1]={type="Multiplier",var="CorpseConsumedRecently"},flags=0,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding "}c["+30 to Strength"]={{[1]={flags=0,type="BASE",value=30,name="Str",keywordFlags=0}},nil}c["4% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=4,name="CurseEffect",keywordFlags=0}},nil}c["20% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["4% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,type="INC",value=-4,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,type="BASE",value=100,name="PhysicalDamageGainAsLightning",keywordFlags=0},[2]={flags=8192,type="BASE",value=100,name="PhysicalDamageGainAsCold",keywordFlags=0},[3]={flags=8192,type="BASE",value=100,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["90% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=90,name="ChaosDamage",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["12% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=65536}},nil}c["+2% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,type="BASE",value=2,name="SpellBlockChance",keywordFlags=0}},nil}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Shocks you cause are reflected back to you 60% increased Damage while Shocked"]={nil,"Shocks you cause are reflected back to you 60% increased Damage while Shocked "}c["Adds 30 to 41 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=41,name="PhysicalMax",keywordFlags=0}},nil}c["+225 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=225,name="Accuracy",keywordFlags=0}},nil}c["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=90,name="CritChance",keywordFlags=0}},nil}c["215% increased Energy Shield"]={{[1]={flags=0,type="INC",value=215,name="EnergyShield",keywordFlags=0}},nil}c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=30,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["75% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=75,name="ProjectileSpeed",keywordFlags=0}},nil}c["50% increased Physical Damage"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamage",keywordFlags=0}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life "}c["Adds 30 to 95 Physical Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=95,name="PhysicalMax",keywordFlags=0}},nil}c["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,type="LIST",value={skillId="AssassinsMark",level=10,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["Minions deal 10% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=10,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+15 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=15,name="ManaOnHit",keywordFlags=0}},nil}c["Adds 75 to 220 Physical Damage"]={{[1]={flags=0,type="BASE",value=75,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=220,name="PhysicalMax",keywordFlags=0}},nil}c["Arrows that Pierce cause Bleeding"]={{[1]={[1]={type="StatThreshold",stat="PierceCount",threshold=1},value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=1025}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently {variant:1}60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently {variant:1}60% increased Damage for each 200 total Mana you have Spent Recently "}c["Herald of Agony has 38% reduced Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Herald of Agony"},flags=0,type="INC",value=-38,name="ManaReserved",keywordFlags=0}},nil}c["Movement Skills cost no Mana"]={{[1]={value=-100,type="MORE",keywordFlags=8,name="ManaCost",flags=0}},nil}c["Adds 1 to 75 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=75,name="LightningMax",keywordFlags=0}},nil}c["20% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=20,name="CritChance",keywordFlags=0}},nil}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["12% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["7% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=7,name="Damage",keywordFlags=0}},nil}c["+24 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=24,name="EnergyShield",keywordFlags=0}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies "}c["+15 to Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="Dex",keywordFlags=0}},nil}c["5% increased Dexterity"]={{[1]={flags=0,type="INC",value=5,name="Dex",keywordFlags=0}},nil}c["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges"]={nil,"Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges "}c["15% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},nil}c["Extra Gore"]={nil,"Extra Gore "}c["15% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",keywordFlags=65536}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["+5 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="LifeOnKill",keywordFlags=0}},nil}c["Adds 85 to 118 Physical Damage"]={{[1]={flags=0,type="BASE",value=85,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=118,name="PhysicalMax",keywordFlags=0}},nil}c["Adds 14 to 22 Physical Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=22,name="PhysicalMax",keywordFlags=0}},nil}c["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="DamageLifeLeech",keywordFlags=0}},nil}c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["+16 to all Attributes"]={{[1]={flags=0,type="BASE",value=16,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=16,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=16,name="Int",keywordFlags=0}},nil}c["180% increased Armour"]={{[1]={flags=0,type="INC",value=180,name="Armour",keywordFlags=0}},nil}c["Gore Footprints"]={nil,"Gore Footprints "}c["or Unique Enemy"]={nil,"or Unique Enemy "}c["20% of Block Chance applied to Spells {variant:2}+6% chance to Block Spell Damage"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," applied to s {variant:2}+6% chance to Block Spell Damage "}c["+160 Dexterity Requirement"]={{[1]={flags=0,type="BASE",value=160,name="DexRequirement",keywordFlags=0}},nil}c["12% Chance to Block"]={{[1]={flags=0,type="BASE",value=12,name="BlockChance",keywordFlags=0}},nil}c["+0 seconds to Avian's Flight Duration"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Avian"},flags=0,type="BASE",value=0,name="SecondaryDuration",keywordFlags=0}},nil}c["80% increased Armour"]={{[1]={flags=0,type="INC",value=80,name="Armour",keywordFlags=0}},nil}c["40% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="LightningDamage",keywordFlags=0}},nil}c["+50 to all Attributes"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=50,name="Int",keywordFlags=0}},nil}c["30% chance to Avoid being Ignited"]={{[1]={flags=0,type="BASE",value=30,name="AvoidIgnite",keywordFlags=0}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline "}c["7% chance to Ignite"]={{[1]={flags=0,type="BASE",value=7,name="EnemyIgniteChance",keywordFlags=0}},nil}c["10% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-10,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 5 to 12 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=12,name="PhysicalMax",keywordFlags=65536}},nil}c["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,type="BASE",value=200,name="Accuracy",keywordFlags=0}},nil}c["25% increased Area of Effect while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,type="BASE",value=40,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["10% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["10% chance to Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="RareOrUnique"},flags=0,type="BASE",value=120,name="EnergyShieldRegen",keywordFlags=0}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and "}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",keywordFlags=0}},nil}c["+20 Energy Shield gained on Kill +1 to Level of Socketed Elemental Gems"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}}," gained on Kill +1 to Level of Socketed Elemental Gems "}c["10% increased Area of Effect"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=0}},nil}c["Arrows Pierce all Targets"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PierceAllTargets",flags=1}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,type="INC",value=25,name="Damage",keywordFlags=65536}},nil}c["Adds 3 to 30 Lightning Damage"]={{[1]={flags=0,type="BASE",value=3,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=30,name="LightningMax",keywordFlags=0}},nil}c["20% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["20% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="BlockChance",keywordFlags=0}},nil}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=115,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["220% increased Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EnergyShield",keywordFlags=0}},nil}c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=100,name="Defences",keywordFlags=0}},nil}c["Adds 5 to 12 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=5,name="FireMin",keywordFlags=65536},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,type="BASE",value=12,name="FireMax",keywordFlags=65536}},nil}c["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "}c["10% reduced Physical Damage taken over time"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamageTakenOverTime",keywordFlags=0}},nil}c["18% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,type="INC",value=18,name="Damage",keywordFlags=65536}},nil}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={skillId="SupportManaLeech",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["45% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=45,name="AreaOfEffect",keywordFlags=0}},nil}c["135% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=135,name="Evasion",keywordFlags=0}},nil}c["You lose Virulence 50% slower"]={nil,"You lose Virulence 50% slower "}c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,type="BASE",value=110,name="PhysicalDamage",keywordFlags=0}}," Bow as Extra Damage of an Element "}c["You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=8,name="MovementSpeed",keywordFlags=0}},name="ExtraAura",keywordFlags=0}},nil}c["Has 2 Sockets"]={{[1]={flags=0,type="BASE",value=2,name="SocketCount",keywordFlags=0}},nil}c["Ancestral Bond"]={{[1]={value="Ancestral Bond",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=10,name="ElementalDamage",keywordFlags=0}},nil}c["Attacks with this Weapon deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="MultiplierThreshold",actor="enemy",var="PoisonStack",threshold=5},flags=0,type="BASE",keywordFlags=0,name="ChaosMin",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="MultiplierThreshold",actor="enemy",var="PoisonStack",threshold=5},flags=0,type="BASE",keywordFlags=0,name="ChaosMax",value=120}},nil}c["+10% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=10,name="LightningResist",keywordFlags=0}},nil}c["10% more Chaos Damage with Attack Skills"]={{[1]={flags=0,type="MORE",value=10,name="ChaosDamage",keywordFlags=65536}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={{},nil}c["23% increased Spell Damage"]={{[1]={flags=2,type="INC",value=23,name="Damage",keywordFlags=0}},nil}c["Minions Regenerate 0.5% Life per second"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+1% to Critical Strike Chance"]={{[1]={flags=0,type="BASE",value=1,name="CritChance",keywordFlags=0}},nil}c["+14% to Cold and Lightning Resistances"]={{[1]={flags=0,type="BASE",value=14,name="ColdResist",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="LightningResist",keywordFlags=0}},nil}c["Minions gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill "}c["You have Phasing during Onslaught"]={nil,"You have Phasing during Onslaught "}c["38% increased Duration"]={{[1]={flags=0,type="INC",value=38,name="Duration",keywordFlags=0}},nil}c["40% increased maximum Life"]={{[1]={flags=0,type="INC",value=40,name="Life",keywordFlags=0}},nil}c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,type="INC",value=50,name="FlaskLifeRecoveryRate",keywordFlags=0}},nil}c["35% increased maximum Life"]={{[1]={flags=0,type="INC",value=35,name="Life",keywordFlags=0}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit "}c["+28% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=28,name="ColdResist",keywordFlags=0}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit "}c["30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=30,name="Damage",keywordFlags=65536}},nil}c["15% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["80% increased Damage against Hindered Enemies"]={{[1]={[1]={type="ActorCondition",actor="enemy",var="Hindered"},flags=0,type="INC",value=80,name="Damage",keywordFlags=262144}},nil}c["6% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["88% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={type="StatThreshold",stat="Dex",threshold=300},flags=0,type="INC",value=88,name="Damage",keywordFlags=1048576}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,type="BASE",value=55,name="ChaosDotMultiplier",keywordFlags=0}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["25% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={type="SkillType",skillType=63},flags=0,type="INC",value=-25,name="ManaReserved",keywordFlags=0}},nil}c["18% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={[1]={type="PerStat",stat="ColdResistOver75",div=1},flags=0,type="INC",value=18,name="ColdDamage",keywordFlags=0}},nil}c["50% increased Cold Damage"]={{[1]={flags=0,type="INC",value=50,name="ColdDamage",keywordFlags=0}},nil}c["Avatar of Fire"]={{[1]={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Adds 7 to 25 Physical Damage to Attacks"]={{[1]={flags=0,type="BASE",value=7,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=65536}},nil}c["Adds 8 to 19 Physical Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=19,name="PhysicalMax",keywordFlags=0}},nil}c["Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage "}c["9% increased Movement Speed"]={{[1]={flags=0,type="INC",value=9,name="MovementSpeed",keywordFlags=0}},nil}c["Adds 10 to 15 Physical Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=15,name="PhysicalMax",keywordFlags=0}},nil}c["8% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=8,name="MineLayingSpeed",keywordFlags=0}},nil}c["Minions have 40% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=40,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=25,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["3% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["+33 to Dexterity"]={{[1]={flags=0,type="BASE",value=33,name="Dex",keywordFlags=0}},nil}c["Minions have 30% increased maximum Life"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Life",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,type="BASE",value=60,name="CritMultiplier",keywordFlags=0}},nil}c["+1 to Level of Socketed Aura Gems"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={key="level",keyword="aura",value=1},name="GemProperty",keywordFlags=0}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["16% Chance to Block"]={{[1]={flags=0,type="BASE",value=16,name="BlockChance",keywordFlags=0}},nil}c["Adds 6 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,type="BASE",value=6,name="PhysicalMin",keywordFlags=0},[2]={flags=8192,type="BASE",value=10,name="PhysicalMax",keywordFlags=0}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["175% increased Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=175,name="Duration",keywordFlags=0}},nil} \ No newline at end of file +local c=...c["20% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["16% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=16}},nil}c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.15}},nil}c["10% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=10}},nil}c["Inflicts a random level 20 Curse on you when your Totems die"]={nil,"Inflicts a random level 20 Curse on you when your Totems die "}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets "}c["10% reduced Enemy Stun Threshold with Bows"]={{[1]={flags=8192,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["30% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds "}c["You have Far Shot while you do not have Iron Reflexes"]={nil,"You have Far Shot while you do not have Iron Reflexes "}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. {variant:2}With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["Adds 18 to 32 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=32}},nil}c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["+21 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=21}},nil}c["12% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=12}},nil}c["25% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=25}},nil}c["14% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=14}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 seconds on Kill "}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["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50}},nil}c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["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["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["15% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=15}},nil}c["40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["30% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=30}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike "}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["40% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=40}},nil}c["The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil}c["-5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0% 5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=1,keywordFlags=262144,name="CritChance",type="BASE",value=50}}," to Maim on Hit +0.1% to 5% increased Poison Duration for each Poison you have inflicted Recently "}c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil}c["Your Hits can't be Evaded by Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["24% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["3% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=3}},nil}c["5% increased Effect of Fortify on you"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=5}},nil}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["20% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil}c["Gain Onslaught for 10 seconds on Kill"]={nil,"Gain Onslaught for 10 seconds on Kill "}c["Adds Knockback to Melee Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=28}},nil}c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=1}}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["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"]={nil,"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 "}c["+27% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=27}},nil}c["Minions have 10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=10}}}},nil}c["Channelling Skills have -3 to Total Mana Cost"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-3}},nil}c["50% chance to inflict Bleeding on Critical Strike with Attacks"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=65536,name="BleedChance",type="BASE",value=50}},nil}c["20% chance to Maim on Hit"]={{}," to Maim on Hit "}c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["20% increased Flask Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["+5% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil}c["25% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=6.25}},nil}c["+3% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShadeForm"}}},nil}c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=5}},nil}c["16% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=16}},nil}c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["16% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["0.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.6}},nil}c["Reflects 260 Physical Damage to Melee Attackers"]={{},nil}c["+15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15}},nil}c["200 Energy Shield Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=200}},nil}c["Minions deal 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently "}c["13% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},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["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"]={nil,nil}c["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius "}c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=125}},nil}c["144% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=144}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=32}},nil}c["35% less Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="MORE",value=-35}},nil}c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil}c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members "}c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems "}c["+173 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=173}},nil}c["Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect {variant:9,10,11,12}Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["+40 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["Adds 35 to 105 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=35},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=105}},nil}c["62% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=62}},nil}c["Lose Souls gained from Soul Eater on Flask Use"]={nil,"Lose Souls gained from Soul Eater on Flask Use "}c["Cannot be Ignited while on Low Life"]={nil,"Cannot be Ignited while on Low Life "}c["+100% to Fire Resistance when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem "}c["+15% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Spend Energy Shield before Mana for Skill Costs"]={{},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=100}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PowerChargesDuration",type="BASE",value=10}}," to Steal Power, Frenzy, and Endurance Charges on Hit {variant:1}30% reduced Endurance,and "}c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["25% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["40% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=40}},nil}c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial "}c["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["You gain a Power Charge on use You gain a Frenzy Charge on use"]={nil,"You gain a Power Charge on use You gain a Frenzy Charge on use "}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["+25% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{}," "}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["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40}},nil}c["10% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["Aspect of the Cat Reserves no Mana"]={{[1]={[1]={skillId="CatAspect",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Gain a Power or Frenzy Charge each second while Channelling"]={nil,"Gain a Power or Frenzy Charge each second while Channelling "}c["3% increased Attack Speed with Staves"]={{[1]={flags=131073,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating "}c["-20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-20}},nil}c["10% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["2 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=38}},nil}c["100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield "}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["Adds 17 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals "}c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["10% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-10}},nil}c["Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="MinionInstability"}}},nil}c["Knockback direction is reversed"]={nil,"Knockback direction is reversed "}c["+3% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["Your Critical Strikes have Culling Strike"]={nil,"Your Critical Strikes have Culling Strike "}c["13% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["+10 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}},nil}c["10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["You Regenerate 0.5% of Mana per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem "}c["Adds 6 to 14 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=14}},nil}c["Skills that would Summon a Totem Summon two Totems instead"]={nil,"Skills that would Summon a Totem Summon two Totems instead "}c["20% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["10% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+45 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=45}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies "}c["Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["30% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={nil,"Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield "}c["Minions Regenerate 2.5% Life per Second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2.5}}}},nil}c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["18% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Adds 110 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered {variant:1}30% increased Fire Damage against Blinded Enemies "}c["8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=25}},nil}c["You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies"]={nil,"You Cannot Be Shocked While Chilled {variant:2}50% chance to Shock Chilled Enemies "}c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20}},nil}c["20% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["Socketed Gems are Supported by Level 20 Greater Volley"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="UniqueSupportGreaterVolley"}}},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["8% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Cannot inflict Shock"]={{[1]={flags=0,keywordFlags=0,name="CannotShock",type="FLAG",value=true}},nil}c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["Movement Speed cannot be modified to below base value"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["26% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=26}},nil}c["+28 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=28}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["Adds 9 to 13 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=13}},nil}c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% "}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life "}c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder You cannot be Hindered "}c["Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding "}c["Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage "}c["30% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["40% reduced Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-40}},nil}c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["15% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["Attacks have 60% chance to Poison while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"]={nil,"Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial "}c["5% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=5}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Gain 5% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageGainAsChaos",type="BASE",value=5}},nil}c["Adds 35 to 65 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=35},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil}c["4% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["6% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=6}},nil}c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=60}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds "}c["Adds 60 to 80 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=80}},nil}c["10% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["60% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["4% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["The Effect of Chill on you is reversed"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffectIsReversed",type="FLAG",value=true}},nil}c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-15}},nil}c["10% chance to gain Onslaught for 4 seconds on Kill 25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to gain Onslaught for 4 seconds on Kill 25% increased "}c["Auras from your Skills grant 3% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect "}c["10% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=10}},nil}c["5% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=5}},nil}c["10% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["20% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["Triggers level 20 Death Walk when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="DeathWalk"}}},nil}c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand"]={{}," to gain aCharge on Kill "}c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=20}},nil}c["20% of Physical Damage Converted to Lightning during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=20}},nil}c["10% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation "}c["Cannot be Chilled while you have Onslaught"]={nil,"Cannot be Chilled while you have Onslaught "}c["Every 8 seconds, gain Avatar of Fire for 4 seconds"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds "}c["30% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["+4% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["Creates Consecrated Ground on Use"]={{},nil}c["You have no Life Regeneration"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["Damage from your Critical Strikes cannot be Reflected"]={nil,"Damage from your Critical Strikes cannot be Reflected "}c["16% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["10% chance to gain Onslaught for 4 seconds on Kill"]={{}," to gain Onslaught for 4 seconds on Kill "}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning "}c["138% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=138}},nil}c["30% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["+25 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}},nil}c["5% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=5}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline {variant:15}2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," "}c["1% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"]={nil,"You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life "}c["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=15}},nil}c["15% reduced Mana Cost of Minion Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}}," Minion Skills "}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield "}c["20% chance to gain an Endurance Charge when you Block Extra gore"]={{}," to gain an Endurance Charge when you Block Extra gore "}c["225% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=225}},nil}c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances "}c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Phase Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Phase Acrobatics"}},nil}c["40% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=40}},nil}c["+48 Life gained when you Block {variant:1}+20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block {variant:1}+20 Mana gained when you Block "}c["+900 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=900}},nil}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full You and nearby Allies have 8% increased Movement Speed "}c["+24 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["100% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={[1]={div=5,stat="ArmourOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["Adds 6 to 13 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=13}},nil}c["6% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["You have Consecrated Ground around you while stationary"]={nil,"You have Consecrated Ground around you while stationary "}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={minionList={[1]="RaisedZombie"},skillId="BeaconZombieCausticCloud"}}},nil}c["50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=50},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=50}},nil}c["Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life"]={nil,"Gain an Endurance Charge when you take a Critical Strike {variant:1,2,3}2% of Life Regenerated per Second while on Low Life "}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsCold",type="BASE",value=100}},nil}c["+240 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=240}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={level=21,skillId="Despair"}}},nil}c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["+140 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=140}},nil}c["Cannot Evade enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=25}},nil}c["Gain an Endurance Charge every second if you've been Hit Recently"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently "}c["You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited "}c["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes "}c["+13% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=13}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=10}},nil}c["15% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield "}c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil}c["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeAsChaos",type="BASE",value=200}}," Leech applies to enemies 15% increased Movement Speed "}c["Purity of Elements Reserves no Mana"]={{[1]={[1]={skillId="Purity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Golems have 40% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-40}}}},nil}c["30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8192,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=2}},nil}c["+60 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60}},nil}c["With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing"]={nil,"With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing "}c["75% chance to cause Enemies to Flee on use"]={{}," to cause Enemies to Flee on use "}c["25% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["Unaffected by Burning Ground while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire "}c["Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike {variant:2}Nearby Allies have Culling Strike "}c["24% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["15% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=15}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill "}c["-2 Physical Damage taken from Attacks 40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks 40% of Physical Damage taken reflected to Attacker "}c["20% increased Accuracy Rating with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["330% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=330}},nil}c["Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges "}c["Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy {variant:1}20% less Minimum Physical Attack Damage "}c["115% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=115}},nil}c["+28% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["Spell Skills have 10% increased Area of Effect"]={{[1]={flags=2,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["12% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["Life Regeneration has no effect."]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["275% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=275}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["+20 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=20}},nil}c["6% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["24% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["18% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["15% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=15}},nil}c["9% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=9}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances 15% chance for your Flasks to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds 15% chance for your Flasks to not consume Charges "}c["90 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=90}},nil}c["Zombies deal 100% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=100}}}},nil}c["10% chance to gain a Power Charge when you Block +6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain a Power Charge when you Block +6% Chance "}c["3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=3}},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["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}},nil}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage "}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill Conduit"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill Conduit "}c["+9% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=9}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["22% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=22}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second "}c["Minions Leech 0.6% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}}}},nil}c["40% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=40}},nil}c["50% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["Cannot Block Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}},nil}c["8% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=80}},nil}c["Take 200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"]={nil,"200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield "}c["Adds 35 to 90 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=90}},nil}c["4% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}}},nil}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["8% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["+36 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=36}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element {variant:5}Gain 100% of Bow Physical Damage as Extra Damage of an Element "}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=30}},nil}c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "}c["+20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill "}c["-10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-10}},nil}c["+60% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["20% chance to gain a Endurance Charge on Kill {variant:24}4% of Life Regenerated per second"]={{}," "}c["50% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=50}},nil}c["10% of Physical Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill "}c["2% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["0.7% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.7}},nil}c["20% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Your Critical Strike Chance is Lucky while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["Adds 12 to 22 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["All Sockets are White"]={nil,"All Sockets are White "}c["Bow Attacks have 10% chance to cause Bleeding"]={{[1]={flags=0,keywordFlags=512,name="BleedChance",type="BASE",value=10}},nil}c["111% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=111},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=111},[3]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=111},[4]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=111},[5]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=111},[6]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=111}},nil}c["2% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=2}},nil}c["20% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=20}},nil}c["20% chance to Avoid Projectiles while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid "}c["Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges"]={nil,"Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges "}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={{[1]={flags=8388608,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element "}c["10% chance to Curse Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit "}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["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["Your Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["+12 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=12}},nil}c["+33 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=33}},nil}c["Minions Recover 1% of their Maximum Life when they Block"]={nil,"Recover 1% of their Maximum Life when they Block "}c["60% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=60}},nil}c["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["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["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["+96 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=96}},nil}c["+1000 Armour while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire {variant:2}+2000 Armour while you do not have Avatar of Fire "}c["Your Chaos Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention "}c["20% less Lightning Damage taken"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTaken",type="MORE",value=-20}},nil}c["200% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=200}},nil}c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["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."]={nil,"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. "}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use "}c["13% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicItem"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Adds 75 to 358 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=358}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=30}}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["+100 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["Burning Hoofprints"]={nil,"Burning Hoofprints "}c["15% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=50}},nil}c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked Enemies "}c["Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["+10 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}},nil}c["16% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["8% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}}," Impale "}c["+175 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=175}},nil}c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=70}},nil}c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["You gain Unholy Might for 10 seconds on Block"]={nil,"You gain Unholy Might for 10 seconds on Block "}c["2% increased Attack Speed with Staves"]={{[1]={flags=131073,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["30% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["15% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-15}},nil}c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=30}},nil}c["For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-8},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-8},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-8}},nil}c["+13 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=13}},nil}c["10% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["20% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["12% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["8% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+113% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=113}},nil}c["Socketed Gems are Supported by level 15 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill "}c["Lose 15 Life for each Enemy hit by your Spells"]={nil,"Lose 15 Life for each Enemy hit by your Spells "}c["16% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["320% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=320}},nil}c["Adds 25 to 36 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=36}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Trigger Commandment of Inferno on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="EnchantmentOfInfernoOnKill4"}}},nil}c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=30}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=110},[2]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=110},[3]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=110}},nil}c["Phasing"]={{[1]={flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=10}},nil}c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10}},nil}c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["33% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["40% chance to Chill Attackers for 4 seconds on Block 40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," to Chill Attackers for 4 seconds on Block 40% chance Attackers for 4 seconds on Block "}c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["80% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=80}},nil}c["Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["19% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=19}},nil}c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use "}c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy "}c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},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["+48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block "}c["Grants level 22 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Blight"}}},nil}c["12% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["20% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=20}},nil}c["80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Minions have +5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil}c["21% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=21}},nil}c["74% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=74}},nil}c["8% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=56}}},[2]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=88}}}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy "}c["+30 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=30}},nil}c["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["50% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}c["6% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=6}},nil}c["10% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies "}c["Gain 5% of Lightning Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsChaos",type="BASE",value=5}},nil}c["Enemies Ignited by an Attack Burn 20% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=20}},nil}c["Adds 38 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={nil,"Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets "}c["0.5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["100% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions "}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=340}},nil}c["+3 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=3}}},nil}c["Critical Strikes have Culling Strike"]={nil,"Critical Strikes have Culling Strike "}c["50% increased Effect of Socketed Jewels"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=50}},nil}c["Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning"]={nil,"Unaffected by Frostbite while affected by Purity of Ice {variant:41}Immune to Shock while affected by Purity of Lightning "}c["You have no Armour or Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-100}},nil}c["12% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["100% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["20% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded "}c["10% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=50}},nil}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["+70 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=70}},nil}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["Immune to Shock while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning "}c["Adds 1 to 4 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=4}},nil}c["5% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}}," Experience gain 20% increased "}c["14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=14}},nil}c["Curse Enemies with Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="TemporalChains"}}},nil}c["90% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["+13 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13}},nil}c["10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Cold-only Splash Damage to surrounding targets"]={nil,"Cold-only Splash Damage to surrounding targets "}c["Regenerate 35 Mana per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=35}},nil}c["20% Chance for Energy Shield Recharge to Start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," for Recharge to Start when you Block "}c["+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["30% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["10% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil}c["25% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Culling Strike Life Leech effects are not removed at Full Life"]={nil,"Culling Strike Life Leech effects are not removed at Full Life "}c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=155}},nil}c["Cannot be Shocked if Intelligence is higher than Strength"]={{[1]={[1]={type="Condition",var="IntHigherThanStr"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["+150 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["+1 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block "}c["Adds 6 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["+1 Energy Shield gained on Kill per Level {variant:3,4}+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill {variant:3,4}+1 to maximum Life "}c["50% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["20% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit "}c["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 24 to 36 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=36}},nil}c["100% increased Spell Damage taken when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana {variant:2}25% increased Spell Damage taken when on Low Mana "}c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-40}},nil}c["5% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=5}},nil}c["5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Discipline Reserves no Mana"]={{[1]={[1]={skillId="Discipline",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["30% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["20% reduced Chill Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You "}c["+65 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=65}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}},nil}c["20% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["Adds 2 to 3 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=3}},nil}c["-5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=-5},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=-5},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-5}},nil}c["1% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=1}},nil}c["30% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["+12% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["+12% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["25% chance to Scorch Enemies Cannot inflict Ignite"]={{}," to Scorch Enemies Cannot inflict Ignite "}c["+2 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["30% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block"]={{}," to gain Unholy Might on Block for 3 seconds {variant:2}You gain Unholy Might for 10 seconds on Block "}c["10% increased Brand Attachment range"]={{}," Brand Attachment range "}c["30% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill "}c["Socketed Gems are supported by level 25 Melee Splash"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportMeleeSplash"}}},nil}c["Gain 5% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=5}},nil}c["3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Speed",type="INC",value=3}}," for each Map Item Modifier affecting the "}c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level "}c["You cannot Recharge Energy Shield"]={nil,"You cannot Recharge Energy Shield "}c["10% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=3}},nil}c["190% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=190}},nil}c["You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"]={nil,"You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill "}c["+60 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["2% additional Chance to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="BASE",value=2}}," to receive a Critical Strike {variant:1,2,3,4}Nearby Enemies have 10% reduced "}c["Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently"]={{[1]={[1]={type="Condition",varList={[1]="KilledRecently",[2]="MinionsKilledRecently"}},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}}},nil}c["Gain Chilling, Shocking and Igniting Conflux for 2 seconds"]={{},nil}c["20% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["25% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["Curse Enemies with level 5 Vulnerability on Block"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,noSupports=true,skillId="Vulnerability"}}},nil}c["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen "}c["+100% to Cold Resistance when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem "}c["Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="EnduranceChargeOnMeleeStun"}}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=310}},nil}c["40% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["230% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=230}},nil}c["Spell Skills have 5% increased Area of Effect"]={{[1]={flags=2,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Zombies deal 90% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=90}}}},nil}c["Your Cold Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true}},nil}c["+15% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["10% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["25% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["Golems have +1000 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit "}c["175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=175}},nil}c["Adds 2 to 3 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=3}},nil}c["4% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=4}},nil}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=63}},nil}c["Herald of Purity has 40% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["Attacks always inflict Bleeding while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["30% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["75% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=75}},nil}c["16% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value "}c["Enemies you Kill that are affected by Elemental Ailments"]={nil,"Enemies you Kill that are affected by Elemental Ailments "}c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}},nil}c["+28 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=28}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:2}100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["10% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil}c["Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use {variant:3}Recover 100% of your maximum Life on use "}c["Spectres have 100% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["2% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["50% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=50}},nil}c["15% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["40% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["50% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=50}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed "}c["+600 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=600}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Staff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["25% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["Adds 25 to 50 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=50}},nil}c["+220 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=220}},nil}c["+3% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=3}},nil}c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Channelling Skills have 5% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["20% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life "}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["25% increased Zombie Size {variant:1,2,3}Zombies deal 100% increased Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}}}}," Size {variant:1,2,3}Zombies deal 100% increased "}c["+2 to Level of Socketed Herald Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="herald",value=2}}},nil}c["12% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=12}},nil}c["Recover 5% of Maximum Life on Kill"]={nil,"Recover 5% of Maximum Life on Kill "}c["+40 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40}},nil}c["20% of Fire Damage taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=20}},nil}c["Socketed Curse Skills ignore Curse Limit +40 to Intelligence"]={nil,"Socketed Curse Skills ignore Curse Limit +40 to Intelligence "}c["25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=25}},nil}c["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"]={nil,"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 "}c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds "}c["+30 Life gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}}," ing Ignited Enemies "}c["Recover 75% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use "}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=165}},"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["+1% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}c["3% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry "}c["Adds an additional Arrow"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",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["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item "}c["0.4% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.4}},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["+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["+1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}," for each time you've Blocked in the past 10 seconds "}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15}},nil}c["13% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=13}},nil}c["Socketed Gems deal 63 to 94 additional Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=63}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}}}},nil}c["Enemies Chilled by you take 100% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=100}}}},nil}c["Damage with Weapons Penetrates 3% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalPenetration",type="BASE",value=3}},nil}c["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=16}},nil}c["30% increased Damage against Rare monsters {variant:2}30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters {variant:2}30% increased Damage against Rare monsters "}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["Energy Shield protects Mana instead of Life"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldProtectsMana",type="FLAG",value=true}},nil}c["Adds 5 to 11 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=11}},nil}c["0.3% of Physical Attack Damage Leeched as Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.3}},nil}c["Adds 6 to 14 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=14}},nil}c["Anger has 60% increased Aura Effect"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination "}c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiderAspect"}}},nil}c["Adds 140 to 210 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=140},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=210}},nil}c["10% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="SkillUsedRecently"},flags=0,keywordFlags=0,name="TailwindEffectOnSelf",type="INC",value=10}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill "}c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=65}},nil}c["You cannot have non-Golem Minions 25% reduced Golem Size"]={nil,"You cannot have non-Golem Minions 25% reduced Golem Size "}c["10% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["5% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["10% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["Enemies can have 1 additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}c["165% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=165}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy "}c["+23% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=23}},nil}c["20% more Damage with Ignite"]={{[1]={flags=0,keywordFlags=4194304,name="Damage",type="MORE",value=20}},nil}c["40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum "}c["Adds 22 to 32 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=32}},nil}c["+50 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=50}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim on Hit "}c["40% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=40}},nil}c["10% more Damage while you have at least one nearby Ally"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["20% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20}},nil}c["15% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=15}},nil}c["+125 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=125}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill "}c["20% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={div=450,stat="Evasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["10% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-10}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range "}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["3 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}c["Extra Gore {variant:1}10% chance to cause Bleeding on Hit"]={nil,"Extra Gore {variant:1}10% chance to cause Bleeding on Hit "}c["20% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Adds 400 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=400},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement"]={{}," Attack, Cast and Movement "}c["+1 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["+16 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=16}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["100% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=100}},nil}c["Adds 1 to 12 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=12}},nil}c["No Damage Multiplier for Ailments from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="NoCritDegenMultiplier",type="FLAG",value=true}},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["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience "}c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds on Critical Strike"]={{}," to gain a Power Charge when you Stun Gain Unholy Might for 2 seconds "}c["Removes all mana. Spend Life instead of Mana for Skills"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["300% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=300}},nil}c["10% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil}c["220% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=220}},nil}c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["18% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=18}},nil}c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="BASE",value=20}}," to gain a Power Charge on Hit 6% increased "}c["Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"]={nil,"Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana "}c["+3% to all maximum Resistances while you have no Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed "}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage "}c["Adds 1 to 120 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=120}},nil}c["15% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Cannot Block Spells"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockSpells",type="FLAG",value=true}},nil}c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill "}c["+14 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=14}},nil}c["25% chance to gain a Power Charge on Throwing a Trap Grants level 20 Bear Trap Skill"]={{}," to gain a Power Charge on Throwing a Grants level 20Skill "}c["6% increased Burning Damage for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=134479872,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits "}c["-18 Physical Damage taken from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks {variant:1}15% chance to gain a Power Charge on Throwing a "}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["25% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect "}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value "}c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil}c["Cannot be Shocked while Chilled"]={nil,"Cannot be Shocked while Chilled "}c["80% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=80}}," applied to s "}c["22% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=22}},nil}c["45% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=45}},nil}c["22% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["+8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}},nil}c["2% chance to Dodge Attacks per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["Adds 1 to 4 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=4}},nil}c["+2 to Level of Socketed Bow Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="bow",value=2}}},nil}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["25% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil}c["20% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=20}},nil}c["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["+500 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},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"}}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["80% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=80}},nil}c["6% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["to 50% increased Damage with Hits to targets"]={nil,"to 50% increased Damage with Hits to targets "}c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies on Hit "}c["16% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["All Sockets are White Socketed Gems have Elemental Equilibrium"]={nil,"All Sockets are White Socketed Gems have Elemental Equilibrium "}c["Adds 63 to 98 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=63},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=98}},nil}c["30% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=30}},nil}c["Increases and Reductions to Light Radius also apply to Accuracy"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAccuracy",type="FLAG",value=true}},nil}c["20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," with Her Blessing "}c["+75% to Critical Strike Multiplier during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=75}},nil}c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["40% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40}},nil}c["20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}},nil}c["-50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-50}},nil}c["Attack Skills deal 6% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["+25% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["Attack Skills deal 8% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "}c["25% increased Effect of Buffs granted by Socketed Golem Skills"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["5% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={nil,"5 Maximum Void Charges Gain a Void Charge every 0.5 seconds "}c["Enemies Taunted by you take 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=20}}}},nil}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={[1]={type="Condition",var="AffectedByPurityofFire"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam "}c["Cannot be Stunned while you have Ghost Shrouds"]={nil,"Cannot be Stunned while you have Ghost Shrouds "}c["Adds 235 to 290 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=235},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=290}},nil}c["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["Vaal Skills have 25% reduced Soul Cost during effect"]={{}," Soul Cost "}c["Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15}},nil}c["40% chance to Avoid being Stunned while Channelling Channelling Skills deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=40}}," while Channelling Channelling Skills deal 30% increased Damage "}c["12% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=12}},nil}c["2% of Chaos Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=2}},nil}c["Projectiles gain Damage as they travel farther, dealing up"]={nil,"Projectiles gain Damage as they travel farther, dealing up "}c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}},nil}c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=10}},nil}c["4% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=4}},nil}c["Adds 7 to 15 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=7},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=15}},nil}c["-100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-100}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["50% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-50}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned "}c["Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges "}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier "}c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["30% of Damage you Reflect to enemies is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," you Reflect to enemies is gained as Life "}c["6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=30}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% chance to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill {variant:1}5% chance to gain Onslaught for 3 seconds on Kill "}c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredConsecrate"}}},nil}c["10% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["130% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=130}},nil}c["35% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=35}},nil}c["+20% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=20}},nil}c["You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["20% chance to Maim on Hit 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}}," to Maim on Hit 20% chance "}c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=63}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 to s "}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMin",type="BASE",value=3},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMax",type="BASE",value=70}},nil}c["+4% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["Marauder: Melee Skills have 15% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=14}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill "}c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=43}},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["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead "}c["Damage Penetrates 10% Lightning Resistance during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=10}},nil}c["+15% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["+40% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=40}},nil}c["Minions have 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["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil}c["15% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=15}},nil}c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to "}c["+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["Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of your maximum Life on use {variant:1}15% of maximum Life taken as Chaos Damage per second "}c["Has no Sockets"]={{[1]={flags=0,keywordFlags=0,name="NoSockets",type="FLAG",value=true}},nil}c["+67 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=67}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth "}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=40}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CatAspect"}}},nil}c["22% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=22}},nil}c["30% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["80% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Gain a Power Charge on non-Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike "}c["2% increased Minion Attack and Cast Speed per Skeleton you own 2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per you own 2% increased Minion Duration per Zombie you own "}c["Minions have 5% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}}}},nil}c["Minions have 4% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}}}},nil}c["Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike"]={nil,"Nearby Enemies grant 25% increased Flask Charges {variant:9,10,11,12,13}2% additional Chance to receive a Critical Strike "}c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=12}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["113% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=113}},nil}c["+12% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," for each Summoned "}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}c["450% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=450}},nil}c["Curses in this item are reflected back to you"]={nil,"Curses in this item are reflected back to you "}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed {variant:1,2}80% increased Damage against Hindered Enemies "}c["50% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-50}},nil}c["155% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=155}},nil}c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["5% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=5}},nil}c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={{[1]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=50},[2]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-20}},nil}c["14% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10.0 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["6% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-6}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem "}c["100% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=100}},nil}c["25% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=25}},nil}c["0.8% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.8}},nil}c["-20 Fire Damage taken when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-20}},nil}c["50% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["Golems have 38% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil}c["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground "}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-3}},nil}c["16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=16}},nil}c["Gain 4% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=4}},nil}c["You can have an additional Brand Attached to an Enemy"]={nil,"You can have an additional Brand Attached to an Enemy "}c["Adds 40 to 70 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=40},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=70}},nil}c["50% reduced Experience gain"]={{}," Experience gain "}c["+40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=40}},nil}c["20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["26% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=26}},nil}c["Skeletons deal 40% increased Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["4% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=4}},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["Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Gains no Charges During effect of any Soul Ripper Flask "}c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil}c["+24 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["Projectiles Pierce 5 additional Targets while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=5}},nil}c["+45 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45}},nil}c["20% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=20}},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}c["63% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=63}},nil}c["+35 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=35}},nil}c["30% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["18% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=18}},nil}c["Grants level 20 Summon Bestial Ursa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialUrsa"}}},nil}c["50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["+15 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=15}},nil}c["Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes "}c["Ghost Reaver"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ghost Reaver"}},nil}c["+8 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}},nil}c["15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil}c["30% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=30}},nil}c["1% increased Damage per 15 Dexterity"]={{[1]={[1]={div=15,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["15% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=15}},nil}c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=78},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=114}},nil}c["4% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage +20 to Strength "}c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10}},nil}c["Adds 6 to 9 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=6},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=9}},nil}c["Grants Level 22 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="AccuracyAndCritsAura"}}},nil}c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge on Hit "}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="{Hand}Attack"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["8% reduced Elemental Damage taken while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-8}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Duration",type="INC",value=-25}}," Soul Cost s used have 40% reduced Soul Gain Prevention "}c["Arrows that Pierce have 50% chance to cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["Grants level 20 Bear Trap Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BearTrap"}}},nil}c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="CritChance",type="MORE",value=100}},nil}c["15% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["+650 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=650}},nil}c["100% increased Shock Duration on You Shocks you cause are reflected back to you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You Shocks you cause are reflected back to you "}c["If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["+1% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}c["Your Fire Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true}},nil}c["+2 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=2}}},nil}c["10% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["10% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=10}},nil}c["Minions have 10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}}},nil}c["60% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage"]={nil,"You can inflict an additional Ignite on an Enemy {variant:1}Your Critical Strikes do not deal extra Damage "}c["Can have up to 1 additional Remote Mine placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=1}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste "}c["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["Attack Skills deal 20% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["20% increased Damage for each Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned "}c["+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["10% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["50% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=50}},nil}c["120% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=120}},nil}c["15% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=15}},nil}c["Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice {variant:38}10% of Physical Damage taken as Cold Damage while affected by Purity of Ice "}c["Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy {variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy "}c["Adds 1 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["Zealot's Oath during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["20% increased Critical Strike Chance with Cold Skills"]={{[1]={flags=0,keywordFlags=32,name="CritChance",type="INC",value=20}},nil}c["+160 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=160}},nil}c["+12% to Critical Strike Multiplier with Wands"]={{[1]={flags=524288,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=47}}},[2]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=61}}}},nil}c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["You are Immune to Silence Grants level 20 Illusory Warp Skill"]={nil,"You are Immune to Silence Grants level 20 Illusory Warp Skill "}c["0.87% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.87}},nil}c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=7}},nil}c["their Maximum Life as Lightning Damage which cannot Shock"]={nil,"their Maximum Life as Lightning Damage which cannot Shock "}c["Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills ignore Curse Limit "}c["20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["23% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=23}},nil}c["Attack Skills deal 8% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["12% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire {variant:34}10% of Physical Damage taken as Fire Damage while affected by Purity of Fire "}c["Can have up to 1 additional Totem summoned at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Immunity to Ignite during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["10% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["14% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["20% reduced Chill Duration on You {variant:2}50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You {variant:2}50% chance to Avoid being Chilled "}c["15% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-15}},nil}c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike "}c["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["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy Recover 100 Life when your Trap is triggered by an Enemy"]={{[1]={flags=0,keywordFlags=4096,name="Life",type="BASE",value=30}}," to gain Phasing for 4 seconds when your is triggered by an Enemy Recover 100 when your Trap is triggered by an Enemy "}c["30% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=30}},nil}c["Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=0},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},nil}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies "}c["20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["30% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}}}},nil}c["+150 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=150}},nil}c["100% reduced Despair Mana Reservation"]={{[1]={[1]={skillName="Despair",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Culling Strike"]={{},"Culling Strike"}c["200% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=200}},nil}c["Golems have 45% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-45}}}},nil}c["12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},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["25% chance to create a Smoke Cloud when Hit {variant:1}40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=25}}," to create a Smoke Cloud when Hit {variant:1}40% increased "}c["24% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon "}c["263% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=263}},nil}c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst "}c["+68 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=68}},nil}c["You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain an Endurance Charge on Kill {variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit "}c["28% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers {variant:2,3,4}Reflects 30 Chaos Damage to Melee Attackers "}c["Warcries cost no Mana"]={{[1]={flags=0,keywordFlags=4,name="ManaCost",type="MORE",value=-100}},nil}c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil}c["Your Bleeding does not deal extra Damage while the Enemy is moving"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoExtraBleedDamageToMovingEnemy",type="FLAG",value=true}},nil}c["Adds 15 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["13% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil}c["You and Allies affected by your Aura Skills have +20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}c["30% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["24% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=24}},nil}c["65% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=65}},nil}c["70% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["16% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=16}},nil}c["You and nearby Allies have 12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}}}},nil}c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=6}},nil}c["30% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=30}},nil}c["+50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton "}c["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy "}c["45% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=45}},nil}c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"]={nil,"Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite "}c["50% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=50}},nil}c["23% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil}c["18% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=18}},nil}c["70% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=70}},nil}c["Unaffected by Shock"]={nil,"Unaffected by Shock "}c["You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life "}c["You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Frozen {variant:2}You Cannot Be Shocked While Chilled "}c["+20 Mana gained when you Block {variant:2,3}+24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block {variant:2,3}+24 Mana gained when you Block "}c["+150 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=150}},nil}c["+25 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill "}c["Adds 53 to 60 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=60}},nil}c["You have Onslaught while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["0.4% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.4}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["+4% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["30% increased Radius of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=30}},nil}c["+110 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=110}},nil}c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["140% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=140}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["10% chance to gain Unholy Might on block for 3 seconds"]={{}," to gain Unholy Might on block for 3 seconds "}c["1% of Attack Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={nil,"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour "}c["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked {variant:2}You cannot be Shocked for 3 seconds after being Shocked "}c["80% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["1.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.4}},nil}c["50% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You "}c["Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use "}c["15% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["Chill and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill and Freeze duration on you is based on 65% of Energy Shield "}c["Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil}c["90% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NormalItem"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["+60% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=60}},nil}c["+72% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=72}},nil}c["Wrath Reserves no Mana"]={{[1]={[1]={skillId="Wrath",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["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["+15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15}},nil}c["2% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=2}},nil}c["Socketed Gems fire Projectiles in a Nova"]={nil,"Socketed Gems fire Projectiles in a Nova "}c["Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken"]={nil,"Chaos Damage does not bypass Energy Shield {variant:1}-10 Chaos Damage taken "}c["100% increased Critical Strike Chance with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork {variant:3}200% increased Critical Strike Chance with arrows that Fork "}c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["5% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["100% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=100}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=20}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 {variant:2}Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["+28 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=28}},nil}c["+6% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=6}},nil}c["+190 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=190}},nil}c["+300 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=300}},nil}c["Your Cold Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="ColdCanPoison",type="FLAG",value=true}},nil}c["+1% to Critical Strike Multiplier per 1% Block Chance"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. "}c["Projectiles Pierce you {Variant:3}+160 Dexterity Requirement"]={nil,"Projectiles Pierce you {Variant:3}+160 Dexterity Requirement "}c["10% increased Accuracy Rating with Maces"]={{[1]={flags=65536,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["125% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=125}},nil}c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=20}},nil}c["6% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["35% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=35}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,keywordFlags=1,name="AreaOfEffect",type="INC",value=20}},nil}c["7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=30}},nil}c["20% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=20}},nil}c["110% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=110}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["80% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=80}},nil}c["+4% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["22% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=22}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Minions 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["+10% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["Adds 19 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["70% increased Minion Damage if you have Hit Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["230% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=230}},nil}c["+8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["+110 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=110}},nil}c["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"]={nil,"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy "}c["5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask "}c["10% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=10}},nil}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["+45 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=45}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets "}c["+2 seconds to Cat's Stealth Duration"]={{[1]={[1]={skillName="Aspect of the Cat",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=2}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Your Maximum Resistances are 80%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=80},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=80},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=80},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=80}},nil}c["16% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=16}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["295% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=295}},nil}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={{[1]={[1]={type="Condition",var="AffectedByPurityofIce"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=10}},nil}c["You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Ignited for 3 seconds after being Ignited "}c["Unaffected by Temporal Chains while affected by Haste"]={nil,"Unaffected by Temporal Chains while affected by Haste "}c["Half of your Strength is added to your Minions"]={{[1]={flags=0,keywordFlags=0,name="HalfStrengthAddedToMinions",type="FLAG",value=true}},nil}c["+25% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["13% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them "}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonVoidSphere"}}},nil}c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality "}c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=40}},nil}c["+5 to Evasion Rating per 1 Maximum Energy Shield on Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=5}},nil}c["3% increased Experience gain {variant:2}2% increased Experience gain"]={{}," Experience gain {variant:2}2% increased Experience gain "}c["12% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["25% Chance to Ignite when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["12% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-12}},nil}c["8% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}},nil}c["14% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=14}},nil}c["25% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=25}},nil}c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=65}},nil}c["5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["50% chance to Cause Poison on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=50}},nil}c["Zombies deal 100% increased Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies "}c["Elemental Overload"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Overload"}},nil}c["15% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}c["5% increased Cast Speed with Lightning Skills"]={{[1]={flags=16,keywordFlags=64,name="Speed",type="INC",value=5}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage "}c["30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+1% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["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["56% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=56}},nil}c["4% additional Physical Damage Reduction while Channelling Channelling Skills have 6% increased Attack and Cast Speed Channelling Skills deal 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while Channelling Channelling Skills have 6% increased Attack and Cast Speed Channelling Skills deal 15% increased Damage "}c["40% more Elemental Damage if you've Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=40}},nil}c["80% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["20% increased Taunt Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Taunt "}c["5% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=5}},nil}c["4% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=4}},nil}c["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=7}},nil}c["25% increased Zombie Size"]={{}," Size "}c["2% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["30% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=30}},nil}c["Unaffected by Enfeeble while affected by Grace"]={nil,"Unaffected by Enfeeble while affected by Grace "}c["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={skillName="Siege Ballista",type="SkillName"},[2]={div=200,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Gain 5% of Cold Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsChaos",type="BASE",value=5}},nil}c["3% increased Damage per Crab Barrier"]={{[1]={[1]={type="Multiplier",var="CrabBarrier"},flags=0,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["+200 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=200}},nil}c["50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain a Power Charge when you Summon a "}c["+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["+15 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill "}c["Adds 12 to 16 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=16}},nil}c["45% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=45}},nil}c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil}c["Adds 54 to 81 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=54},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=81}},nil}c["Triggers Level 20 Blinding Aura when Equipped Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},"Triggers Level 20 Blinding Aura when Equipped "}c["-25 Physical Damage taken from Projectile Attacks +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks +5% Chance to Block "}c["Minions Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}}}},nil}c["Grants level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialSnake"}}},nil}c["43% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=43}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=80}},nil}c["10% increased Damage taken from Ghosts"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," from Ghosts "}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["30% reduced Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30}},nil}c["Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 240 to 300 Physical Damage to Attackers on Block "}c["25% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted "}c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["100% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil}c["Deal no Non-Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["100% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=100}},nil}c["100% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["10% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10}},nil}c["Adds 250 to 280 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=280}},nil}c["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["18% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=18}},nil}c["Minions have 10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}}}},nil}c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-50}},nil}c["50% increased Shock Duration on You Take no Extra Damage from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You Take no Extra Damage from Critical Strikes "}c["+200 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["50% increased Mana Regeneration while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["+50% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["+23 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=23},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=23}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill {variant:2,3}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 {variant:2,3}You take 450 Chaos Damage per second for 3 seconds on Kill "}c["-35 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-35}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted when Hit by an Attack "}c["Trigger Socketed Spells when you Focus"]={nil,"Trigger Socketed Spells when you Focus "}c["Cannot be Blinded"]={nil,"Cannot be Blinded "}c["Gain 18% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=18}},nil}c["15% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=15}}," of Piercing "}c["You are cursed with Level 10 Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=10,skillId="Vulnerability"}}},nil}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["30% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil}c["20% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=20}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=500,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50}},nil}c["Curse Skills have 80% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=80}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced "}c["25% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["+100 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit "}c["420% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=420}},nil}c["500% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=500}},nil}c["+5000 to Zombie maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=5000}}}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}c["24% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=24}},nil}c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BirdAspect"}}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["125% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=125}},nil}c["Gain a Frenzy Charge on every 50th Rampage Kill"]={nil,"Gain a Frenzy Charge on every 50th Rampage Kill "}c["220% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=220}},nil}c["8% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+110 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=110}},nil}c["+13% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=13}},nil}c["Socketed Gems are Supported by level 15 Pierce"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportPierce"}}},nil}c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=22}}}},nil}c["Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds "}c["20% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["Gain 4% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=4}},nil}c["+40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use "}c["10% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+90 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=90}},nil}c["1.5% of Damage leeched as Life while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.5}},nil}c["+12% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=6}},nil}c["13% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-13}},nil}c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil}c["0.4% of Energy Shield Regenerated per Second for"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.4}}," for "}c["0.9% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.9}},nil}c["Enemies Become Chilled as they Unfreeze"]={nil,"Enemies Become Chilled as they Unfreeze "}c["Cannot be Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana "}c["10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="DamageTaken",type="INC",value=-10}}," from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage 25% chance to Blind Enemies on Hit "}c["43% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=43}},nil}c["20% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+14 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=14}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element 20% increased Area of Effect for Attacks"]={{[1]={flags=8388608,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element 20% increased Area of Effect for Attacks "}c["Grants level 5 Frostbite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="Frostbite"}}},nil}c["35% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=35}},nil}c["285% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=285}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["23% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil}c["45% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-45}},nil}c["20% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}}}},nil}c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}},nil}c["163% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=163}},nil}c["7% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased "}c["Raging Spirits have 140% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=140}}}},nil}c["Gain Flask Charges when you deal a Critical Strike"]={nil,"Gain Flask Charges when you deal a Critical Strike "}c["Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=12}},nil}c["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil}c["17% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=17}},nil}c["Socketed Gems are supported by level 2 Chance to Flee"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=2,skillId="SupportChanceToFlee"}}},nil}c["30% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=30}},nil}c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil}c["20% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=20}},nil}c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=65}},nil}c["10% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block "}c["+35 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=35}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["Casts level 7 Abberath's Fury when equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=7,skillId="RepeatingShockwave"}}},nil}c["Adds 285 to 360 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=285},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=360}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item "}c["300% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=300}},nil}c["20% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=20}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["Adds 115 to 260 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=260}},nil}c["8% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["3% increased Experience gain"]={{}," Experience gain "}c["25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=25}}," when on Low Mana "}c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage Rampage "}c["+14% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=14}},nil}c["+20 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill "}c["0.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}},nil}c["10% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Your Energy Shield starts at zero You cannot Recharge Energy Shield"]={nil,"Your Energy Shield starts at zero You cannot Recharge Energy Shield "}c["30% increased Zombie Resistances"]={{}," Resistances "}c["Extra gore"]={nil,"Extra gore "}c["Traps and Mines have a 25% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=12288,name="PoisonChance",type="BASE",value=25}},nil}c["+1% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4,5}30% increased Rarity of Items Dropped by Slain Shocked Enemies "}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. "}c["+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["+14% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=14}},nil}c["50% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["4% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled "}c["20% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected "}c["+23% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=23}},nil}c["Flasks do not apply to You"]={{[1]={flags=0,keywordFlags=0,name="FlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil}c["60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=60}},nil}c["Golems Deal 40% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}}}},nil}c["25% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["20% reduced Reflected Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected "}c["Channelling Skills deal 8% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=12}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=24}},nil}c["Impales you inflict last 2 additional Hits"]={nil,"Impales you inflict last 2 additional Hits "}c["Vaal Skills deal 35% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="MORE",value=35}},nil}c["+40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=40}},nil}c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil}c["18% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+35 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=35}},nil}c["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=1000}}}},nil}c["+1000 Evasion Rating while you have Tailwind"]={{[1]={[1]={type="Condition",var="Tailwind"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1000}},nil}c["10% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage "}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage "}c["Adds 5 to 10 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=8192,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}c["Fire Spells have 10% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,keywordFlags=16,name="PhysicalDamageConvertToFire",type="BASE",value=10}},nil}c["While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={{[1]={[1]={stat="Life",type="PerStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.005},[2]={[1]={stat="EnergyShield",type="PerStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.005}},nil}c["200% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=200}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova {variant:1}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 {variant:1}With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles "}c["105% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=105}},nil}c["80% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Gain 75% increased Elemental Damage for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionElementalDamage"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=75}},nil}c["16% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=16}},nil}c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}c["+20 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="ClawCritChanceAppliesToUnarmed",type="FLAG",value=true}},nil}c["Socketed Golem Gems grant Onslaught for 10 seconds on Summon"]={nil,"Socketed Golem Gems grant Onslaught for 10 seconds on Summon "}c["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield "}c["18% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainHerEmbrace",type="FLAG",value=true}},nil}c["23% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=23}},nil}c["With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer "}c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["90% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=90}},nil}c["115% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=115}},nil}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["Minions Regenerate 1% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}}},nil}c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil}c["+100 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["+50 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}},nil}c["You take 20% reduced Extra Damage from Critical Strikes"]={nil,"You take 20% reduced Extra Damage from Critical Strikes "}c["Adds 23 to 39 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil}c["Adds 1 to 2 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=1},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=2}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier "}c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil}c["100% increased Burning Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=100}},nil}c["Minions deal 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["6% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}c["Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["10% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=10}},nil}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-10}},nil}c["+1500 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit "}c["13% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-13}},nil}c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers "}c["33% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=33}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=30}},nil}c["Adds 1 to 11 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=11}},nil}c["An additional Curse can be applied to you 20% increased Damage per Curse on you"]={nil,"An additional Curse can be applied to you 20% increased Damage per Curse on you "}c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil}c["10% chance to Blind with Hits against Bleeding Enemies 15% more Damage with Bleeding"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to Blind 15% more with Bleeding "}c["+10% to Critical Strike Multiplier with Fire Skills"]={{[1]={flags=0,keywordFlags=16,name="CritMultiplier",type="BASE",value=10}},nil}c["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["Adds 65 to 120 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["14% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=14}},nil}c["100% reduced Frostbite Mana Reservation"]={{[1]={[1]={skillName="Frostbite",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["28% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["Can Allocate Passives from the Marauder's starting point"]={{},nil}c["Adds 22 to 32 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=32}},nil}c["Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Chaining {variant:3}Arrows Pierce all Targets after Forking "}c["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedFireDamage"}}},nil}c["+25% chance to be Ignited"]={{}," to be Ignited "}c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=3}},nil}c["Critical Strikes deal 50% increased Lightning Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["+1 to maximum number of Summoned Holy Relics"]={{[1]={flags=0,keywordFlags=0,name="ActiveHolyRelicLimit",type="BASE",value=1}},nil}c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage "}c["100% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=50}},nil}c["25% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=25}},nil}c["Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground "}c["50% reduced number of Zombies allowed"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="INC",value=-50}},nil}c["2% of Attack Damage Leeched as Life and Mana if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=1,keywordFlags=0,name="DamageLeech",type="BASE",value=2}},nil}c["6% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=6}},nil}c["Grants Armour equal to 160% of your Reserved Life to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedLifeAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1.6}}}},nil}c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil}c["24% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["6% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["4% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-4}},nil}c["20% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=20}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=18}},nil}c["Raging Spirits have 150% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=150}}}},nil}c["200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork "}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy {variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy "}c["20% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["-40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-40}},nil}c["Your Flasks grant 10% chance to Ignite during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="DamageTaken",type="INC",value=-10}}," from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage "}c["5% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5}},nil}c["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["25% reduced Golem Size"]={{}," Size "}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["Your Offering Skills also affect you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="buffNotPlayer",value=false}}}}},nil}c["5% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil}c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"Gain an Endurance Charge when you take a Critical Strike "}c["40% increased Damage against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Adds 65 to 105 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=105}},nil}c["Radius: 18"]={nil,"Radius: 18 "}c["Enemies you Shock have 30% reduced Cast Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed "}c["Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use {variant:2}Recover 75% of your maximum Life on use "}c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=100},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=100}},nil}c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-5}},nil}c["10% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10}},nil}c["Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["If you've Cast a Spell Recently, you"]={nil,"If you've Cast a Spell Recently, you "}c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges "}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["100% increased Critical Strike Chance against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," against Enemies that are affected "}c["30 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil}c["Deal no Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true}},nil}c["+45% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=45}},nil}c["20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["8% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["20% chance to gain Fortify on Melee Stun You have Onslaught while you have Fortify"]={{}," to gain Fortify on Stun You have Onslaught "}c["Your Energy Shield starts at zero Cannot gain Energy Shield"]={nil,"Your Energy Shield starts at zero Cannot gain Energy Shield "}c["You can only Socket Corrupted Gems in this item {variant:1}Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item {variant:1}Acrobatics "}c["20% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=20}},nil}c["35% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-35}},nil}c["Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding "}c["100% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You "}c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=36}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=16}}},[2]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=144}}}},nil}c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=18}}}},nil}c["100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=100}},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["+24 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24}},nil}c["50% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=50}},nil}c["Vitality Reserves no Mana"]={{[1]={[1]={skillId="Vitality",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["15% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=15}},nil}c["Minions deal 12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil}c["25% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=25}},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["Cannot be Stunned while you have at least 25 Rage"]={{[1]={[1]={threshold=25,type="MultiplierThreshold",var="Rage"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["+20 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["+16 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=16}},nil}c["10% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=10},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=10}},nil}c["+45 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil}c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil}c["+250 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=250}},nil}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour "}c["10% chance to Dodge Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["Vaal Skills deal 80% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="INC",value=80}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["88% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=88}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Hits if you have Energy Shield "}c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=20}},nil}c["5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=5}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies "}c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={{}," to gain aCharge on Kill Gore Footprints "}c["You cannot have non-Golem Minions"]={nil,"You cannot have non-Golem Minions "}c["+38 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=38}},nil}c["23% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-23}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage "}c["Adds 3 to 8 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=8}},nil}c["225% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=225}},nil}c["+40 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},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["Channelling Skills deal 15% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["You cannot have non-Animated Minions"]={nil,"You cannot have non-Animated Minions "}c["30% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=30}},nil}c["+25% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["35% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["220% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=220}},nil}c["5% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=5}},nil}c["8% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=8}},nil}c["17% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5}},nil}c["Adds 225 to 600 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,keywordFlags=0,name="LightningMin",type="BASE",value=225},[2]={flags=1048576,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["+25% chance to be Poisoned"]={{}," to be Poisoned "}c["2% increased Attack Critical Strike Chance per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=2}},nil}c["Your Golems are aggressive"]={nil,"Your Golems are aggressive "}c["25% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["6% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-6}},nil}c["Mind Over Matter"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mind Over Matter"}},nil}c["185% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=185}},nil}c["+8 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",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}c["45% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=45}},nil}c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=2,keywordFlags=0,name="Damage",type="INC",value=200}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste {variant:23}You have Phasing while affected by Haste "}c["12% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=16777217,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["24% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's "}c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero "}c["6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge "}c["206% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=206}},nil}c["2% increased Area of Effect per 25 Rampage Kills Gain a Frenzy Charge on every 50th Rampage Kill"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills Gain aCharge on every 50th Rampage Kill "}c["40% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["Summoned Skeletons have Avatar of Fire"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}}}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when any of your s is Triggered by an Enemy "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["20% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. {variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["+18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["Attacks with this Weapon Maim on hit"]={nil,"Maim on hit "}c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=256,keywordFlags=262144,name="PhysicalDamage",type="INC",value=100}},nil}c["45% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["8% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=8}},nil}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=19}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "}c["15% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets "}c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}}," to "}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:2,3}150% increased Rarity of Items Dropped by Slain Magic Enemies "}c["30% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=30}},nil}c["100% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["Adds 10 to 14 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=14}},nil}c["20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge on non-Critical Strike "}c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.6}},nil}c["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike "}c["18% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["50% increased Evasion if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["9% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=9}},nil}c["40% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=40}},nil}c["10% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=10}},nil}c["8% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Adds 15 to 33 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=33}},nil}c["2% increased Experience gain"]={{}," Experience gain "}c["Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"]={nil,"Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback "}c["Adds 20 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=30}},nil}c["Adds 20 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["100% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}}}},nil}c["Adds 21 to 33 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["24% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Adds 22 to 35 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=35}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["Ailments against other targets"]={nil,"Ailments against other targets "}c["0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["50% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=50}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["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["1.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.6}},nil}c["Far Shot"]={{[1]={flags=0,keywordFlags=0,name="FarShot",type="FLAG",value=true}},nil}c["35% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=35}},nil}c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["9% increased Skeleton Cast speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil}c["12% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=12}},nil}c["35% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=35}},nil}c["13% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=13}},nil}c["+20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20}},nil}c["20% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage "}c["8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["50% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=50}},nil}c["15% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["+6% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["40% reduced Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=-40}},nil}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Adds 10 to 15 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil}c["15% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Every 14 seconds:"]={{},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["5% chance to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill {variant:1}5% chance to gain Unholy Might for 3 seconds on Kill "}c["+2% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["4 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}},nil}c["1% of Life Regenerated per second per 500 Maximum Energy Shield"]={{[1]={[1]={div=500,stat="EnergyShield",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy "}c["7% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["+1 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=1}}},nil}c["12% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+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["20% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-20}}," Reflected "}c["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=327680,name="PhysicalMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=327680,name="PhysicalMax",type="BASE",value=15}},nil}c["and nearby Allies have +1000 to Armour"]={nil,"and nearby Allies have +1000 to Armour "}c["25% chance on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:2}50% chance on Block to create Desecrated Ground "}c["You have Crimson Dance while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"]={nil,"Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction "}c["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["+30 Life gained on Killing Ignited Enemies Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKillGainAsFire",type="BASE",value=30}}," ing Ignited Enemies Gain 20% of Physical Damage "}c["+40% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=40}},nil}c["10% chance to gain a Frenzy Charge when you Block Attack Damage"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=1,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain aCharge when you Block "}c["10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["100% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},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["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you "}c["Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"]={nil,"Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use "}c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy "}c["1% of Damage against Frozen Enemies Leeched as Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",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}c["Adds 4 to 8 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=8}},nil}c["Adds 2 to 4 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=4}},nil}c["Adds 4 to 7 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=7}},nil}c["+70 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=70}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour"]={nil,"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour "}c["Socketed Gems are Supported by level 12 Fortify"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFortify"}}},nil}c["+2 to Weapon range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["+40 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Recover Full Life at the end of the Flask effect"]={nil,"Recover Full Life at the end of the Flask effect "}c["50% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=50}},nil}c["+110 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=110}},nil}c["+70 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=70}},nil}c["28% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=28}},nil}c["Totems Fire 2 additional Projectiles"]={{[1]={flags=0,keywordFlags=16384,name="ProjectileCount",type="BASE",value=2}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=35}},nil}c["+40% to Critical Strike Multiplier against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=40}},nil}c["10% increased Damage taken from Skeletons 10% increased Damage taken from Ghosts"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}}," from s 10% increased Damage taken from Ghosts "}c["Socketed Gems are Supported by level 10 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportColdToFire"}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently 15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{}," "}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["+2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["15% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["Gain Life from Leech instantly from Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["60% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}},nil}c["Adds 118 to 255 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=118},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=255}},nil}c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-8}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered "}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["15% of Physical Attack Damage Added as Lightning Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=15}},nil}c["30% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["5% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["30% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=30}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect "}c["+5000 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5000}},nil}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second "}c["Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=46}},nil}c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="MORE",value=-50}},nil}c["Trigger a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["24% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=24}},nil}c["100% increased Damage while there is only one nearby Enemy"]={{[1]={[1]={type="Condition",var="OnlyOneNearbyEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["+15% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["0% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=18}},nil}c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["100% increased Ignite Duration on You {variant:2}10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You {variant:2}10% increased Movement Speed "}c["Minions deal 13% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=13}}}},nil}c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["15% increased Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Attacks have an additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["25% increased Attack Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["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["45% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-45}},nil}c["Adds 115 to 265 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=265}},nil}c["2% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["50% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=50}},nil}c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "}c["Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["22% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned "}c["50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["100% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork "}c["6% increased Attack Damage for each Map Item Modifier affecting the Area 3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the 3% increased Attack Speed for each Map Item Modifier affecting the Area "}c["63% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=63}},nil}c["+60% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=60}},nil}c["+2% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=25}},nil}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil}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["50% chance on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:3,4}100% chance on Block to create Consecrated Ground "}c["You gain 8% increased Damage for each Trap 20% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each 20% Chance for Traps to Trigger an additional time "}c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled "}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=18}},nil}c["30% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second "}c["+150% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["Adds 23 to 40 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=40}},nil}c["+212 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=212}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["20 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["16% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["12% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=12}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration "}c["80% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["10% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+25% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Projectile Damage increased by 50% of Arrow Pierce Chance"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance "}c["Gain a Power Charge after Spending a total of 200 Mana"]={nil,"Gain a Power Charge after Spending a total of 200 Mana "}c["50% increased Stun Duration on you 4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you 4% increased Damage "}c["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["30% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{}," Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["Adds 4 to 9 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=9}},nil}c["+30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30}},nil}c["30% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=30}},nil}c["2% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["their Maximum Life as Physical Damage 25% reduced Bleed duration"]={nil,"their Maximum Life as Physical Damage 25% reduced Bleed duration "}c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem "}c["15% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["2% of Life Regenerated per Second if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=3}},nil}c["Adds 190 to 320 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=320}},nil}c["Totems have 10% additional Physical Damage Reduction"]={nil,"Totems have 10% additional Physical Damage Reduction "}c["70% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-70}},nil}c["17% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=17}},nil}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["Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration"]={nil,"Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration "}c["15% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["30% increased Elemental Damage with Weapons while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["25% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-25}},nil}c["3% increased Character Size"]={{}," Character Size "}c["0.8% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.8}},nil}c["10% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=10}},nil}c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"You only lose 7 Crab Barriers when you take Physical Damage from a Hit "}c["100% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["+29 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=29},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=29}},nil}c["18% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=18}},nil}c["Enemies killed by Zombies explode dealing Fire Damage"]={nil,"Enemies killed by Zombies explode dealing Fire Damage "}c["+50% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=50}},nil}c["30% increased Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Leech applies instantly during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["Immune to Burning Ground, Shocked Ground and Chilled Ground"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground "}c["12% increased Physical Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+120 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=120}},nil}c["Cannot be Stunned when on Low Life"]={nil,"Cannot be Stunned when on Low Life "}c["14% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=14}},nil}c["Clarity Reserves no Mana"]={{[1]={[1]={skillId="Clarity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Gain Unholy Might for 2 seconds on Critical Strike"]={nil,"Gain Unholy Might for 2 seconds on Critical Strike "}c["Can have up to 2 additional Remote Mines placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=2}},nil}c["140% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=140}},nil}c["10% Chance to Cause Monster to Flee on Block 1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to Cause Monster to Flee on Block 1% of Leeched as Life "}c["6% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Spell Skills deal no Damage Your Spells are disabled"]={nil,"no Damage Your Spells are disabled "}c["12% increased Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="INC",value=12}},nil}c["+10% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=10}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=15}},nil}c["15% increased Damage with Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+170 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=170}},nil}c["+47 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=47}},nil}c["+60 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=60}},nil}c["175% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=175}},nil}c["10% chance to Cause Monsters to Flee {variant:1}Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee {variant:1} Attacks cause Bleeding "}c["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block "}c["400% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=400}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-50}},nil}c["Determination Reserves no Mana"]={{[1]={[1]={skillId="Determination",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments "}c["Grants 2 Passive Skill Points"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=2}},nil}c["nearby Enemies when Hit"]={nil,"nearby Enemies when Hit "}c["6% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=6}},nil}c["240% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=240}},nil}c["Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=3}},nil}c["Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"]={nil,"Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends "}c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={nil,"Cannot be Frozen or Chilled if you've used a Fire Skill Recently "}c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=23}},nil}c["+79 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=79}},nil}c["15% increased Item Quantity per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["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["+300 Armour per active Totem"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active "}c["+10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy "}c["15% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=68}},nil}c["+1 Mana gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil}c["+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["25% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["10% increased Attack Speed with Daggers"]={{[1]={flags=32769,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["23% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil}c["10% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Golems regenerate 2% of their Maximum Life per second"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["Shared Suffering"]={nil,"Shared Suffering "}c["+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire "}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}}},nil}c["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"]={nil,"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 "}c["Deal no Non-Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon "}c["24% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=24}},nil}c["5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil}c["16% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=16}},nil}c["Reflects 23 Physical Damage to Melee Attackers"]={{},nil}c["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["Minions cannot be Blinded"]={nil,"cannot be Blinded "}c["13% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["18% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["1% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1}},nil}c["100% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana "}c["8% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=8}},nil}c["55% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=55}},nil}c["39% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=39}},nil}c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=100}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={[1]={limit=250,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=50}},nil}c["15% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Minions have +10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}}}},nil}c["14% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=14}},nil}c["25% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=10}},nil}c["+11% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=11}},nil}c["1% of Energy Shield regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["18% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-18}},nil}c["Unaffected by Burning Ground"]={nil,"Unaffected by Burning Ground "}c["1% of Energy Shield Regenerated per second for each"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," for each "}c["40% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=40}},nil}c["Arrows Pierce an additional Target"]={{[1]={flags=1,keywordFlags=0,name="PierceCount",type="BASE",value=1}},nil}c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit "}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16}},nil}c["Socketed Gems are Supported by level 1 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportGenerosity"}}},nil}c["16% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=16}},nil}c["25% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-25}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=45}},nil}c["Grants Summon Harbinger of Brutality Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfBrutality"}}},nil}c["+1 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil}c["Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Remove all Ailments and Burning when you gain Adrenaline "}c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={{},nil}c["1% increased Attack Speed per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["20% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=20}},nil}c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil}c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=7},onlyAllies=true}}},nil}c["Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=20}},nil}c["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge "}c["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy "}c["9% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=9}},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["25% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=25}},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["6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["Trigger Socketed Curse Spells when you cast a Curse"]={nil,"Trigger Socketed Curse Spells when you cast a Curse "}c["77% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=77}},nil}c["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=38}},nil}c["Adds 21 to 39 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=39}},nil}c["10% chance of Arrows Piercing"]={{}," of Arrows Piercing "}c["34% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=34}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock "}c["+74 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=74}},nil}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportMulticast"}}},nil}c["Adds 3 to 6 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=6}},nil}c["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 15 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage {variant:1}Gain 5 Souls for Vaal Skills on Rampage "}c["50% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=20}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill "}c["172% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=172}},nil}c["12% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["16% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["+18 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["6% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["+2 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=2}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=40}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["Traps and Mines deal 4 to 13 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=13}},nil}c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil}c["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["+30% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=30}},nil}c["1% Life Regenerated per Second for each of your Mines Detonated Recently, up to 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["4% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},nil}c["+69 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=69}},nil}c["+10% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["Hits that Stun Enemies have Culling Strike"]={nil,"Hits that Stun Enemies have Culling Strike "}c["+12% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["20% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=20}},nil}c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "}c["+1% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}c["+63 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=63}},nil}c["10% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["65% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=65}},nil}c["Adds 1 to 18 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=18}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1.5}},nil}c["+84 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=84}},nil}c["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true}},nil}c["+231 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=231}},nil}c["8% chance to Block Spells while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["74% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=74}},nil}c["-25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-25}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning {variant:45}1.5% of Damage leeched as Life while affected by Vitality "}c["+17 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=17}},nil}c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "}c["+17 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=17}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["2% increased Area of Effect per 25 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills "}c["Minions' Attacks deal 7 to 14 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=7}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}}}},nil}c["18% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+23 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=23}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you Mana Reservation is always 45% "}c["Adds 1 to 17 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=17}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy "}c["18% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Adds 12 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Adds 13 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["+23 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=23}},nil}c["Minions deal 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["74% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=74}},nil}c["40% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-40}},nil}c["-40 Physical Damage taken when hit by Animals"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-40}}," by Animals "}c["You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["74% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=74}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage "}c["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["+6 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=6}},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["74% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=74}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has 3% increased Area of "}c["70% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=70}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=48}},nil}c["+20 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}c["10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit"]={nil,"Intimidate Enemies for 4 seconds on Hit "}c["+1 to Level of Active Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active_skill",value=1}}},nil}c["+125 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=125}},nil}c["+35% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil}c["You have Zealot's Oath if you haven't been hit recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["Minions have 10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["+1 to Maximum Frenzy Charges and Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["40% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-50}},nil}c["You gain Phasing for 3 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill "}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["100% increased Aspect of the Avian Buff Effect"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["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["550% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=550}},nil}c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=40},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=40},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=40}},nil}c["600% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=600}},nil}c["130% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=130}},nil}c["Adds 20 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["23% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=23}},nil}c["15% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["Adds 350 to 500 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=350},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=500}},nil}c["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 25 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["10% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["-18 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks "}c["28% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=28}},nil}c["4% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},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["70% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=70}},nil}c["You are Immune to Silence"]={nil,"You are Immune to Silence "}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["Socketed Gems are Supported by level 1 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["14% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=14}},nil}c["Cannot gain Energy Shield"]={nil,"Cannot gain Energy Shield "}c["Spectres have 75% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=75}}}},nil}c["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["Golems have 20% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"]={{}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web "}c["10% chance to grant a Power Charge to nearby Allies on Kill 5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant a Power Charge to nearby Allies on Kill 5% chance to grant aCharge to nearby Allies on Hit "}c["20% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=20}},nil}c["30% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=30}},nil}c["10% increased Radius of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["70% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["2% additional Chance to Block Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["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["+50 Mana gained when you Block +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block +5% Chance to Block "}c["+50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block "}c["Adds 7 to 15 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["15% increased Character Size"]={{}," Character Size "}c["50% reduced Freeze Duration on You {variant:1}1% of Life Regenerated per Second"]={{}," "}c["Unaffected by Temporal Chains"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["5% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["50% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["6% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=6}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration "}c["1% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge"]={{}," to gain an Endurance Charge when you gain a Power Charge "}c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-50}}," on You "}c["Adds 65 to 105 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=105}},nil}c["You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=64}}},[2]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=96}}}},nil}c["157% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=157}},nil}c["235% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=235}},nil}c["+20% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["+12% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["+24% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=24}},nil}c["28% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=28}},nil}c["120% of Block Chance applied to Spells {variant:2}80% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s {variant:2}80% of Block Chance applied to Spells "}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded "}c["120% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons "}c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 "}c["18 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=18}},nil}c["17% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=17}},nil}c["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy "}c["40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=40}}," Maximum "}c["10% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["19% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=19}},nil}c["+5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to "}c["+8% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=8}},nil}c["20% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["1.5% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1.5}}," Total prevented from Hits in the past 10 seconds is Regenerated as Life per second "}c["20 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=13}},nil}c["3% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["0.4% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.4}},nil}c["+60 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["Socketed Gems have 25% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}}}},nil}c["+1 to Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems"]={{}," Level of Aura Gems in this item {variant:3}+2 to Level of Socketed Aura Gems "}c["33% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=33}},nil}c["12% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Your Elemental Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true}},nil}c["+1 to Level of Aura Gems in this item"]={{}," Level of Aura Gems in this item "}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies "}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=225}},nil}c["250% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=250}},nil}c["Triggers Level 20 Fire Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FireAegis"}}},nil}c["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["42% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=42}},nil}c["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=8}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner "}c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds "}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare "}c["30% increased Damage when you have no Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield "}c["10% reduced Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=-10}},nil}c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["Totems have 50% of your Armour"]={nil,"Totems have 50% of your Armour "}c["-10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-10}},nil}c["15% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=15}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.4}},nil}c["20% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["350% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=350}},nil}c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death "}c["225% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=225}},nil}c["7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=7}},nil}c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=15}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds"]={nil,nil}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil}c["Adds 9 to 15 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},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["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3,4}Replenishes Energy Shield by 2% of Armour when you Block "}c["20% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=20}},nil}c["8% additional chance to Block when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-7}},nil}c["+8 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=8}},nil}c["+2 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=2}},nil}c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["5% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil}c["100% increased Duration of Curses on you +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you +5% Chance to Block "}c["50% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["+475 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=475}},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["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ColdAegis"}}},nil}c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}c["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Your Flasks grant 25% reduced Enemy Stun Threshold during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["20% chance to Block Attacks if you've Blocked a Spell Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["20% increased Effect of Auras on you"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}},nil}c["+80 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of "}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["+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=36}},nil}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={{[1]={[1]={type="Condition",var="AffectedByPurityofLightning"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=10}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=6}},nil}c["Increases and Reductions to Minion Damage also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true}},nil}c["With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"]={nil,"With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies "}c["10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["120% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=120}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=6}},nil}c["Adds 2 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["25% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=25}},nil}c["110% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=110}},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["22% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=22}},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["+8 Mana gained when you Block +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block +4% Chance to Block Attack Damage "}c["Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["0.5% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack "}c["+10% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["25% of Block Chance applied to Spells {variant:2}+7% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s {variant:2}+7% chance to Block Spell Damage "}c["Adds 10 to 16 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit "}c["+20% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"]={nil,"During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped "}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike "}c["You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"]={nil,"You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught "}c["+18% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=18}},nil}c["Adds 7 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["60% of Block Chance applied to Spells {variant:2}+18% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=60}}," applied to s {variant:2}+18% chance to Block Spell Damage "}c["Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning {variant:42}10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning "}c["Melee Attacks Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["60% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=60}}," applied to s "}c["Adds 2 to 3 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=3}},nil}c["Adds 6 to 12 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["15% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second "}c["Spreads Tar when you Block"]={nil,"Spreads Tar when you Block "}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=120}},nil}c["160% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=160}},nil}c["+3 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=3}}},nil}c["Minions have +15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}}},nil}c["50% increased Mine Arming Speed"]={{}," Arming Speed "}c["Maximum total Recovery per second from Life Leech is doubled."]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=100}},nil}c["10% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["10% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}}}," to Taunt on Hit {variant:1}Socketed Gems are Supported by level 17 Increased Minion "}c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}},nil}c["You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit "}c["+5% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=5}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse "}c["Fire Spells have 15% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,keywordFlags=16,name="PhysicalDamageConvertToFire",type="BASE",value=15}},nil}c["+2 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=2}},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 37 to 57 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=37},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=57}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield"]={nil,"Trigger Level 20 Glimpse of Eternity when Hit 144% increased Evasion and Energy Shield "}c["+8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="FirePenetration",type="BASE",value=8}},nil}c["538% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=538}},nil}c["100% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}},nil}c["+90 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=90}},nil}c["+7 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience "}c["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["25% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-25}},nil}c["14% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["20% chance to Avoid Elemental Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=20},[4]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=20}},nil}c["+2 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["Iron Will"]={{[1]={flags=0,keywordFlags=0,name="IronWill",type="FLAG",value=true}},nil}c["Adds 94 to 137 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=94},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=137}},nil}c["Your Spells have Culling Strike"]={nil,"Your Spells have Culling Strike "}c["+1000 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}},nil}c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=-30}}," from Blinded Enemies "}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=30}},nil}c["30% increased Fire Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="FireDamage",type="INC",value=30}},nil}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies "}c["240% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=240}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies "}c["20% of Overkill Damage is Leeched as Life You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill You are Immune to Bleeding "}c["+38% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=38}},nil}c["and nearby Allies cannot be Stunned"]={nil,"and nearby Allies cannot be Stunned "}c["Adds 1 to 25 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=25}},nil}c["Shock Reflection"]={nil,"Shock Reflection "}c["Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do "}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry "}c["Cold Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=32,name="PoisonChance",type="BASE",value=20}},nil}c["Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry"]={nil,"Gain +3 Mana when you hit a Taunted Enemy {variant:2,3}Gain 2 Power Charges on Using a Warcry "}c["+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=24}},nil}c["+200 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=200}},nil}c["80% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}},nil}c["Adds 12 to 16 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=16}},nil}c["2 additional Projectiles if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Has 6 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=6}},nil}c["+15% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Adds 4 to 8 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=8}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre "}c["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["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently"]={{[1]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=10}},nil}c["100% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100}},nil}c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",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}c["+10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["+5% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned "}c["9% increased Skeleton Attack Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil}c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-30},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-30},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=-30},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-30}},nil}c["2 Mana Regenerated per Second per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=50}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit Cannot Leech Mana "}c["Adds 55 to 80 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=80}},nil}c["Adds 21 to 34 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=34}},nil}c["Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"]={nil,"Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage "}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower "}c["15% increased Damage with One Handed Weapons"]={{[1]={flags=16777216,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["40% less Minimum Physical Attack Damage {variant:1}20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum {variant:1}20% more Maximum Physical Attack Damage "}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill "}c["20% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=25}},nil}c["Adds 22 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," Reflected Gained as Life "}c["Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:2,3}10% of Damage Reflected Gained as Life "}c["+78 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=78}},nil}c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil}c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=100}},nil}c["Reflects 1 to 1000 Physical Damage to Attackers on Block"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block "}c["With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["0.8% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.8}},nil}c["Critical Strike Chance is increased by Uncapped Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["90% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage "}c["25% Increased Warcry Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=25}},nil}c["Critical Strikes with Daggers have a 40% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=32768,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect"]={nil,"You gain Onslaught for 4 seconds on using a Warcry {variant:2,3}25% Increased Warcry Effect "}c["You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 4 seconds on using a Warcry "}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies {variant:2,3}You gain Onslaught for 4 seconds on using a Warcry "}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["100% reduced Flammability Mana Reservation"]={{[1]={[1]={skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["30% less Animate Weapon Duration"]={{[1]={[1]={skillName="Animate Weapon",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="MORE",value=-30}},nil}c["50% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["+8% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["+120 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=120}},nil}c["Modifiers to Claw Damage also apply to Unarmed Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ClawDamageAppliesToUnarmed",type="FLAG",value=true}},nil}c["10% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=10}},nil}c["200% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=200}},nil}c["10% increased Elemental Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["Curse Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=15}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=165}},nil}c["Rampage"]={nil,"Rampage "}c["4% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets "}c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy "}c["Adds 10 to 18 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=18}},nil}c["12% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=12}},nil}c["10% of Fire Damage taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsPhysical",type="BASE",value=10}},nil}c["Adds 12 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=60}},nil}c["7 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=7}},nil}c["10% chance to Cause Monsters to Flee Enemies you Shock have 30% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="BASE",value=10}}," to Cause Monsters to Flee Enemies you Shock have 30% reduced "}c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-15}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy "}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=50}},nil}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike "}c["Adds 12 to 20 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=20}},nil}c["100% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=100}},nil}c["25% reduced Mana Cost of Skills that place Mines or throw Traps"]={{[1]={flags=0,keywordFlags=12288,name="ManaCost",type="INC",value=-25}},nil}c["6% increased Attack and Cast Speed while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+2% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Totems Reflect 15% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to "}c["30% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=30}},nil}c["Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=8}},nil}c["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["20% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},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["Nearby allies gain 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18},onlyAllies=true}}},nil}c["Unaffected by Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["Adds 65 to 120 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=65},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=120}},nil}c["Socketed Gems are Supported by level 1 Hypothermia"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportDamageAgainstChilled"}}},nil}c["When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned"]={nil,"When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned "}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses "}c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["60% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-60}},nil}c["15% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["1% increased Chaos Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=1}},nil}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AbyssalCry"}}},nil}c["1% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["190% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=190}},nil}c["Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 25 Life for each Enemy hit by your Attacks "}c["Curse Reflection"]={nil,"Curse Reflection "}c["20% additional Spell Block chance while Cursed"]={{[1]={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["10% additional Block chance while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}},nil}c["50% reduced Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you "}c["+30 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["+60 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60}},nil}c["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active Blood Magic "}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["0.5% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=0.5}},nil}c["You can Cast an additional Brand"]={nil,"You can Cast an additional Brand "}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["5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil}c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="AreaOfEffect",type="INC",value=15}},nil}c["0.5% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["Adds 25 to 50 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=50}},nil}c["200% increased Armour against Projectiles +25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles +25% additional Block Chance against Projectiles "}c["200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles "}c["Socketed Gems are Supported by level 13 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=13,skillId="SupportFasterAttack"}}},nil}c["24% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks "}c["-10 Physical Damage taken from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks {variant:2,3}-80 Physical Damage taken from Projectile Attacks "}c["145% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=145}},nil}c["+13 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13}},nil}c["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy "}c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=2}},nil}c["+1 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=1}}},nil}c["+90 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=90}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=257}},nil}c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ElementalAegis"}}},nil}c["0.8% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.8}},nil}c["+4% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil}c["15% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=15}},nil}c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill "}c["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["284% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=284}},nil}c["40% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Intelligence provides no bonus to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil}c["+5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks "}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks "}c["and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["30% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned "}c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="BASE",value=15}}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased "}c["You lose all Endurance Charges at maximum Endurance Charges Cannot Block"]={nil,"You lose all Endurance Charges at maximum Endurance Charges Cannot Block "}c["Speed per second"]={nil,"Speed per second "}c["You lose all Endurance Charges at maximum Endurance Charges"]={nil,"You lose all Endurance Charges at maximum Endurance Charges "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life "}c["10% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil}c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+43% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=43}},nil}c["135% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=135}},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}c["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit "}c["Lightning Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=64,name="PoisonChance",type="BASE",value=20}},nil}c["20% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-20}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:3,4}25% chance to Curse un-cursed Enemies with Enfeeble on Hit "}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["18% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["Adds 5 to 8 Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["1% of Damage against Shocked Enemies Leeched as Mana"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=1}},nil}c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination "}c["Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge"]={nil,"Gore Footprints {variant:1}3% increased Damage against Enemies on Low Life per Frenzy Charge "}c["6% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Adds 15 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=35}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value "}c["Adds 10 to 25 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=25}},nil}c["Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill "}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["+73 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=73}},nil}c["You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Chilled "}c["80% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["+1500 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block "}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.8}},nil}c["Socketed Gems are supported by level 10 Life Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLifeLeech"}}},nil}c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["170% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=170}},nil}c["75% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["Adds 35 to 65 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=65}},nil}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=24}},nil}c["Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=1},[2]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=2}},nil}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block "}c["+1000 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}},nil}c["Minions have 15% chance to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}}}}," to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Leech "}c["8% chance to Dodge Spells while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportBloodMagic"}}},nil}c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block "}c["Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill"]={nil,"Weapons you Animate create an additional copy {variant:2}25% chance to Trigger level 20 Animate Weapon on Kill "}c["You have Onslaught while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit "}c["+6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["-10% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=-10}},nil}c["63% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=63}},nil}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenOverTime",type="INC",value=-10}},nil}c["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike "}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=150}},nil}c["75% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-8}},nil}c["+360 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=360}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=435}},nil}c["Your Physical Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true}},nil}c["100% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=100}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage "}c["+1 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["25% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["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["Deal no Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoFire",type="FLAG",value=true}},nil}c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-4}}," from Attacks "}c["500% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=500}},nil}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage "}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect "}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.6}},nil}c["You have Onslaught while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery {variant:9,10,11,12,13}Nearby Enemies have an additional 2% chance to receive a Critical Strike "}c["+175 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=175}},nil}c["+305 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=305}},nil}c["Minions have 8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}}}},nil}c["15% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["15% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=15}},nil}c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}c["25% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=25}},nil}c["Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=22},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=35}},nil}c["+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["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["+23 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=23}},nil}c["Adds 1 to 32 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=32}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a "}c["Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill "}c["+185 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=185}},nil}c["Golems have 100% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning {variant:44}Unaffected by Shocked Ground while affected by Purity of Lightning "}c["120% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["10% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=10}},nil}c["50% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-50}},nil}c["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies "}c["Duelist: 1% of Attack Damage Leeched as Life"]={{[1]={[1]={type="Condition",var="ConnectedToDuelistStart"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}c["Adds 1 to 70 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=70}},nil}c["3% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["35% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=35}},nil}c["Adds 475 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=475},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently "}c["Adds 13 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["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["45% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=45}},nil}c["Adds 1 to 4 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=4}},nil}c["30% chance to Blind Enemies on Critical Strike {variant:1,2}Causes Bleeding on Melee Critical Strike"]={{}," to Blind Enemies {variant:1,2}Causes Bleeding on Critical Strike "}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["30% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a "}c["Immune to Elemental Ailments while on Consecrated Ground"]={nil,"Immune to Elemental Ailments while on Consecrated Ground "}c["+20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=18}},nil}c["Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"]={nil,"Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage "}c["+700 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=700}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies {variant:3}50% increased Quantity of Items Dropped by Slain Normal Enemies "}c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=50}},nil}c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil}c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=15}},nil}c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers for 4 seconds on Block "}c["14% increased Brand Attachment range"]={{}," Brand Attachment range "}c["15% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you "}c["30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality {variant:48}30% increased Life Recovery Rate while affected by Vitality "}c["1% increased Elemental Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=1}},nil}c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead "}c["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=20}},nil}c["5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=5}},nil}c["Adds 11 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil}c["Adds 335 to 900 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,keywordFlags=0,name="LightningMin",type="BASE",value=335},[2]={flags=1048576,keywordFlags=0,name="LightningMax",type="BASE",value=900}},nil}c["8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["Enemies Ignited by you during Flask Effect take 10% increased Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["+1 Life gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}c["Adds 1 to 2 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=2}},nil}c["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["800% more Unarmed Physical Damage"]={{[1]={flags=1048576,keywordFlags=0,name="PhysicalDamage",type="MORE",value=800}},nil}c["+5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=5}},nil}c["1% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil}c["+48 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=48}},nil}c["60% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=60}},nil}c["Adds 40 to 115 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=115}},nil}c["Adds 70 to 105 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=105}},nil}c["20% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["20% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}c["Adds 75 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["Your Chaos Damage Poisons Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=100}},nil}c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}}}},nil}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalPenetration"}}},nil}c["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["Arrows always Pierce"]={{[1]={flags=1,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage "}c["Adds 130 to 195 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=130},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=195}},nil}c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish "}c["Life Leeched per Second is doubled."]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="MORE",value=100}},nil}c["40% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=15}},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["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["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["+30% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%"]={{[1]={[1]={div=500,limit=20,limitTotal=true,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2},[2]={[1]={div=500,limit=20,limitTotal=true,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["Nearby Enemies are Intimidated"]={nil,"Nearby Enemies are Intimidated "}c["0% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=0}},nil}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="UniqueAnimateWeapon"}}},nil}c["6% Chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["+30 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=30}},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["18% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil}c["Envy Reserves no Mana"]={{[1]={[1]={skillId="Envy",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["+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["90% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=90}},nil}c["50% increased Herald of Thunder Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil}c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "}c["20% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency "}c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius "}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["+25% to Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=48}},nil}c["2% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["22% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["6% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}},nil}c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil}c["+30 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain Phasing for 4 seconds when your is triggered by an Enemy "}c["Minions Leech 0.2% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}}}},nil}c["Unaffected by Ignite"]={nil,"Unaffected by Ignite "}c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=55}},nil}c["Can't use Chest armour {variant:1,2}15% Chance to Block"]={nil,"Can't use Chest armour {variant:1,2}15% Chance to Block "}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield "}c["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["10% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Adds 34 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=34},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["25% chance to gain a Frenzy Charge on Kill 80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}," to gain aCharge on Kill 80% increased "}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill "}c["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["6% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["10% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},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["Adds 38 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Adds 50 to 100 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=50},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=100}},nil}c["75% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=75}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage against"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}}," against "}c["35% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=35}},nil}c["Cast a Socketed Cold Spell on Melee Critical Strike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"}}},nil}c["25% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=25}},nil}c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",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=262144,name="CritChance",type="INC",value=60}},nil}c["14% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect 20% increased Elemental Damage with Attack Skills"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8388608,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage 20% increased Elemental Damage with Attack Skills "}c["Adds 60 to 110 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=110}},nil}c["20% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Spreads Tar when you take a Critical Strike"]={nil,"Spreads Tar when you take a Critical Strike "}c["Nearby Allies have 2% 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=2},onlyAllies=true}}},nil}c["+200 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=200}},nil}c["Attack Skills deal 24% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["30% reduced Spell Damage taken from Blinded Enemies No Block Chance"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=-30}}," from Blinded Enemies No Block Chance "}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 12 to 23 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=23}},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["50% chance on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground {variant:3,4}100% chance on Block to create Desecrated Ground "}c["100% increased Physical Damage while you have Resolute Technique Elder Item"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique Elder Item "}c["+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["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},nil}c["Adds 38 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["Adds 45 to 100 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=100}},nil}c["Adds 7 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["15% of Physical Attack Damage Added as Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},nil}c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=30}},nil}c["Adds 8 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Hits with this Weapon deal 45% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-6}},nil}c["+24 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["+10 Life Gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies "}c["Hits with this Weapon deal 45% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["8% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Minions Regenerate 1.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}}},nil}c["10% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["40% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy "}c["+20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has a 20% chance "}c["Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies {variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill "}c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells "}c["12% increased Attack Speed with Bows"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["5% Additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["20% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["+61% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=61}},nil}c["Hits with this Weapon deal 45% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil}c["8% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.08}},nil}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies "}c["50% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=50}}," to double "}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=3}}," Character Size 5% increased "}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element "}c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["1% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=1}},nil}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["20% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},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"}}},nil}c["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently "}c["+240 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=240}},nil}c["18% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=18}},nil}c["25% chance to inflict Brittle Cannot inflict Freeze or Chill"]={{}," to inflict Brittle Cannot inflict Freeze or Chill "}c["10% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=5}}}},nil}c["Minions have +29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}}}},nil}c["Grants level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["Minions deal 25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}}},nil}c["13% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Adds 14 to 24 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["8% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=8}},nil}c["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy "}c["Minions have 60% chance to Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}}}},nil}c["30% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-30}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="CrabBarriersMax",type="BASE",value=10}}," that if you would gain a Crab Barrier, you instead gain up to your "}c["Projectiles Pierce all nearby Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire "}c["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["7% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block "}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=100}},nil}c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil}c["Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration"]={nil,"Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration "}c["0.3% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.3}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Adds 92 to 154 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=92},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=154}},nil}c["8% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Adds 1 to 65 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil}c["8% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=8}},nil}c["Adds 1 to 65 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=65}},nil}c["83% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=83}},nil}c["You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"]={nil,"You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing "}c["to you and Allies"]={nil,"to you and Allies "}c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["10% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}},nil}c["Adds 15 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered Corrupted"]={{}," to gain an additional Soul per Enemy Shattered Corrupted "}c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=52}},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["16% increased Cast Speed with Curse Skills"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=16}},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["+375 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=375}},nil}c["15% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining "}c["Adds 80 to 180 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=180}},nil}c["10% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["+2 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["No Life Recovery Applies during Flask effect"]={nil,"No Life Recovery Applies during Flask effect "}c["325% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=325}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["16% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Adds 2 to 6 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=6}},nil}c["100% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["Adds 24 to 36 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=36}},nil}c["24% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=24}},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}c["Adds 1 to 70 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["+30% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["each Stage the Banner has"]={nil,"each Stage the Banner has "}c["Adds 28 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["Adds 28 to 40 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=40}},nil}c["Adds 28 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=33}},nil}c["15% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=15}},nil}c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},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["2% of Life Regenerated per second if you've taken Fire Damage from a Hit Recently"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered "}c["Maximum total Recovery per second from Energy Shield Leech is doubled"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=100}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum "}c["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy "}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}},nil}c["20% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=20}},nil}c["100% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask "}c["You have Onslaught while on full Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+2 to Melee Weapon Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["0.4% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["25% increased Physical Damage with Weapons per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["110% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=110}},nil}c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil}c["Adds 1 to 40 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=40}},nil}c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=28}},nil}c["Immune to Shock"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["Adds 4 to 7 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=7}},nil}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-10}},nil}c["+30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["16% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["10% increased Damage taken from Skeletons"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}}," from s "}c["40% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=40}},nil}c["Gain 10% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=200}},nil}c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["+10 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["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["+1 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=1}}},nil}c["+12% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed"]={nil,"Trigger Socketed Spells when you Focus {variant:12}{crafted}140% increased Duration of Ailments you inflict while Focussed "}c["Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Consumes Frenzy Charges on use {variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use "}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["25% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-25}},nil}c["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.2}},nil}c["32% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=32},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=32},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=32}},nil}c["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["40% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-40}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},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["+18 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=18}},nil}c["21% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=21}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline "}c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.2}},nil}c["+330 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=330}},nil}c["10% increased Effect of Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="BuffEffectOnSelf",type="INC",value=10}},nil}c["+58 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=58}},nil}c["18% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["15% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={flags=0,keywordFlags=0,name="AlliesAurasCannotAffectSelf",type="FLAG",value=true}},nil}c["5% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-5}},nil}c["180% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=180}},nil}c["95% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=95}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=60}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil}c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["4% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["1% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}},nil}c["Adds 1 to 650 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=650}},nil}c["Adds 1 to 600 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["Iron Reflexes while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["Accuracy Rating is Doubled"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=100}},nil}c["2 additional Projectiles if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Regenerate 100 Life per second while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=83}},nil}c["Grants Level 20 Summon Petrification Statue Skill"]={nil,nil}c["55% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["Adds 5 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing "}c["Attacks used by Totems have 7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=7}},nil}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=12}},nil}c["125% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=125}},nil}c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=3}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies "}c["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["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=7}},nil}c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies "}c["40% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["40% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil}c["Spells have an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes "}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing "}c["10% increased Fortify duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=10}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy "}c["66% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=66}},nil}c["Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},nil}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["You and nearby Allies deal 4 to 8 added Physical Damage for"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}}}}," for "}c["Uses both hand slots Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},"Uses both hand slots "}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=12}},nil}c["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite "}c["+500 to Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil}c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil}c["19% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=19}},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=50}},nil}c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil}c["80% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["-75% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-75}},nil}c["2% increased Physical Damage over time per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=16777216,name="PhysicalDamage",type="INC",value=2}},nil}c["Skills used by Traps have 15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=15}},nil}c["25% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["110% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=110}},nil}c["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage "}c["Uses both hand slots"]={nil,"Uses both hand slots "}c["Perfect Agony"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Perfect Agony"}},nil}c["18% Increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["45% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=45}},nil}c["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.8}},nil}c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=100}},nil}c["10% reduced Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["20% increased Movement Speed while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["+13% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect "}c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=73}},nil}c["25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move "}c["+200 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=200}},nil}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage "}c["+10% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["Adds 50 to 80 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=80}},nil}c["Adds 40 to 70 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=70}},nil}c["+5% to Chance to Evade while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["Your Aura Buffs do not affect allies"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasCannotAffectAllies",type="FLAG",value=true}},nil}c["+100 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["Adds 388 to 584 Physical Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="PhysicalMin",type="BASE",value=388},[2]={flags=0,keywordFlags=131072,name="PhysicalMax",type="BASE",value=584}},nil}c["Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"]={nil,"Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item "}c["215% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=215}},nil}c["+4% to Chaos Resistance per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["25% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=25}},nil}c["8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes are doubled "}c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill "}c["30% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies "}c["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["20% increased Mine Laying Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil}c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},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["Adds 4 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["Lightning Spells have 10% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,keywordFlags=64,name="PhysicalDamageConvertToLightning",type="BASE",value=10}},nil}c["Adds 50 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Adds 6 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["14% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=20}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{}," "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges "}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["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["Gain Chilling Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[3]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[4]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil}c["50% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",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["+10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice "}c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}}," against "}c["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=40}},nil}c["30% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-30}},nil}c["Has an additional Implicit Mod"]={nil,"Has an additional Implicit Mod "}c["Adds 45 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements"]={{[1]={flags=0,keywordFlags=0,name="ElementalEquilibrium",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByFireDamage"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}}},[3]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByFireDamage"},[2]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}}},[4]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByColdDamage"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}}},[5]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByColdDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-50}}},[6]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByLightningDamage"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}}},[7]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByLightningDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-50}}}},nil}c["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["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["25% of Physical Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsChaos",type="BASE",value=25}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy "}c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["Enemies near your Totems take 16% increased Physical and Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=16}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=16}}}},nil}c["20% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=20}},nil}c["16% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=16}},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["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block "}c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["+1500 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1500}},nil}c["Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% "}c["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["Adds 50 to 125 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=125}},nil}c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 35 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["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["5% chance to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill {variant:2}10% chance to gain Unholy Might for 10 seconds on Kill "}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["Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["+5 to Maximum number of Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="CrabBarriersMax",type="BASE",value=5}},nil}c["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=165}},nil}c["150% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=150}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect "}c["+15% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["Adds 15 to 50 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=50}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=5,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["Grants level 30 Reckoning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Reckoning"}}},nil}c["30% slower start of Energy Shield Recharge during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-30}},nil}c["22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=22}},nil}c["20% reduced Mana Cost of Skills when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFasterAttack"}}},nil}c["+370 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=370}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={div=5,stat="EvasionOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5}},nil}c["+1 to Level of Socketed Dexterity Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="dexterity",value=1}}},nil}c["Adds 12 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=130}},nil}c["Adds 98 to 121 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=121}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=88}},nil}c["250% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=250}},nil}c["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=50}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["You are Immune to Bleeding while Leeching"]={nil,"You are Immune to Bleeding while Leeching "}c["100% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=100}},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 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["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["+2000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}},nil}c["+1 to Minimum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=1}},nil}c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=20}},nil}c["30% increased Minion Damage if you've used a Minion Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["+231 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=231}},nil}c["+80 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},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 2 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["Raised Zombies' Slam Attack has 100% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillId="ZombieSlam",type="SkillId"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=100}}}},nil}c["25% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Adds 11 to 23 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={{[1]={flags=0,keywordFlags=0,name="StrDmgBonusRatioOverride",type="BASE",value=0.3}},nil}c["8% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["3% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["Adds 20 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask "}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["Adds 110 to 170 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=170}},nil}c["175% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=175}},nil}c["Adds 1 to 6 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=6}},nil}c["Adds 100 to 370 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=370}},nil}c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=55}},nil}c["23% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil}c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=5}},nil}c["Adds 1 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},nil}c["Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=60}},nil}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["Life Leech is applied to Energy Shield instead"]={nil,"Life Leech is applied to Energy Shield instead "}c["Adds 1 to 200 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=200}},nil}c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["+173 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=173}},nil}c["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=31}},nil}c["Skills which throw Traps have Blood Magic"]={{[1]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["50% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["140 Life Regenerated per Second while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=140}},nil}c["140% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=140}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons "}c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=22}},nil}c["+40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}},nil}c["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["+10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["3% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=3}},nil}c["12% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=12}},nil}c["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=50}},nil}c["You lose all Spirit Charges when taking a Savage Hit"]={nil,"You lose all Spirit Charges when taking a Savage Hit "}c["Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["50% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=50}},nil}c["Adds 18 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["+35 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=35}},nil}c["225% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=225}},nil}c["+45% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=45}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy 10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=25}}," to gain an Endurance Charge when you Stun an Enemy 10% increased "}c["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill {variant:2}You gain Phasing for 10 seconds on using a Vaal Skill "}c["2% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["+25 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["2% increased Experience gain {variant:1}3% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}}," Experience gain {variant:1}3% increased "}c["30% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit {variant:4}Trigger Level 1 Abyssal Cry on Hit"]={{}," to cause Enemies to Flee on Hit {variant:4}Trigger Level 1on Hit "}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "}c["+55 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=55}},nil}c["10% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil}c["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=44}},nil}c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["14% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=14}},nil}c["50% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=50}},nil}c["Melee Attacks cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["100% increased Global Armour when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield {variant:1}30% Chance to gain Unholy Might on Block for 3 seconds "}c["+28% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=28}},nil}c["Your Lightning Damage can Freeze but not Shock"]={{[1]={flags=0,keywordFlags=0,name="LightningCanFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="LightningCannotShock",type="FLAG",value=true}},nil}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire "}c["8% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Immune to Ignite"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},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["Your Fire Damage can Shock but not Ignite"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil}c["0% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=0}},nil}c["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfStorms"}}},nil}c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky "}c["Summoned Skeletons take 23% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.23}}}},nil}c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+20% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["10% reduced Damage taken from Trap or Mine Hits"]={{[1]={flags=0,keywordFlags=4096,name="DamageTaken",type="INC",value=-10}}," from or Mine Hits "}c["Armour received from Body Armour is doubled"]={{[1]={flags=0,keywordFlags=0,name="Unbreakable",type="FLAG",value=true}},nil}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=245}},nil}c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit "}c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=20}}," to be Shocked 30% of is taken from Mana before Life when Hit "}c["+20% chance to be Shocked"]={{}," to be Shocked "}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=260}},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 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 48 to 83 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=48},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=83}},nil}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=14},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=173}},nil}c["10% increased Damage Taken while Energy Shield is Full"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full "}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=64},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=107}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect {variant:3}{crafted}30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits {variant:3}{crafted}30% increased Rarity of Items found "}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds "}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=54},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=88}},nil}c["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["20% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=20}},nil}c["+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Gain Arcane Surge when you deal a Critical Strike"]={nil,"Gain Arcane Surge when you deal a Critical Strike "}c["You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Ignited for 3 seconds after being Ignited {variant:1}You cannot be Shocked for 1 second after being Shocked "}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["+38 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=38}},nil}c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," of Shrine Effects on you "}c["75% increased Effect of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you 50% increased Duration of Shrine Effects on you "}c["+1 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you "}c["+15 Energy Shield gained on Kill 75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill 75% increased Effect of Shrine Buffs on you "}c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonLesserShrine"}}},nil}c["You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 10 seconds on using a Vaal Skill "}c["Gain 5% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=5}},nil}c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["20% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}c["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["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["20% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=20}},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["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["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["3% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-5}},nil}c["60% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["Can't use Chest armour"]={nil,"Can't use Chest armour "}c["1% Life Regenerated per Second for each of your Traps Triggered Recently, up to 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="TrapTriggeredRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["8% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-8}},nil}c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil}c["0.2% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=20}},nil}c["6% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=524288,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Adds 100 to 200 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=200}},nil}c["30% increased Trap Trigger Radius"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger "}c["or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={nil,"or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["16% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit "}c["+1 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy "}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life "}c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers "}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["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["+29% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=29}},nil}c["Regenerate 100 Life per second if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline"]={nil,"Unaffected by Vulnerability while affected by Determination {variant:13}8% chance to Block Spells while affected by Discipline "}c["Gain Unholy Might during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil}c["+32% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=32}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently Enemies Taunted by you deal 10% less Damage with Hits and\nAilments against other targets"]={{}," Enemies Taunted by you deal 10% less and\nAilments against other targets "}c["21% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=21}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="LightningSpell"}}},nil}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use "}c["Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=62}},nil}c["Attack Skills deal 12% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["45% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=45}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=22}},nil}c["+20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements "}c["75% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=75}},nil}c["5% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["70% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "}c["70% increased Damage with Channelling Skills"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of "}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["Gain 8% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=8}},nil}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil}c["Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["+225% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit "}c["18% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}c["30% chance to gain an additional Vaal Soul on Kill"]={{}," to gain an additional Soul on Kill "}c["Projectile Damage increased by 50% of Arrow Pierce Chance {variant:2}Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance {variant:2}Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce "}c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You "}c["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=10}},nil}c["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},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["15% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["50% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["10% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}},nil}c["+200 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=200}},nil}c["30% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=30}},nil}c["10% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10}},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["Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield "}c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil}c["10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["You gain 150 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["+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["Strength provides no bonus to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil}c["+180 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=180}},nil}c["150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=1500,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=150}},nil}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=1000,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Adds 41 to 123 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=123}},nil}c["You gain 500 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillId="ZombieSlam",type="SkillId"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}}}},nil}c["Adds 188 to 563 Lightning Damage to Unarmed Attacks"]={{[1]={flags=1048576,keywordFlags=0,name="LightningMin",type="BASE",value=188},[2]={flags=1048576,keywordFlags=0,name="LightningMax",type="BASE",value=563}},nil}c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["+175 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=175}},nil}c["Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["+250 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=250}},nil}c["+33% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=33}},nil}c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}c["20% chance to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges "}c["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill "}c["30% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["14% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Attacks with this Weapon Penetrate 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill "}c["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["15% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiritBurst"}}},nil}c["+12% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12}},nil}c["30% chance to Cast Socketed Spells when you Spend at least 100 Mana to Use a Skill"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=30}}," to Cast Socketed s when you Spend at least 100 to Use a Skill "}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when "}c["Your Elemental Golems are Immune to Elemental Damage"]={nil,"Your Elemental Golems are Immune to Elemental Damage "}c["13% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil}c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=120}},nil}c["+50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=50}},nil}c["If you've Cast a Spell Recently, you and nearby Allies have +10% Chance to Block Spell Damage"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}}}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil}c["Summoned Holy Relics have 23% reduced Cooldown Recovery Speed"]={{[1]={[1]={skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-23}}}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "}c["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={[1]={skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-25}}}},nil}c["18% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=18}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=70}},nil}c["+30% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil}c["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["Nearby Enemies have -10% to all Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}}}},nil}c["120% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=120}},nil}c["Auras from your Skills grant +1% Physical Damage Reduction to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}}},nil}c["40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["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["+24 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers "}c["25% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently "}c["+9% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=9}},nil}c["+52% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=52}},nil}c["Purity of Ice Reserves no Mana"]={{[1]={[1]={skillId="ColdResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Chance to Block Spell Damage is Unlucky +120 to Strength"]={nil,"Chance to Block Spell Damage is Unlucky +120 to Strength "}c["+3000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["80% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=80}},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["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil}c["20% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["270% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=270}},nil}c["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack "}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["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["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil}c["Adds 52 to 79 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=52},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=79}},nil}c["+60 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60}},nil}c["Adds 20 to 30 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}},nil}c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "}c["20% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["Enemies Taunted by you cannot Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}}}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"]={nil,"You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges "}c["-1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["Damage penetrates 25% Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=25}},nil}c["Minions have +325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}}}},nil}c["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20}},nil}c["Minions have +350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}}}},nil}c["15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}},nil}c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=108}},nil}c["Minions have 10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=160}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Mercury Footprints"]={nil,"Mercury Footprints "}c["200% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=200}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed "}c["25% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["+65 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=65}},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["+180 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=180}},nil}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=200}},nil}c["100% increased Physical Damage while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["You gain Onslaught for 2 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill "}c["+250 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}},nil}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage. "}c["+50% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=50}},nil}c["Cannot Leech when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true},[2]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["60% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-60}},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["+12% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["250% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=250}},nil}c["55% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=55}},nil}c["+33% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=33}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour "}c["10% chance to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3,4}20% chance to gain an Endurance Charge when you Block "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["300% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=300}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Chance to Block Spell Damage is Unlucky"]={nil,"Chance to Block Spell Damage is Unlucky "}c["300% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=300}},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 18 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportBlind"}}},nil}c["60% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["0.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["90% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=90}},nil}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill "}c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["8% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}c["Cannot be inflicted with Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["140% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=140}},nil}c["9 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=9}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of "}c["Iron Grip"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Grip"}},nil}c["0.5% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.5}},nil}c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=15}}," for 9 seconds on Throwing a "}c["You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike {variant:3}You gain Onslaught for 4 seconds on Critical Strike "}c["2% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["Socketed Gems are Supported by level 12 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFasterAttack"}}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterAttack"}}},nil}c["10% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}},nil}c["10% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=5}},nil}c["15% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["+4% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=4},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=4},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=4}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}c["Triggers Level 20 Lightning Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningAegis"}}},nil}c["23% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=23}},nil}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["25% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=25}},nil}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["All bonuses from an Equipped Shield apply to your Minions instead of you"]={{},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit {variant:1}5% chance to create Shocked Ground when Hit "}c["80% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-80}},nil}c["10% chance to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Curse on Hit "}c["170% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=170}},nil}c["Adds 1 to 80 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=80}},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=58}},nil}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredShockedGround"}}},nil}c["+1000 to Spectre maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}}}},nil}c["25% chance to Sap Enemies Cannot inflict Shock"]={{}," to Sap Enemies Cannot inflict Shock "}c["25% chance to Sap Enemies"]={{}," to Sap Enemies "}c["Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice"]={nil,"Unaffected by Flammability while affected by Purity of Fire {variant:37}Immune to Freeze while affected by Purity of Ice "}c["190% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=190}},nil}c["Projectiles Pierce 5 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=5}},nil}c["Minions have 13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}}}},nil}c["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-50}},nil}c["4% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["5% chance to Gain Unholy Might for 4 seconds on Melee Kill"]={{}," to Gain Unholy Might for 4 seconds on Kill "}c["Socketed Gems are Supported by level 20 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportConcentratedEffect"}}},nil}c["10% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits refresh their Duration when they Kill an Ignited Enemy "}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["+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["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items "}c["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,keywordFlags=0,name="ActiveRagingSpiritLimit",type="INC",value=-75}},nil}c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"Gain an Endurance Charge when a Power Charge expires or is consumed "}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently {variant:2}25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% "}c["+120 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=120}},nil}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently "}c["Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Acrobatics"}},nil}c["You and Allies affected by your Aura Skills deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={[1]={div=1,stat="ColdResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["10% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=10}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently "}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life "}c["Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"]={nil,"Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use "}c["28% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=28}},nil}c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge "}c["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["You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"]={nil,"You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge "}c["40% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-40}},nil}c["+15 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=15}},nil}c["to surrounding targets"]={nil,"to surrounding targets "}c["+23 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=23}},nil}c["also grant an equal chance to gain a Power Charge on Kill"]={nil,"also grant an equal chance to gain a Power Charge on Kill "}c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit "}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["15% chance to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike {variant:3}50% chance to gain a Flask Charge when you deal a Critical Strike "}c["Adds 1 to 60 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=60}},nil}c["35% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=35}},nil}c["+40 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block "}c["Minions gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}}}},nil}c["8% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["10 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=10}},nil}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit 0.5% of Attack Damage Leeched as Life "}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block"]={{[1]={[1]={stat="ShieldBlockChance",threshold=30,type="StatThreshold"},flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["+40 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=40}},nil}c["12% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil}c["25% chance to inflict Brittle"]={{}," to inflict Brittle "}c["260% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=260}},nil}c["12% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["23% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level "}c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=100}},nil}c["+38 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=38}},nil}c["Immune to Freeze while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["25% chance to Scorch Enemies"]={{}," to Scorch Enemies "}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["60% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={stat="ManaReserved",threshold=0,type="StatThreshold",upper=true},flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["+300 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=300}},nil}c["10% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=10}},nil}c["18% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=18}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},nil}c["235% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=235}},nil}c["85% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=85}},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["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["Right ring slot: You cannot Regenerate Mana"]={nil,"You cannot Regenerate Mana "}c["Point Blank"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Point Blank"}},nil}c["74% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=74}},nil}c["Adds 3 to 72 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=72}},nil}c["20% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," Bow as Extra Damage of an Element "}c["40% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["Golem Skills have 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["80% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=80}},nil}c["10% chance to Trigger Level 8 Summon Raging Spirit on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=8,skillId="SummonRagingSpirit"}}},nil}c["30% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["Adds 21 to 36 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=36}},nil}c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=7}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "}c["6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["Adds 3 to 47 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=47}},nil}c["Brand Skills have 20% increased Duration"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["Adds 2 to 45 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=45}},nil}c["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["+80 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}},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["15% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["40% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil}c["+11% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=11}},nil}c["Chance to Block Spell Damage is equal to Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceIsBlockChance",type="FLAG",value=true}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile "}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["5% chance to Curse Enemies with Enfeeble on Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit {variant:2}10% chance to Curse Enemies with Enfeeble on Hit "}c["+2 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=2}}},nil}c["60% reduced Mana Cost of Totem Skills that cast an Aura"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," Skills that cast an Aura "}c["25 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=25}},nil}c["15% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill "}c["Uses both hand slots 90% increased Critical Strike Chance"]={nil,"Uses both hand slots 90% increased Critical Strike Chance "}c["140% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=140},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=140},[3]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=140},[4]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=140},[5]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=140},[6]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=140}},nil}c["Lose 35 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=35}},nil}c["+18 to Quality {variant:4}{crafted}+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}}," Quality {variant:4}{crafted}+15% to "}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+18 to Quality"]={{}," Quality "}c["16% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["30% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=30}},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["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["Adds 175 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=175},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}},nil}c["+190 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=190}},nil}c["25% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement "}c["0.2% of Cold Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["Take 5 Physical Damage when hit by Attacks"]={nil,"5 Physical Damage when hit by Attacks "}c["Reflects 5 Physical Damage to Melee Attackers"]={{},nil}c["110% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=110}},nil}c["Adds 1 to 150 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=150}},nil}c["0.3% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.3}},nil}c["0.6% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["Adds 190 to 220 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=190},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=220}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies "}c["135% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=135}},nil}c["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true}},nil}c["Adds 30 to 45 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=30},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=45}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed"]={{[1]={flags=3,keywordFlags=0,name="Speed",type="BASE",value=25}}," to Trigger a Socketed when you Attack with a Bow 15% increased "}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item "}c["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["+90 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=90},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=90}},nil}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited "}c["+70 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=70}},nil}c["230% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=230}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["50% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["350% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=350}},nil}c["24% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=24}},nil}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AvianTornado"}}},nil}c["23% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=23}},nil}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportOnslaughtOnSlayingShockedEnemy"}}},nil}c["You are Cursed with Level 20 Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=20,skillId="Vulnerability"}}},nil}c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=30}},nil}c["475% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=475}},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["25% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"]={nil,"With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill "}c["25% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["20% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-20}},nil}c["-10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-10}},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 Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["Can Summon up to 3 additional Golems at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil}c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["8% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=8}},nil}c["100% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=100}},nil}c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil}c["Cannot be Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},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["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportReducedMana"}}},nil}c["25% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25}},nil}c["Conduit"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Conduit"}},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["-30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-30}},nil}c["+2 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["Armour is increased by Uncapped Fire Resistance"]={{[1]={[1]={div=1,stat="FireResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil}c["+120 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=120}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}},nil}c["+25 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=25}},nil}c["+1 to maximum number of Zombies per 300 Strength"]={{[1]={[1]={div=300,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["45% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=45}},nil}c["You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 3 seconds after being Shocked "}c["Gain 10% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element "}c["250% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=250}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=50}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=125}},nil}c["150% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}c["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["Adds 6 to 9 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=9}},nil}c["Adds 40 to 60 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=60}},nil}c["20% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=20}},nil}c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["10% less Mana Reservation of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-10}},nil}c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth "}c["Adds 8 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}c["13% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge "}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges "}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFirePenetration"}}},nil}c["12% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["28% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=28}},nil}c["Adds 105 to 253 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=105},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=253}},nil}c["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["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 to s "}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity {variant:8}-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill {variant:8}-5 to Total Mana Cost of Skills while affected by Clarity "}c["+85 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=85}},nil}c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=25}}," ing a Frozen Enemy "}c["70% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["+4% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned "}c["50% chance to gain a Power Charge on Killing a Frozen Enemy"]={{}," to gain a Power Charge on Killing a Frozen Enemy "}c["30% Chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=30}},nil}c["Adds 1 to 40 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=40}},nil}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["+1 Maximum Power Charge"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds "}c["Enemies you Shock have 20% reduced Movement Speed Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},"Enemies you Shock have 20% reduced Damage "}c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=45}},nil}c["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["+300 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=300}},nil}c["Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage "}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has "}c["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["3% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},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["60% increased Damage with Channelling Skills"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["50% increased Elemental Ailment Duration on You You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You You are Immune to Bleeding "}c["12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.3}}}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating "}c["+8% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=320}},nil}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportControlledDestruction"}}},nil}c["17% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=17}},nil}c["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack "}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=3,type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=3},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=3,type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=5}},nil}c["10% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},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="active_skill",value=1}}},nil}c["8% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=115}},nil}c["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=14}},nil}c["29% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=29}},nil}c["Adds 27 to 86 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=86}},nil}c["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["+25 Energy Shield gained on Kill Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill Grants Malachai's Endurance,and Power for 6 seconds each, in sequence "}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter"]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter "}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges "}c["Gain 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=15}},nil}c["6% increased Attack Damage for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the "}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Flammability"}}},nil}c["+25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=92}},nil}c["+20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["+20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},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["26% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},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["37% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=37}},nil}c["100% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=100}},nil}c["Reserves 30% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=30}},nil}c["26% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["+18 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=18}},nil}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=20}},nil}c["Adds 20 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=20},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=30}},nil}c["10% increased Skeleton Attack Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["+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["+8% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=8}},nil}c["Adds 151 to 203 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMin",type="BASE",value=151},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMax",type="BASE",value=203}},nil}c["Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMin",type="BASE",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMax",type="BASE",value=210}},nil}c["Adds 181 to 251 Cold Damage to Bow Attacks"]={{[1]={flags=8192,keywordFlags=0,name="ColdMin",type="BASE",value=181},[2]={flags=8192,keywordFlags=0,name="ColdMax",type="BASE",value=251}},nil}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["50% increased Stun Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you "}c["31% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=31}},nil}c["Grants level 20 Death Aura Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ChaosDegenAuraUnique"}}},nil}c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=140}},nil}c["Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies "}c["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=33}},nil}c["10% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=10}},nil}c["Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},nil}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=4096,name="ElementalPenetration",type="BASE",value=10}},nil}c["10% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["19% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=19}},nil}c["Adds 5 to 8 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=8}},nil}c["22% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=22}},nil}c["Your Spells are disabled"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["50% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=50}},nil}c["90% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=90}},nil}c["Adds 14 to 22 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=22}},nil}c["33% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=10}},nil}c["0.3% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.3}},nil}c["+1 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=60}},nil}c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=25}},nil}c["+5 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=5}}},nil}c["+10 Life Gained on Killing Ignited Enemies 25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies 25% reduced Ignite Duration "}c["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["+33 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["Flasks apply to your Zombies and Spectres"]={{[1]={[1]={skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=35}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration "}c["40% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=40}},nil}c["30% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["Right ring slot: You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second"]={nil,"You cannot Regenerate Mana {variant:1}Right ring slot: 4% of Energy Shield Regenerated per second "}c["Grace has 60% increased Aura Effect"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["40% less Weapon Damage"]={{[1]={flags=8388608,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks"]={{[1]={flags=8192,keywordFlags=0,name="ColdMin",type="BASE",value=188},[2]={flags=8192,keywordFlags=0,name="ColdMax",type="BASE",value=262}},nil}c["Determination has 60% increased Aura Effect"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["+10 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+135 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=135}},nil}c["15% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=15}},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["1% of Damage against Frozen Enemies Leeched as Mana"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=1}},nil}c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers "}c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["36% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=36}},nil}c["Attacks Cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["You have Phasing while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["50% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=50}},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["Creates a Smoke Cloud on Use"]={{},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["25% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-25}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=16}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more "}c["Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"]={nil,"Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use "}c["You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit {variant:3}100% increased Onslaught Effect "}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil}c["+20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-10}},nil}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=30}},nil}c["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=5}},nil}c["120% of Block Chance applied to Spells when on Low Life {variant:3}+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},[2]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s {variant:3}+36% chance to Block Spell Damage "}c["25% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield "}c["Right ring slot: Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Fork {variant:2}Projectiles from Spells cannot Pierce "}c["15% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield "}c["20% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}},nil}c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["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["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield "}c["+50 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["2 additional Projectiles during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={nil,"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil}c["12% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["20% more Maximum Physical Attack Damage {variant:2}40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum {variant:2}40% more Maximum Physical Attack Damage "}c["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum "}c["10% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"]={{}," to gain 1 Rage when you Hit a Rare or Unique Enemy "}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has "}c["5% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["+3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["20% less Minimum Physical Attack Damage {variant:2}40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum {variant:2}40% less Minimum Physical Attack Damage "}c["Gain 50 Life when you Stun an Enemy"]={nil,"Gain 50 Life when you Stun an Enemy "}c["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=50}},nil}c["Adds 1 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity "}c["+7% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Has no Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="NoAttributeRequirements",type="FLAG",value=true}},nil}c["Adds 6 to 13 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=13}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges "}c["8% chance to Block while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil}c["0.2% of Fire Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="FireDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["+8 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block "}c["Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["+1% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["Adds 1 to 34 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=34}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["35% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["Banner Skills Reserve no Mana"]={{[1]={[1]={skillNameList={[1]="Dread Banner",[2]="War Banner"},type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["12% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed "}c["80% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=80}},nil}c["Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={{[1]={[1]={skillType=76,type="SkillType"},[2]={type="Condition",var="BrandAttachedToEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill "}c["Iron Reflexes"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun "}c["1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"]={{[1]={[1]={div=300,stat="LowestOfArmourAndEvasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["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["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Anger Reserves no Mana"]={{[1]={[1]={skillId="Anger",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6}},nil}c["+25 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["15% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=15}},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil}c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder "}c["20% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["+125 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=125}},nil}c["12% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=12}},nil}c["You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"]={nil,"You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second "}c["50% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=50}},nil}c["118% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=118}},nil}c["130% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=130}},nil}c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["+50 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["40% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=2}},nil}c["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["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil}c["40% increased Effect of Heralds on you"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["Adds 58 to 98 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=58},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=98}},nil}c["50% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["40% increased Physical Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["71 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=71}},nil}c["125% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=125}},nil}c["5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=10,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["-40 Physical Damage taken from Attacks 40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks 40% increased Armour "}c["10% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=10}},nil}c["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks "}c["Brand Recall has 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillName="Brand Recall",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"]={nil,"Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies "}c["22% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=22}},nil}c["-10% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-10},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=-10},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=-10},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-10}},nil}c["Curse Enemies with Socketed Curse Gem on Hit"]={nil,nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["50% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=50}},nil}c["Cannot inflict Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="CannotFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotChill",type="FLAG",value=true}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=75}},nil}c["60% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["1% increased Movement Speed per 600 Evasion Rating, up to 75%"]={{[1]={[1]={div=600,limit=75,limitTotal=true,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["Herald of Agony has 79% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=79}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=70}},nil}c["Focus has 25% increased Cooldown Recovery Speed"]={nil,"Focus has 25% increased Cooldown Recovery Speed "}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=4}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed "}c["+20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block "}c["+48 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=48}},nil}c["+48 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=48}},nil}c["When you Kill a Rare monster, you gain its mods for 20 seconds"]={nil,"When you Kill a Rare monster, you gain its mods for 20 seconds "}c["298% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=298}},nil}c["30% increased Damage against Rare monsters"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," against Rare monsters "}c["+55 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=55}},nil}c["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,keywordFlags=0,name="PhysicalDamage",type="MORE",value=1000}},nil}c["+55 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=55}},nil}c["45% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["+3% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}},nil}c["20% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill "}c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded "}c["-30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-30}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies "}c["16% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=150}},nil}c["8% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",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["13% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy"]={nil,"With at least 40 Strength in Radius, Cleave has 3% increased Area of Effect per Nearby Enemy "}c["Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Enemies cannot deal Critical Strikes "}c["+36 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=36}},nil}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},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["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TentacleSmash"}}},nil}c["+14% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=14}},nil}c["50% increased Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["20% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["-1 Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["100% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["Socketed Gems are Supported by level 30 Iron Will"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportIronWill"}}},nil}c["80% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil}c["30% reduced Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=-30}},nil}c["Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage "}c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies "}c["60% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["10% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["24% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Enemies Ignited by an Attack Burn 35% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=35}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-15}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["Hatred Reserves no Mana"]={{[1]={[1]={skillId="Hatred",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Your Flasks grant 10% chance to Shock during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Your Flasks grant 10% chance to Freeze during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["Adds 228 to 280 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=228},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=280}},nil}c["90% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=90}},nil}c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningSpell"}}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre {variant:1}{crafted}Adds 12 to 16 Fire Damage "}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageLifeLeech",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["25% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["8% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Cannot be Knocked Back {variant:1}+150 to maximum Life"]={nil,"Cannot be Knocked Back {variant:1}+150 to maximum Life "}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["You and nearby allies gain 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["10% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage"]={nil,"Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage "}c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=35}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination {variant:12}Unaffected by Vulnerability while affected by Determination "}c["+33 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["1% increased Damage per 5 of your lowest Attribute"]={{[1]={[1]={div=5,stat="LowestAttribute",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["Cannot be Ignited if Strength is higher than Dexterity"]={{[1]={[1]={type="Condition",var="StrHigherThanDex"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["25% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=25}},nil}c["1% increased Projectile Attack Damage per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["You count as on Low Life while you are Cursed with Vulnerability"]={{[1]={[1]={type="Condition",var="AffectedByVulnerability"},flags=0,keywordFlags=0,name="Condition:LowLife",type="FLAG",value=true}},nil}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability "}c["Enemies you kill are Shocked"]={nil,"Enemies you kill are Shocked "}c["Rampage 1% increased Rarity of Items found per 15 Rampage Kills"]={nil,"Rampage 1% increased Rarity of Items found per 15 Rampage Kills "}c["5% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=5}},nil}c["Manifested Dancing Dervish disables both weapon slots"]={{},nil}c["10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes "}c["10% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-10},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-10}},nil}c["Nearby allies Recover 2% of your maximum Life when you Die"]={nil,"Nearby allies Recover 2% of your maximum Life when you Die "}c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "}c["70% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Mines cannot be Damaged for 5 seconds after being Placed "}c["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["25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=25}},nil}c["10% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["0.2% of Physical Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["18% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil}c["+13% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["+78 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=78}},nil}c["+50% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["Socketed Gems are Supported by Level 25 Blessing"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportAuraDuration"}}},nil}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=130}},nil}c["You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You and your Totems Regenerate 1% of Life per second per Totem "}c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil}c["Adds 60 to 110 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=60},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=110}},nil}c["Adds 60 to 110 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=60},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=110}},nil}c["Skills used by Traps have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=20}},nil}c["Counts as Dual Wielding"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsDualWielding",value=true}}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant "}c["25% of Block Chance applied to Spells {variant:4}+7% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s {variant:4}+7% chance to Block Spell Damage "}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["+50 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds "}c["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=65536,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Socketed Gems are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill "}c["28% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-28}},nil}c["Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredBoneNova"}}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-25}},nil}c["8% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil}c["18% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=18}},nil}c["30% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil}c["Minions deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["40% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit "}c["45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["Rampage 2% increased Area of Effect per 25 Rampage Kills"]={nil,"Rampage 2% increased Area of Effect per 25 Rampage Kills "}c["+20% chance to be Pierced by Projectiles {variant:2,3}Projectiles Pierce you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by {variant:2,3}Projectiles Pierce you "}c["212% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=212}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="FireMin",type="BASE",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="FireMax",type="BASE",value=25}},nil}c["Adds 90 to 180 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil}c["45% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=45}},nil}c["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded "}c["+10 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["20% chance to attack with Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=16,skillId="TriggeredMoltenStrike"}}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=4}},nil}c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil}c["Templar: Damage Penetrates 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},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 13 to 31 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=31}},nil}c["30% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["-1 Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["+40 Life gained when you Block {variant:2,3}+48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block {variant:2,3}+48 Life gained when you Block "}c["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=70}},nil}c["+90 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90}},nil}c["Adds 45 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["+23 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters "}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary "}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill "}c["24% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["305% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=305}},nil}c["Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"]={nil,"Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill "}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage "}c["225% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=225}},nil}c["25% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=25}},nil}c["You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike "}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons {variant:2}With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["Immune to Elemental Ailments while Phasing"]={nil,"Immune to Elemental Ailments while Phasing "}c["Nearby Allies have 30% increased Item Rarity {variant:1}Nearby Allies' spells have Culling Strike"]={{}," Item Rarity {variant:1}Nearby Allies' s have Culling Strike "}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportColdPenetration"}}},nil}c["+12% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=12}},nil}c["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity "}c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity "}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenOverTime",type="INC",value=-25}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "}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["Adds 10 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["Attacks have Blood Magic"]={{[1]={flags=1,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["You gain 8% increased Damage for each Trap"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each "}c["130% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=130}},nil}c["1.2% of Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["5% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy "}c["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["Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements {variant:33}Immune to Ignite while affected by Purity of Fire "}c["26% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["+6% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["20% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}},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["25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23}},nil}c["Your Physical Damage can Chill"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill "}c["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["50% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["Adds 70 to 165 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},nil}c["210% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=210}},nil}c["+10 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["+13% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=13}},nil}c["You gain Onslaught for 3 seconds on Culling Strike"]={nil,"You gain Onslaught for 3 seconds on Culling Strike "}c["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike "}c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Triggers Level 20 Blinding Aura when Equipped"]={nil,nil}c["Grants Summon Harbinger of Focus Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfFocus"}}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies "}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="LightningWarp"}}},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 13 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["50% reduced Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-50}},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["+23 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=23}},nil}c["Has 1 Socket"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=1}},nil}c["50% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell "}c["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["+44 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=44}},nil}c["25% increased Effect of Heralds on you"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["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["+350 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=350}},nil}c["15% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Adds 15 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["88% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=88}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected "}c["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["22% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=22}},nil}c["14% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Cover Enemies in Ash when they Hit you Avatar of Fire"]={nil,"Cover Enemies in Ash when they Hit you Avatar of Fire "}c["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["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["350% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=350}},nil}c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},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["100% increased Damage with Ignites inflicted on Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=4194304,name="Damage",type="INC",value=100}},nil}c["Enemies Chilled by you take 40% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=40}}}},nil}c["+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["+500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},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 285 to 330 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=285},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=330}},nil}c["20% increased Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Minions gain Unholy Might for 5 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill "}c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Adds 285 to 330 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=285},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=330}},nil}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["Adds 237 to 272 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=237},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=272}},nil}c["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="IgnoreFireResistance",type="FLAG",value=true}},nil}c["+250 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=250}},nil}c["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=3}},nil}c["Adds 10 to 23 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=23}},nil}c["20% increased Golem Damage for each Golem you have Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned "}c["25% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8388608,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["8% increased Attack Speed with Staves"]={{[1]={flags=131073,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Adds 15 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}},nil}c["25% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=25}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed "}c["+220 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=220}},nil}c["40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=40}},nil}c["250% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=250}},nil}c["10% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",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["30% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-30}},nil}c["3% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=3}}," gained as Mana over 4 seconds when Hit "}c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," Enemies to Flee on hit "}c["+5 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=5}}},nil}c["+1 to Minimum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMin",type="BASE",value=1}},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["-40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-40}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["+23% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill "}c["Attack Skills deal 16% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+17 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=180}},nil}c["+3000 to Armour during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["+1% Chance to Block Attack Damage per 50 Strength"]={{[1]={[1]={div=50,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["+2% Critical Strike Chance while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil}c["+6% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["Witch: 0.5% of Maximum Mana Regenerated per second"]={{[1]={[1]={type="Condition",var="ConnectedToWitchStart"},flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=0.5}},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["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["+88 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=88}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments "}c["15 Life Regenerated per second for each Uncorrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="NonCorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["10% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=10}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=13}},nil}c["+10% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=10}},nil}c["+75 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage "}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["Spectres have 100% increased Damage"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life "}c["40% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["15% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=5}},nil}c["3% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence "}c["+48% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=48}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies "}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["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=30}},nil}c["Adds 20 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=60}},nil}c["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["0.5% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["50% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil}c["50% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=50}},nil}c["Nearby Enemies take 10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=10}}}},nil}c["Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances"]={nil,"Can't use other Rings {variant:1,2,3}+12% to all Elemental Resistances "}c["Can't use other Rings"]={nil,"Can't use other Rings "}c["+12 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportConcentratedEffect"}}},nil}c["10% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["Adds 9 to 18 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=9},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=18}},nil}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=50}},nil}c["4% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["If you've Attacked Recently, you"]={nil,"If you've Attacked Recently, you "}c["Cannot be Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance "}c["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=27}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=30}},nil}c["20% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["+22% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=22}},nil}c["65% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=65}},nil}c["Adds 53 to 76 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=76}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["Adds 2 to 66 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMin",type="BASE",value=2},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMax",type="BASE",value=66}},nil}c["+25% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=43}},nil}c["Your Lightning Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true}},nil}c["15% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=15}},nil}c["6% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently "}c["Projectiles from Spells cannot Pierce"]={{[1]={flags=2,keywordFlags=0,name="CannotPierce",type="FLAG",value=true}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life "}c["Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells cannot Fork "}c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="ChainCount",type="BASE",value=1}},nil}c["Adds 25 to 90 Lightning Damage to Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=25},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=90}},nil}c["Brand Skills have 10% increased Duration"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells Fork "}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["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TouchOfGod"}}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=22}},nil}c["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="Purity"}}},nil}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Damage Penetrates 4% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=4}},nil}c["Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Immune to Elemental Ailments while you have Arcane Surge "}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers "}c["Left ring slot: 40% reduced Reflected Elemental Damage taken {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected {variant:1,2}Right ring slot: 30% reduced Reflected Physical Damage taken "}c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=90}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected "}c["50% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds "}c["12% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=12}},nil}c["20% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["20% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-20}},nil}c["Gain 8% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=8}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice {variant:40}Unaffected by Frostbite while affected by Purity of Ice "}c["Left ring slot: 40 Mana Regenerated per second"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=40}},nil}c["116% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=116}},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}},nil}c["Right ring slot: 3% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil}c["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["Right ring slot: 4% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil}c["+48% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=48}},nil}c["+333 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=333}},nil}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=100}},nil}c["20% increased Critical Strike Chance with Maces"]={{[1]={flags=65536,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill "}c["+1 Melee Weapon and Unarmed Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["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 12 Lesser Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportLesserMultipleProjectiles"}}},nil}c["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["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill "}c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+3% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=100}},nil}c["Minions have +2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}}}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-6}},nil}c["8% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=8}}," gained as Mana over 4 seconds when Hit "}c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=55}},nil}c["12 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12}},nil}c["Cannot Be Stunned while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={flags=0,keywordFlags=0,name="PointBlank",type="FLAG",value=true}},nil}c["2% increased Intelligence for each Unique Item you have equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}},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["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges "}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"]={nil,"30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies "}c["82% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=82}},nil}c["Minions deal 48 to 72 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=48}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=72}}}},nil}c["Chaos Damage can Ignite, Chill and Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["Critical Strikes do not always Freeze"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true}},nil}c["+500 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks "}c["Adds 10 to 20 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=20}},nil}c["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["5% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["-80 Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks 200% increased Armour against Projectiles "}c["Gain Phasing for 4 seconds on Kill"]={nil,"Gain Phasing for 4 seconds on Kill "}c["15% chance to gain a Power Charge on Throwing a Trap {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a {variant:2,3}25% chance to gain a Power Charge on Throwing a Trap "}c["8% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-8}},nil}c["Golems Deal 45% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-45}}}},nil}c["8% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-8}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill "}c["20% increased Attack Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["35% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["10% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["15% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-15}},nil}c["Adds 1 to 100 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=100}},nil}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["+2 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow "}c["80% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-30}},nil}c["+20% to all Elemental Resistances while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["Adds 29 to 45 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=29},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=45}},nil}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield {variant:3}Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 20% chance when Placing Mines to Place an additional Mine "}c["5% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item "}c["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["50% less Weapon Damage"]={{[1]={flags=8388608,keywordFlags=0,name="Damage",type="MORE",value=-50}},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["Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}}}," Elemental Equilibrium "}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit deals 50% less Fire Damage "}c["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised "}c["+4% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=4}},nil}c["25% increased Light Radius during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil}c["Attack Skills deal 10% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium "}c["Socketed Gems have Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect"]={nil,"Elemental Equilibrium {variant:1}Socketed Gems have 40% reduced Elemental Equilibrium effect "}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium "}c["+100% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem All Sockets are White "}c["+100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem "}c["50% Chance to avoid being Stunned during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil}c["200% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=200}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=13}},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["320% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=320}},nil}c["Lightning Spells have 15% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,keywordFlags=64,name="PhysicalDamageConvertToLightning",type="BASE",value=15}},nil}c["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["+9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}},nil}c["15% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["50% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={actor="enemy",threshold=3,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["+18% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18}},nil}c["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you "}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["31% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=31}},nil}c["8% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-20}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned "}c["25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}c["1 Life Regenerated per second per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=1}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "}c["0.4% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["+10 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}},nil}c["25% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=25}},nil}c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "}c["Cold Spells have 10% of Physical Damage Converted to Cold Damage"]={{[1]={flags=2,keywordFlags=32,name="PhysicalDamageConvertToCold",type="BASE",value=10}},nil}c["Adds 22 to 33 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=33}},nil}c["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["160% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=160}},nil}c["13 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=13}},nil}c["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death "}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["15 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=33}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=400}},nil}c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil}c["1% increased Damage per 8 Strength when in Main Hand"]={{[1]={[1]={div=8,stat="Str",type="PerStat"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil}c["Curse Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["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["Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=1}},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}c["625% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=625}},nil}c["Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={skillName="Vulnerability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage "}c["40% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=40}},nil}c["200% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}},nil}c["Adds 375 to 550 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=375},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=550}},nil}c["Socketed Gems Reserve No Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-100}},nil}c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem "}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy "}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies {variant:1}50% increased Rarity of Items Dropped by Slain Shocked enemies "}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true}},nil}c["+5 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds "}c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit "}c["Cannot Evade Enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["+280 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=280}},nil}c["Every 5 seconds, remove Curses and Elemental Ailments from you"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you "}c["+325 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=325}},nil}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill "}c["+300 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=300}},nil}c["Adds 190 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["10% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=35}},nil}c["6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=40}},nil}c["4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["0.5% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.5}},nil}c["14% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=14}},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 Gems are Supported by level 10 Knockback"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportKnockback"}}},nil}c["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["+2 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=2}}},nil}c["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=50}},nil}c["+18% to Quality {variant:8}{crafted}16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=18}}," Quality {variant:8}{crafted}16% increased "}c["60% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["+35% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=35}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken {variant:1,2,3,4,5,6,7,8}You are Shocked during Flask effect "}c["+150 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill"]={nil,nil}c["15% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["5% reduced Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["+95 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=95}},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["100% of Damage Leeched as Life if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=100}},nil}c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil}c["75% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-75}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=1,keywordFlags=262144,name="CritChance",type="BASE",value=50}}," to Maim on Hit +0.1% to "}c["+15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["0.4% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}},nil}c["3% reduced Damage taken per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud "}c["Adds 10 to 20 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=20}},nil}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil}c["200% increased Critical Strike Chance while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire "}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"]={nil,"Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost "}c["If you've used a Skill Recently, you and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Tailwind",type="FLAG",value=true}}}},nil}c["33% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-33}},nil}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="SummonRockGolem"}}},nil}c["15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Causes Bleeding on Melee Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["80% of Block Chance applied to Spells {variant:3}+24% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=80}}," applied to s {variant:3}+24% chance to Block Spell Damage "}c["Adds 23 to 40 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=23},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=40}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}},nil}c["+14% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=14}},nil}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine "}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds "}c["Adds 35 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["Adds 25 to 50 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=50}},nil}c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil}c["+25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," against Projectiles "}c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil}c["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"]={nil,"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 "}c["10% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10}},nil}c["Gain a Spirit Charge every second"]={nil,"Gain a Spirit Charge every second "}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "}c["Herald of Thunder has 74% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=74}},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["1% of Damage against Shocked Enemies Leeched as Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Adds 1 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},nil}c["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["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased "}c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per you own "}c["Elemental Hit deals 13% increased Damage"]={{[1]={[1]={skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["20% less chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=-20}},nil}c["Cannot Leech {variant:3,4}Cannot Leech Life"]={nil,"Cannot Leech {variant:3,4}Cannot Leech Life "}c["11% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=11}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil}c["6% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["10% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil}c["60% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["Minions deal 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=6}}}},nil}c["100% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=100}},nil}c["+85 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=85}},nil}c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected {variant:3,4}Right ring slot: 40% reduced Reflected Physical Damage taken "}c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["Grants level 1 Icestorm Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IcestormUniqueStaff12"}}},nil}c["+1 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=1}}},nil}c["360% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=360}},nil}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-18}},nil}c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=45}},nil}c["Adds 19 to 35 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=60}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=30}},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["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage "}c["8% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=8}},nil}c["40% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["+2 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=2}}},nil}c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," Attackers for 4 seconds on Block "}c["20% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil}c["Minions deal 51 to 78 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=51}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}}}},nil}c["Enemies you Curse have Malediction"]={{[1]={flags=0,keywordFlags=0,name="AffectedByCurseMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy "}c["Spectres have a Base Duration of 20 seconds"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="duration",value=6}}},nil}c["Adds 6 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["Golems have 45% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil}c["Adds 30 to 53 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=53}},nil}c["100% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},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["5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["Adds 35 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"]={nil,"Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block "}c["With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"]={{[1]={[1]={type="Condition",var="HaveGhastlyEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}}}},nil}c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "}c["+4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=40}},nil}c["+30 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}},nil}c["Adds 40 to 60 Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdMin",type="BASE",value=40},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdMax",type="BASE",value=60}},nil}c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=50}}," Chilled Enemies "}c["Temporal Chains has 100% reduced Mana Reservation"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportMeleePhysicalDamage"}}},nil}c["+20 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["70% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=70}},nil}c["+2 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=2}}},nil}c["6% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=6}},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["Grants Summon Harbinger of Directions Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfDirections"}}},nil}c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=25}},nil}c["100% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=100}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["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["1% of Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",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}c["100% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=100}},nil}c["160% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=160}},nil}c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20}},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["30% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=30}},nil}c["Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=10}},nil}c["Adds 240 to 325 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=240},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=325}},nil}c["20% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["+300 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=300}},nil}c["60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "}c["Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="Ignited"},[2]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},"Immune and Chill Damage "}c["100% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["16% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=16}},nil}c["100% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["Grants level 15 Vengeance Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Vengeance"}}},nil}c["Adds 250 to 350 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=250},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=350}},nil}c["15% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["You have Vaal Pact if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil}c["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=30}},nil}c["Adds 185 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=185},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["Your Curses can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="CursesIgnoreHexproof",type="FLAG",value=true}},nil}c["+3% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge if you Knock an Enemy Back with "}c["Adds 10 to 20 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=20}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "}c["Chaos Damage does not bypass Energy Shield"]={nil,"Chaos Damage does not bypass Energy Shield "}c["+13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}},nil}c["+3 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil}c["+3% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["275% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=275}},nil}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2.5}},nil}c["30% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["1% of Damage is taken from Mana before Life per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=1}},nil}c["15% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15}},nil}c["6% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="Unknown"}}},nil}c["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["Gain 1 Rage when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["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["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["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=18}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},nil}c["200% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding "}c["Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=6}},nil}c["3% increased Attack Speed with Daggers"]={{[1]={flags=32769,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}}," Minion per you own "}c["2% increased Minion Duration per Zombie you own 12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," per you own 12% increased Minion Damage per Spectre you own "}c["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," per you own "}c["15% reduced Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil}c["Nearby Enemies have -20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-20}}}},nil}c["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["Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={nil,"Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace "}c["Nearby Enemies have 18% increased Effect of Curses on them"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=18}}}},nil}c["Grants Summon Harbinger of Time Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfTime"}}},nil}c["+15% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["120% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["70% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=70}},nil}c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Adds 13 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMin",type="BASE",value=13},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMax",type="BASE",value=16}},nil}c["+1 to Maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil}c["10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge when you Block "}c["0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 10 seconds on Kill "}c["175% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=175}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["40% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["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["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=4}},nil}c["Celestial Footprints"]={nil,"Celestial Footprints "}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=2,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain a Siphoning Charge when you use a Skill Adds 14 to 16 to Attacks and s "}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill "}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["13% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=13}},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["Skills Chain +1 times"]={{[1]={flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["4% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["25% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=25}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"also grant an equal chance to gain an Endurance Charge on Kill "}c["28% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["Minions have 15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}c["Gain 24% of Physical Damage as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element {variant:32}Projectiles Pierce 6 additional Targets "}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidCurse",type="BASE",value=100},[4]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["+75 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=75},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block "}c["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 15 to 140 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=15},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=140}},nil}c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=50}},nil}c["+1 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=1}}},nil}c["18% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-40}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level "}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item "}c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=40}},nil}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMin",type="BASE",value=14},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMax",type="BASE",value=16}},nil}c["Projectiles Pierce while Phasing {variant:2}Projectiles Pierce 5 additional Targets while you have Phasing"]={nil,"Projectiles Pierce while Phasing {variant:2}Projectiles Pierce 5 additional Targets while you have Phasing "}c["Projectiles gain 18% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=18}},nil}c["Adds 25 to 36 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=36}},nil}c["You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["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["50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["210% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=210}},nil}c["100 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["10% chance of Arrows Piercing {variant:2}Arrows Pierce an additional Target"]={{}," of Arrows Piercing {variant:2}Arrows Pierce an additional Target "}c["You have Crimson Dance if you have dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["If you've Impaled an Enemy Recently, you"]={nil,"If you've Impaled an Enemy Recently, you "}c["+2 to Melee Weapon and Unarmed range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-20}},nil}c["350% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=350}},nil}c["300% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=300}},nil}c["+210 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=210}},nil}c["30% increased Trap Trigger Radius {variant:2}60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger {variant:2}60% increased Trap Trigger Area of Effect "}c["35% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=35}},nil}c["Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=100}},nil}c["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["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=15}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",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}c["Gain 18 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=18}},nil}c["+50% to all Elemental Resistances during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["160% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=160}},nil}c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="PoisonChance",type="BASE",value=60}},nil}c["Regenerate 8 Life over 1 second for each Spell you Cast"]={nil,"Regenerate 8 Life over 1 second for each Spell you Cast "}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:SpiderWebApplyStackMax",type="BASE",value=1}}}},nil}c["+28% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=28}},nil}c["+30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["2% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Lose 7% of maximum Mana per Second"]={{[1]={[1]={stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=0.07}},nil}c["12% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect "}c["Lose 40 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=40}},nil}c["2 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["10% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20}},nil}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground "}c["+15 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=15}},nil}c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["13% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=13}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=55}},nil}c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=150}},nil}c["Attack Skills deal 10% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["+100 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You "}c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=12},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=12}},nil}c["Minions have 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["28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry "}c["2 Additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["0.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.8}},nil}c["Adds 1 to 80 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=80}},nil}c["25% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["0.2% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil}c["+160% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=160}},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["40% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=40}},nil}c["Adds 28 to 45 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=45}},nil}c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=45}}},nil}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground "}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Adds 30 to 50 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=50}},nil}c["100% reduced Conductivity Mana Reservation"]={{[1]={[1]={skillName="Conductivity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",varList={[1]="ElderItem",[2]="ShaperItem"}},flags=0,keywordFlags=0,name="SiphoningChargesMax",type="BASE",value=1}},nil}c["Adds 18 to 28 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMin",type="BASE",value=18},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMax",type="BASE",value=28}},nil}c["6% chance to Dodge Attacks while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["+50 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=50}},nil}c["Adds 55 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["14% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy "}c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit "}c["55% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=55}},nil}c["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=70}},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["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}},nil}c["-25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-25}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies {variant:1}100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},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["40% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Adds 70 to 350 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=350}},nil}c["2% of Life Regenerated Per Second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={nil,"Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage "}c["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["Adds 84 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=84},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Adds 75 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["270% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=270}},nil}c["25% chance to gain a Power Charge on Critical Strike 6% reduced Mana Reserved"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ManaReserved",type="BASE",value=25}}," to gain a Power Charge 6% reduced "}c["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["4% increased Attack Speed with Claws"]={{[1]={flags=16385,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 50 Cold Damage to Melee Attackers "}c["2% of Energy Shield regenerated per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil}c["1.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.2}},nil}c["100% increased Mine Arming Speed"]={{}," Arming Speed "}c["35% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=35}},nil}c["4% additional Physical Damage Reduction while Channelling"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while Channelling "}c["70% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=70}},nil}c["18% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=18}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire "}c["6% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Adds 53 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["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["40% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=40}},nil}c["Poison Cursed Enemies on hit"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 98 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=25}},nil}c["Has 1 Abyssal Socket"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=1}},nil}c["40% increased Cold Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike"]={nil,"Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike "}c["25% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s "}c["7% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements "}c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges "}c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to "}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil}c["400% increased Energy Shield Recharge Rate during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=400}},nil}c["10% chance to Dodge Spell Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["You and nearby allies have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving "}c["Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth "}c["Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15 "}c["Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life {variant:2}Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["45% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=45}},nil}c["Socketed Gems are Supported by level 30 Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportMulticast"}}},nil}c["+50 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=50}},nil}c["Socketed Gems fire an additional Projectile"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}}}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=16}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a {variant:2}15% increased Movement Speed for 9 seconds on Throwing a Trap "}c["Projectiles deal 10% more Damage for each remaining Chain"]={{[1]={[1]={stat="ChainRemaining",type="PerStat"},flags=1024,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Adds 35 to 130 Lightning Damage to Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=35},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=130}},nil}c["You have Phasing while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=6}},nil}c["20% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+6% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=-3}},nil}c["Your Counterattacks deal Double Damage"]={nil,"Your Counterattacks deal Double Damage "}c["20% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers "}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=15}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["8% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=8}},nil}c["Socketed Golem Skills have 5% Life Regenerated per second"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Casts level 7 Abberath's Fury when equipped "}c["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy "}c["65% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=65}},nil}c["Warcries Knock Enemies Back in an Area"]={nil,"Warcries Knock Enemies Back in an Area "}c["+26% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=26}},nil}c["10% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=10}},nil}c["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=30}},nil}c["25% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Chaos Damage does not bypass Energy Shield during effect"]={nil,"Chaos Damage does not bypass Energy Shield during effect "}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}},nil}c["4% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=4}},nil}c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="BASE",value=40}}," taken reflected to Attacker "}c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=9}},nil}c["+175 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=175}},nil}c["+50% Chance to Block Attack Damage for 2 seconds every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil}c["Cannot Be Slowed to Below Base Speed"]={{[1]={flags=0,keywordFlags=0,name="ActionSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["Adds 15 to 30 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=30}},nil}c["50% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality "}c["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back "}c["50% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["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["+5 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5}},nil}c["Recover 1% of Maximum Life on Kill"]={nil,"Recover 1% of Maximum Life on Kill "}c["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding "}c["20% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Gain a Void Charge every 0.5 seconds Elder Item"]={nil,"Gain a Void Charge every 0.5 seconds Elder Item "}c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning "}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=40}},nil}c["Adds 2 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},nil}c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil}c["Adds 30 to 45 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=45}},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=35}},nil}c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="LightningResistAura"}}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireResistAura"}}},nil}c["15% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-15}},nil}c["165% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=165}},nil}c["Cannot be Stunned if you have at least 10 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=10,type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}},nil}c["When hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["0.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["300% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=300}},nil}c["Gain 18% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=18}},nil}c["24% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=24}},nil}c["+25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you "}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding "}c["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use "}c["20% of Life Regenerated per Second while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=20}},nil}c["30% increased Mana Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=30}},nil}c["165% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=165}},nil}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={actor="enemy",threshold=3,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["20% increased Arrow Speed"]={{[1]={flags=8192,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Flask effect "}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=220}},nil}c["Critical Strike Chance is increased by Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResist",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["40% chance to Avoid being Stunned while Channelling Channelling Skills deal 30% increased Damage Channelling Skills have -3 to Total Mana Cost"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=40}}," while Channelling Channelling Skills deal 30% increased Damage Channelling Skills have -3 to Total Mana Cost "}c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=140}},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}},nil}c["5% increased Projectile Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use "}c["10% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Cannot be Stunned while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 10% chance to gain a Power Charge on Kill "}c["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["45% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["+11 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=11}},nil}c["+470 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=470}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["+10 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-40}}," Reflected "}c["+14% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["50% of Block Chance applied to Spells {variant:2}+15% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=50}}," applied to s {variant:2}+15% chance to Block Spell Damage "}c["+1 to maximum Energy Shield per 6 Evasion Rating on Body Armour"]={{[1]={[1]={div=6,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["50% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=50}}," applied to s "}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MerveilWarp"}}},nil}c["and your Totems to each gain an Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge "}c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell "}c["15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=7.5}},nil}c["50% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-50}},nil}c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil}c["5% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=5}},nil}c["Adds 115 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["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["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["Adds 51 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=51},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Gain Soul Eater for 10 seconds when you use a Vaal Skill "}c["+8% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=8}},nil}c["Items and Gems have 50% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=50}},nil}c["35% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=35}},nil}c["20% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=1048576,keywordFlags=0,name="CritChance",type="BASE",value=7}},nil}c["10% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit "}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased "}c["+100 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=100}},nil}c["Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Elemental Weakness on Blocking a Spell "}c["10% increased Movement Speed if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["+18% to Quality"]={{}," Quality "}c["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=99}},nil}c["Adds 3 to 52 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=52}},nil}c["Adds 23 to 35 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["36% increased Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=16,keywordFlags=0,name="Speed",type="INC",value=36}},nil}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedColdDamage"}}},nil}c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=140}},nil}c["Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-10}},nil}c["You have Phasing while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["12% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 second per Endurance Charge when Hit "}c["20% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["Minions have 7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=7}}}},nil}c["22% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=22}},nil}c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil}c["Adds 450 to 575 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=450},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=575}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["+100% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}},nil}c["100% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=100}},nil}c["Adds 1 to 4 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=20}},nil}c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}," Size Golems Deal 45% less "}c["+22% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=22}},nil}c["Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% "}c["Stun Threshold is based on 500% of your Mana instead of Life"]={nil,"Stun Threshold is based on 500% of your Mana instead of Life "}c["+25% chance to be Poisoned +3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=25},[2]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=25},[3]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=25},[4]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=25}}," to be Poisoned +3% to "}c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["4% increased Cast Speed with Chaos Skills"]={{[1]={flags=16,keywordFlags=128,name="Speed",type="INC",value=4}},nil}c["Socketed Gems are Supported by Level 10 Lesser Poison"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLesserPoison"}}},nil}c["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["10% reduced Character Size"]={{}," Character Size "}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+20% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}},nil}c["Socketed Gems are Supported by level 10 Cast When Stunned"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCastOnStunned"}}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=100}},nil}c["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedChaosDamage"}}},nil}c["+425 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=425}},nil}c["28% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=28}},nil}c["35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["10% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}},nil}c["+16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16}},nil}c["-5% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={nil,"You cannot Recharge or Regenerate Energy Shield "}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["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=240}},nil}c["12 Mana Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=12}},nil}c["+120 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=120}},nil}c["50% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-50}},nil}c["3% increased Poison Duration per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=3}},nil}c["10% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-10}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["Totems are Immune to Fire Damage Totems have 50% of your Armour"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour "}c["During Flask Effect, Damage Penetrates 13% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=13},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=13},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=13}},nil}c["25% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons "}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=100}},"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["35% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range"]={nil,"Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range "}c["Adds 18 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item "}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy "}c["15% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["Adds 13 to 47 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=47}},nil}c["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a Flask "}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["Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="FirePenetration",type="BASE",value=10}},nil}c["Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["10% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["+150 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["15% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=15}},nil}c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=20}},"Blind Chilled Enemies on Hit "}c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on 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["75% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=75}},nil}c["30% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}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 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit deals 50% less Lightning Damage "}c["Socketed Gems are Supported by level 10 Remote Mine"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRemoteMine"}}},nil}c["Trigger level 20 Storm Cascade when you Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="StormCascadeTriggered"}}},nil}c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=20}},nil}c["Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"]={nil,"Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times "}c["+2 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},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["260% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=260}},nil}c["10% increased Accuracy Rating with Bows"]={{[1]={flags=8192,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Socketed Gems are Supported by level 15 Increased Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportMinionLife"}}},nil}c["+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["20% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=20}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["Gain 24% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element "}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance "}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=100}},nil}c["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsLightning",type="BASE",value=100}},nil}c["50% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil}c["50% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=100}},nil}c["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill "}c["20% chance to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Power Charge on Kill {variant:23}20% chance to gain a Endurance Charge on Kill "}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=4}},nil}c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["70% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=70}},nil}c["24% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=24}},nil}c["20% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-40}},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 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil}c["Adds 90 to 240 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=90},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=240}},nil}c["60% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil}c["Projectiles Pierce 2 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=2}},nil}c["20% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," applied to s "}c["+2 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["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["Take 100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"]={nil,"100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited "}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy "}c["Cannot be Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100}},nil}c["Damage penetrates 25% Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=25}},nil}c["70% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["15% increased Movement Speed while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}}," to gain Onslaught for 10 seconds on Kill Recover 1% of on Kill "}c["12% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=12}},nil}c["180% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=180}},nil}c["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant "}c["10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill "}c["+2% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire "}c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill "}c["4% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=4}},nil}c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill "}c["+50 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50}},nil}c["+25% chance to be Ignited 125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to be Ignited 125 Regenerated per second "}c["50% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-50}},nil}c["20% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=20}},nil}c["+325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}},nil}c["2% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["23% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=23}},nil}c["+140 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=140}},nil}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8% of Non-Chaos Damage as extra Chaos Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=8}},nil}c["13% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=13}},nil}c["70% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=70}},nil}c["25% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-25}},nil}c["12% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=12}},nil}c["10 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["Adds 10 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["-8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-8}},nil}c["+10 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["100% reduced Arctic Armour Mana Reservation"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["60% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=60}},nil}c["+5 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=5}},nil}c["3% of Life Regenerated per second during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["+2 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=2}}},nil}c["3% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus "}c["+2 Life Gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["You have Fortify"]={{[1]={flags=0,keywordFlags=0,name="Condition:Fortify",type="FLAG",value=true}},nil}c["You can apply an additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},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["30% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["8% increased Accuracy Rating with Staves"]={{[1]={flags=131072,keywordFlags=0,name="Accuracy",type="INC",value=8}},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["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportDebilitate"}}},nil}c["+24 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Recover 2% of Maximum Life on Kill"]={nil,"Recover 2% of Maximum Life on Kill "}c["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["12% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["+18 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["17% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=17}},nil}c["Purity of Lightning Reserves no Mana"]={{[1]={[1]={skillId="LightningResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Haste Reserves no Mana"]={{[1]={[1]={skillId="Haste",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary "}c["Grace Reserves no Mana"]={{[1]={[1]={skillId="Grace",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["50% increased Mine Arming Speed Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={{}," Arming Speed Skills which Place Mines place up to 1 additional Mine "}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect "}c["+45% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=45}},nil}c["Adds 35 to 70 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=70}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed "}c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"Nearby Enemies grant 25% increased Flask Charges "}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled "}c["220% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=220}},nil}c["+1 second to Summon Skeleton Cooldown"]={{}," second toCooldown "}c["30% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-30}},nil}c["12 to 14 Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=14}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "}c["Grants Level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["8% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=8}},nil}c["+35% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=90}},nil}c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.2}},nil}c["+13 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=13}},nil}c["20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["+100 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks "}c["+8% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=8}},nil}c["+20% to Critical Strike Multiplier with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=13}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["You gain 100 Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}}," while you do not have Avatar of Fire "}c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "}c["Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block {variant:2,3}Reflects 240 to 300 Physical Damage to Attackers on Block "}c["10% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["You gain an Endurance Charge on use {variant:1}100% increased Charges used"]={nil,"You gain an Endurance Charge on use {variant:1}100% increased Charges used "}c["Damage Penetrates 6% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=6}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block "}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=12}},nil}c["+24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block "}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["+30 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=30}},nil}c["Gain a Void Charge every 0.5 seconds"]={nil,"Gain a Void Charge every 0.5 seconds "}c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalProliferation"}}},nil}c["+180 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=180}},nil}c["+40 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=40}},nil}c["+100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}},nil}c["+110 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=110}},nil}c["Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds"]={nil,"Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds "}c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=150}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=120}},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["+45% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}}," against Enemies that are affected "}c["Projectiles Fork"]={nil,"Projectiles Fork "}c["Gain 20% of Physical Damage as Extra Chaos Damage against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=262144,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil}c["33% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=33}},nil}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Damage penetrates 25% Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=25}},nil}c["30% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=30}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits "}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-10},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-10},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-10}},nil}c["350% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=350}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit"]={nil,nil}c["10% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["140% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=140}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=110}},nil}c["Vaal Skills deal 40% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="MORE",value=40}},nil}c["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["Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of {variant:2}Shocked Enemies you Kill Explode, dealing 5% of "}c["+40 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets "}c["8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Adds 90 to 345 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=345}},nil}c["+200 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=200}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["50% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}},nil}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=20},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}}," Character Size 6% increased "}c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=18}},nil}c["20% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["If you've Blocked in the past 10 seconds, you"]={nil,"If you've Blocked in the past 10 seconds, you "}c["Fire Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=16,name="PoisonChance",type="BASE",value=20}},nil}c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["Traps and Mines deal 5 to 15 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=15}},nil}c["15% increased Physical Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Summoned Sentinels of Purity have 50% increased Area of Effect"]={nil,"Summoned Sentinels of Purity have 50% increased Area of Effect "}c["2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"]={nil,"2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used "}c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="ColdResistAura"}}},nil}c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges "}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy "}c["50% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["4% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=4}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+8% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}},nil}c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-30}},nil}c["15% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=15}},nil}c["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["-4% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-4},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-4}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["Increases and Reductions to Minion Attack Speed also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionAttackSpeedAppliesToPlayer",type="FLAG",value=true}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill "}c["8% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil}c["+6 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=6}},nil}c["170% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=170}},nil}c["6% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["Gain 10% of Wand Physical Damage as Extra Cold Damage"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=16}},nil}c["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill "}c["Cannot take Reflected Elemental Damage"]={nil,"Cannot take Reflected Elemental Damage "}c["50% reduced Experience gain 0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=-50}}," Experience gain 0.4% of Leeched as Mana "}c["+4% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Cannot Knock Enemies Back"]={{[1]={flags=0,keywordFlags=0,name="CannotKnockback",type="FLAG",value=true}},nil}c["10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered"]={nil,"No Life Recovery Applies during Flask effect {variant:2}100% increased Amount Recovered "}c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={{}," to gain an Endurance Charge when you Stun an Enemy "}c["5% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["25% chance to Poison on Hit during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["27% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=27}},nil}c["+40 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["12% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=1.5}},nil}c["Socketed Gems have Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["15% increased Accuracy Rating with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["20% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Gain a Power Charge after spending a total of 200 Mana"]={nil,"Gain a Power Charge after spending a total of 200 Mana "}c["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["10% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=10}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill "}c["100% increased Ignite Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You "}c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},[2]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="PhysicalDegen",type="BASE",value=150}},nil}c["1% increased Energy Shield per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=1}},nil}c["+24% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=24}},nil}c["70% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=70}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["80% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-80}},nil}c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Adds 13 to 24 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=24}},nil}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["250% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=250}},nil}c["Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredIcicleNova"}}},nil}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges "}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["+21% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=21}},nil}c["170% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=170}},nil}c["Gain 100 Life when an Endurance Charge expires or is consumed"]={nil,"Gain 100 Life when an Endurance Charge expires or is consumed "}c["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit "}c["3% increased Attack Speed with Claws"]={{[1]={flags=16385,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=8}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}c["100% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=100}},nil}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy "}c["Curses on Slain Enemies are transferred to a nearby Enemy"]={nil,"Curses on Slain Enemies are transferred to a nearby Enemy "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill "}c["+150 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=150}},nil}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge "}c["25% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=25}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks "}c["150% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=150}},nil}c["Poison you inflict with Critical Strikes deals 30% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=30}},nil}c["40% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=40}},nil}c["Spell Skills deal no Damage"]={nil,"no Damage "}c["Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Green Sockets have +10% to Quality "}c["100% increased Critical Strike Chance against Enemies that are affected by no Elemental Ailments"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},[2]={type="Condition",var="Effective"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=100}},nil}c["10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=10}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["Adds 1 to 135 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=135}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["You have Resolute Technique while you do not have Elemental Overload"]={nil,"You have Resolute Technique while you do not have Elemental Overload "}c["You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range "}c["+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["Adds 1 to 300 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=300}},nil}c["45% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["Adds 1 to 85 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=85}},nil}c["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit "}c["10% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+20 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["25% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Totems gain +10% to all Elemental Resistances"]={nil,"Totems gain +10% to all Elemental Resistances "}c["Reflects 4 Physical Damage to Melee Attackers"]={{},nil}c["30% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["60 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil}c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "}c["20% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["Adds 36 to 360 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=360}},nil}c["10% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}},nil}c["Adds 9 to 26 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil}c["50% increased Herald of Ice Damage"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["15% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["+125 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=125}},nil}c["22% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=22}},nil}c["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike "}c["Adds 1 to 25 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=25}},nil}c["Adds 38 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["30% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=16384,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Cannot Leech Life"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Maimed"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}}}},nil}c["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=8192,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun "}c["Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy {variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy "}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["20% chance to Avoid Projectiles while Phasing You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="Phasing"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid You have Phasing "}c["10% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["30% less Damage with Hits"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=-30}},nil}c["You have Onslaught while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["Adds 20 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["Totems are Immune to Fire Damage"]={nil,"Totems are Immune to Fire Damage "}c["50% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-50}},nil}c["10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}}," from Blinded Enemies Nearby Enemies are Blinded "}c["7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level"]={nil,"7% Global chance to Blind Enemies on hit {variant:1,2}+1 Mana gained on Kill per Level "}c["Adds 13 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Attack Skills deal 15% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["Adds 12 to 15 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=15}},nil}c["100% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown "}c["6% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks {variant:1}{crafted}+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=65536,name="CritMultiplier",type="BASE",value=50}}," to Maim Enemies {variant:1}{crafted}+45% "}c["+5 Life gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks {variant:2}30 Life Gained on Igniting an Enemy "}c["Adds 70 to 210 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=210}},nil}c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="vaal",value=2}}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life "}c["10% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=10}},nil}c["Adds 40 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["Gain 10% of Wand Physical Damage as Extra Fire Damage"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}},nil}c["Adds 56 to 78 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}},nil}c["10% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["Adds 30 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["16% increased Physical Weapon Damage per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=8388608,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration "}c["Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill "}c["18% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=18}},nil}c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["Grants level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialRhoa"}}},nil}c["Your Offerings have 50% reduced Effect on you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffectOnPlayer",type="INC",value=-50}}}},nil}c["+30% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["14% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=14}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire {variant:2}200% increased Critical Strike Chance while you have Avatar of Fire "}c["12% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["1% of maximum Mana gained on Kill Removes 1% of maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill Removes 1% of maximum Life on Kill "}c["10% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=5}},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["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=15}},nil}c["Minions have 3% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["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["Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"]={nil,"Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage "}c["20% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}},nil}c["Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock {variant:1}Shocked Enemies you Kill Explode, dealing 10% of "}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=280}},nil}c["Grants Perfect Agony during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Perfect Agony"}},nil}c["8% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=120}},nil}c["45% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["13% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-13}},nil}c["Your Maximum Resistances are 78%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=78},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=78},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=78},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=78}},nil}c["+50 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=50}},nil}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportBlasphemy"}}},nil}c["15% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["+5% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=5}},nil}c["+1000 to Armour and Evasion Rating while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=1000}},nil}c["8% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+30% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=30}},nil}c["15% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=15},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=15}},nil}c["50% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["30% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=30}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=460}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 "}c["Adds 23 to 83 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=83}},nil}c["+20 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["5% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=5}},nil}c["15% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil}c["Curse Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["Adds 11 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Debuffs on you expire 20% faster"]={nil,"Debuffs on you expire 20% faster "}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8%"]={nil,"When you Kill an Enemy, for each Curse on that Enemy, gain 8% "}c["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["100% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=100}},nil}c["6% increased Damage with Bows"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["6% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=6}},nil}c["Recover 4% of Maximum Mana on Kill"]={nil,"Recover 4% of Maximum Mana on Kill "}c["You and nearby allies have 6% increased Attack, Cast and Movement Speed if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}}}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=6}},nil}c["Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=40}},nil}c["50% increased Critical Strike Chance with Staves"]={{[1]={flags=131072,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Nearby Allies have 4% 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=4},onlyAllies=true}}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted "}c["Adds 15 to 33 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=33}},nil}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}},nil}c["20% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["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["80% increased Critical Strike Chance during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life "}c["50% increased Convocation Cooldown Recovery Speed"]={{[1]={[1]={skillName="Convocation",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=50}},nil}c["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies "}c["10% increased Damage Taken while Energy Shield is Full Corrupted"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full Corrupted "}c["10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalDamage",type="BASE",value=10}}," to Blind Enemies Maimed by you take 10% increased "}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit deals 50% less Cold Damage "}c["+350 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=350}},nil}c["5% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil}c["Gain 75% increased Area of Effect for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionAreaOfEffect"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=75}},nil}c["15% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["1% increased Fire Damage per 20 Strength"]={{[1]={[1]={div=20,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=1}},nil}c["40% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["You are Shocked during Flask effect"]={nil,"You are Shocked during Flask effect "}c["10% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Action Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value "}c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage "}c["+45% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["20% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=20}},nil}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use "}c["+30 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=30}},nil}c["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=900}}}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}c["15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is Detonated targeting an Enemy "}c["Minions have +5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=5}}}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["12% increased Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},nil}c["10% chance to gain Unholy Might on block for 3 seconds +5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain Unholy Might on block for 3 seconds +5% Chance "}c["10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=30}},nil}c["-5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5}},nil}c["10% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["30% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["+24 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}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["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=3}},nil}c["1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Mana",type="INC",value=1}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["Immune to Elemental Ailments during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect "}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=20}},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 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["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage. "}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=400}},nil}c["5% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Damage Penetrates 6% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=6}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies "}c["30% increased Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Adds 96 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=96},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit {variant:1}Attacks Cause Bleeding when Hitting Cursed Enemies"]={{}," to Curse Enemies with level 10on Hit {variant:1}Attacks Cause Bleeding "}c["60% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["40% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=40}},nil}c["15% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=15}},nil}c["Counts as all One Handed Melee Weapon Types"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsAll1H",value=true}}},nil}c["Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit "}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced "}c["Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}120% increased Critical Strike Chance while you have Avatar of Fire "}c["When you or your Totems Kill a Burning Enemy, 20% chance for you"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you "}c["+18% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=18}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["10% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently "}c["Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["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["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["8 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire "}c["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike "}c["You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen "}c["6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=65}},nil}c["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=30}},nil}c["35% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=35}},nil}c["Minions have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning "}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you "}c["60% reduced Mana Cost of Totem Skills that cast an Aura Corrupted"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," Skills that cast an Aura Corrupted "}c["160% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=160}},nil}c["240% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=240}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing "}c["24% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=24}},nil}c["+6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["30% increased Mana Regeneration if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["Your Cold Damage can Ignite but not Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ColdCannotFreeze",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ColdCannotChill",type="FLAG",value=true}},nil}c["10% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=10}},nil}c["Cannot inflict Ignite"]={{[1]={flags=0,keywordFlags=0,name="CannotIgnite",type="FLAG",value=true}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["12% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["15% chance to gain a Frenzy Charge when you Stun an Enemy"]={{}," to gain aCharge when you Stun an Enemy "}c["4% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=4}},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["Nearby Enemies take 16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=16}}}},nil}c["You can inflict Bleeding on an Enemy up to 8 times"]={nil,"You can inflict Bleeding on an Enemy up to 8 times "}c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=175}},nil}c["20% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+15% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["+10 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=6}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="FireMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="FireMax",type="BASE",value=200}},nil}c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use "}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills "}c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil}c["13% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=13}},nil}c["+2 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["30% increased Zombie Resistances 25% increased Zombie Size"]={{}," Resistances 25% increased Zombie Size "}c["Adds 80 to 180 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=180}},nil}c["3% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Left ring slot: 30% reduced Reflected Elemental Damage taken {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected {variant:3,4}Left ring slot: 40% reduced Reflected Elemental Damage taken "}c["Knocks Back Enemies if you get a Critical Strike with a Bow"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=8192,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["20% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["3% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["+18% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=18}},nil}c["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ColdPenetration",type="BASE",value=8}},nil}c["Minions have 8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=8}}}},nil}c["17 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=17}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill "}c["Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"]={nil,"Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block "}c["Adds 40 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["Creates Consecrated Ground on Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike "}c["10% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=10}},nil}c["40% increased Damage if you've taken no Damage from Hits Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterCast"}}},nil}c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=100}},nil}c["15% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-15}},nil}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws 20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=16384,keywordFlags=0,name="Damage",type="BASE",value=25}}," to Steal Power, Frenzy, and Endurance Charges on Hit 20% increased with Ailments from Attack Skills "}c["Blood Magic"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Blood Magic"}},nil}c["Attack Skills deal 20% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["Arrow Dancing"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arrow Dancing"}},nil}c["25% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["20% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=20}},nil}c["20% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["You and nearby Allies deal 4 to 8 added Physical Damage for each Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}}}}," for each Impale on Enemy "}c["50% reduced Duration of Curses on you {variant:3}10% additional Block chance while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you {variant:3}10% additional Block chance "}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element "}c["+400 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=400}},nil}c["+170 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=170}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=0}},nil}c["8% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=8}},nil}c["Raging Spirits' Hits always Ignite"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}}}},nil}c["100% increased Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you "}c["Cannot take Reflected Physical Damage"]={nil,"Cannot take Reflected Physical Damage "}c["20% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}},nil}c["You can't deal Damage with Skills yourself"]={nil,"You can't deal Damage with Skills yourself "}c["6% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["12% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",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["+4 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=4}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil}c["80% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},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["26% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=26}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=20}}," to double "}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil}c["Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Energy Shield on Kill "}c["15% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["20% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-20}},nil}c["100% increased Physical Damage while you have Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique "}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,keywordFlags=8,name="Speed",type="INC",value=15}},nil}c["20% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=20}},nil}c["4% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["Nearby Allies' Damage with Hits is Lucky"]={nil,"Nearby Allies' Damage with Hits is Lucky "}c["15% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=15}},nil}c["40% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=400}},nil}c["50% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=50}},nil}c["20% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["20% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=20}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies "}c["+36% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=36}},nil}c["15% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["5% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["40% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["0.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed "}c["30% increased Elemental Damage with Wands"]={{[1]={flags=524288,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Shocks from your Hits always increase Damage taken by at least 20% "}c["Attack Skills deal 26% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=26}},nil}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Adds 173 to 213 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=173},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=213}},nil}c["170% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=170}},nil}c["Adds 53 to 76 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=76}},nil}c["You Cannot Be Shocked While Frozen"]={nil,"You Cannot Be Shocked While Frozen "}c["18% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=18}},nil}c["+14 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=14}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=15}},nil}c["+10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=35}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed "}c["10% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=10}},nil}c["30% chance to Avoid being Frozen during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["+17 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["5% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["Left ring slot: Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times "}c["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ClawAttackSpeedAppliesToUnarmed",type="FLAG",value=true}},nil}c["235% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=235}},nil}c["15% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["+15 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["Minions deal 40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["20% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["10% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill "}c["Minions have 3% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["Minions have +4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}}},nil}c["Attack Skills deal 24% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["+190 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=190}},nil}c["Recover 60 Life when you Ignite an Enemy"]={nil,"Recover 60 Life when you Ignite an Enemy "}c["650% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=650}},nil}c["24% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill "}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed "}c["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=20}}," if you have Energy Shield "}c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil}c["+1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["Cannot be Poisoned"]={nil,"Cannot be Poisoned "}c["130% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=130}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for "}c["10% increased Scorching Ray beam length"]={{},"beam length "}c["20% increased Onslaught duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Onslaught "}c["20% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=20}},nil}c["2% increased Attack Speed with Maces"]={{[1]={flags=65537,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges "}c["Projectiles from Attacks have 20% 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"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},[4]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Maim on Hit {variant:2} from Attacks have 20% chance to Poison on Hit "}c["60% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["An additional Curse can be applied to you"]={nil,"An additional Curse can be applied to you "}c["113% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=113}},nil}c["Attack Skills deal 12% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Summoned Sentinels use Crusade Slam"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={minionList={[1]="AxisEliteSoldierHeraldOfLight",[2]="AxisEliteSoldierDominatingBlow"},skillId="SentinelHolySlam"}}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["Can Allocate Passives from the Witch's starting point"]={{},nil}c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Hits with this Weapon always inflict Elemental Ailments"]={nil,"Hits with this Weapon always inflict Elemental Ailments "}c["15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect {variant:1}{crafted}80% increased Critical Strike Chance during Flask Effect "}c["Trigger a Socketed Spell when you Use a Skill"]={nil,"Trigger a Socketed Spell when you Use a Skill "}c["5% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Enemies on Consecrated Ground you create during Effect take 10% increased Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=0,keywordFlags=786944,name="Damage",type="INC",value=50}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes "}c["Projectiles have 100% increased Critical Strike Chance against Targets they Pierce"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=190}},nil}c["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"]={nil,"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 "}c["You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique"]={nil,"You have Resolute Technique while you do not have Elemental Overload {variant:2}100% increased Physical Damage while you have Resolute Technique "}c["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["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["Effects granted for having Rage are Doubled"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:RageEffect",type="BASE",value=1}},nil}c["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,keywordFlags=0,name="PhysicalDamage",type="MORE",value=700}},nil}c["+15 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["15% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=15}},nil}c["Adds 14-23 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=14},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=23}},nil}c["+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["You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={nil,"You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage "}c["Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["25% chance on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground {variant:2}50% chance on Block to create Consecrated Ground "}c["30% increased Damage when you have no Energy Shield {variant:2}100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield {variant:2}100% increased Armour when you have no Energy Shield "}c["14% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=14}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil}c["30% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}c["Minions deal 1% increased Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}}},nil}c["Purity of Fire Reserves no Mana"]={{[1]={[1]={skillId="FireResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["+45% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=45}},nil}c["Adds 29 to 39 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike 30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}," to gain a Flask Charge when you deal a Critical Strike 30% increased "}c["Life Regeneration is applied to Energy Shield instead"]={{[1]={flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["20% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["Minions have 100% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["+35% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["7% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=7},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=7},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["Channelling Skills deal 30% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+80 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=80}},nil}c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil}c["30% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=3}},nil}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["100% increased Accuracy Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,nil}c["12% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=12}},nil}c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["+10 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10}},nil}c["6% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=6}},nil}c["Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Gain 5 Souls for Vaal Skills on Rampage {variant:2}Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["You cannot be Hindered"]={nil,"You cannot be Hindered "}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["50% of Physical Damage Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire {variant:1}+1000 Armour while you do not have Avatar of Fire "}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect "}c["Gain 30% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=524288,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=30}},nil}c["15% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Recover 20% of your Maximum Life on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage "}c["Minion Instability"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Minion Instability"}},nil}c["Gain 30% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=30}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["+10 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["15% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=15}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage "}c["Adds 260 to 285 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=260},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=285}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown "}c["When used in the Synthesiser, the new item will have an additional Herald Modifier"]={nil,"When used in the Synthesiser, the new item will have an additional Herald Modifier "}c["10% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["259% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=259}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow 8% increased Attack Speed "}c["8% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Vaal Skills deal 100% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="INC",value=100}},nil}c["3% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 15 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Channelling Skills have 6% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil}c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit "}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["do not have Adrenaline"]={nil,"do not have Adrenaline "}c["Adds 12 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,keywordFlags=0,name="Damage",type="INC",value=14}},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["20% reduced Mana Cost of Skills during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["50% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=50}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["+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["15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge if you or your s kill an Enemy "}c["12% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["22% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=22}},nil}c["+8% Chance to Block Attack Damage if you were Damaged by a Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["+30 to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["12% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=12}},nil}c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="BloodOffering"}}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=262144,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil}c["50% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=50}},nil}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom "}c["18% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=18}},nil}c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground "}c["Adds 16 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["24% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=24}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=40}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full "}c["+68 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=68}},nil}c["+6% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=6},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=6},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=6}},nil}c["Channelling Skills deal 14% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Golems have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil}c["+90 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=90}},nil}c["28% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=28}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire "}c["Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplierAppliesToDegen",type="BASE",value=30}},nil}c["60% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["+25 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=25}},nil}c["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["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["35% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=35}},nil}c["For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill "}c["Your Lightning Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil}c["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect "}c["50% increased Damage if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["15% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=15}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["60% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=60}},nil}c["32% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=32}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil}c["15% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil}c["220% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=220}},nil}c["10% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=10}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.15}}}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil}c["Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges"]={nil,"Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges "}c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=18},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=56}},nil}c["5% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["6% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use {variant:3}Gain Onslaught for 2 second per Frenzy Charge on use "}c["20% chance to Avoid being Stunned while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}},nil}c["40% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit "}c["13% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["7% Global chance to Blind Enemies on hit"]={nil,"7% Global chance to Blind Enemies on hit "}c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-25}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=6}},nil}c["Flasks gain 3 Charges every 3 seconds"]={nil,"Flasks gain 3 Charges every 3 seconds "}c["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"]={nil,"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 "}c["+12 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=12}},nil}c["Reflects 44 Physical Damage to Attackers on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block "}c["10% increased Skeleton Cast speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["All Attacks with this Weapon are Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="CritChance",value=100}}},nil}c["Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["Adds 2 to 59 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=59}},nil}c["20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["No Block Chance"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type="LIST",value={key="BlockChance",value=0}}},nil}c["8% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=8}},nil}c["You have Phasing during Onslaught Gain Phasing for 4 seconds on Kill"]={nil,"You have Phasing during Onslaught Gain Phasing for 4 seconds on Kill "}c["500% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=500},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=500},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=500}},nil}c["Socketed Gems have 10% increased Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}}}},nil}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},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["60% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["30% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=30}},nil}c["210% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=210}},nil}c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating "}c["60% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=12}},nil}c["+27% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=27}},nil}c["+450 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Accuracy",type="BASE",value=450}},nil}c["135% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=135}},nil}c["+2% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill "}c["1.5% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1.5}},nil}c["Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block "}c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["18% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=18}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased "}c["5% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=5}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy "}c["Gain 13% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=13}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark "}c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=180}},nil}c["15% increased Attack Speed with Claws"]={{[1]={flags=16385,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil}c["Attack Skills deal 18% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["28% increased Physical Damage with Staves"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"]={nil,"Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge "}c["10% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=10}},nil}c["Enemies are Unlucky when Damaging you while you are on Full Life"]={nil,"Enemies are Unlucky when Damaging you while you are on Full Life "}c["Adds 1 to 13 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=13}},nil}c["125% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=125}},nil}c["180% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=180}},nil}c["+65 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=65}},nil}c["Melee Critical Strikes cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["+125 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=125}},nil}c["0.2% of Lightning Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints "}c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}c["5% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["You can Cast an additional Brand 20% increased Damage with Brand Skills"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills "}c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["5% increased Experience gain"]={{}," Experience gain "}c["+21 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=21},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=21}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["3% increased Attack Speed with Maces"]={{[1]={flags=65537,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=30}},nil}c["0.6% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.6}},nil}c["-10 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-10}},nil}c["Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell "}c["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="CastSpeedAppliesToTrapThrowingSpeed",type="FLAG",value=true}},nil}c["25% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-25}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}}," against Enemies that are affected "}c["1% of Energy Shield Regenerated per second for each Enemy you or your Minions have Killed Recently, up to 30%"]={{[1]={[1]={limit=30,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["Bow Attacks have 15% chance to cause Bleeding"]={{[1]={flags=0,keywordFlags=512,name="BleedChance",type="BASE",value=15}},nil}c["18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=6}},nil}c["24% increased Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "}c["Adds 103 to 245 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=103},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=245}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of "}c["8% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=100}},nil}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["12% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}},nil}c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil}c["+25 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life "}c["100% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil}c["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["50% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["10% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["18% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=18}},nil}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used "}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+7% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=7}},nil}c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=200},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["420% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=420}},nil}c["With at least 40 Intelligence in Radius, Magma Orb"]={nil,"With at least 40 Intelligence in Radius, Magma Orb "}c["100% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["+450 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=450}},nil}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge "}c["Minions' Attacks deal 8 to 16 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=8}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}}}},nil}c["6% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you "}c["6% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["13% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=13}},nil}c["Damage Penetrates 10% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Life Leech from Hits with this Weapon applies instantly"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["+15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}c["380% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=380}},nil}c["+36% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=36}},nil}c["1% reduced Elemental Damage taken when Hit per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageTakenWhenHit",type="INC",value=-1}},nil}c["-60% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-60}},nil}c["+30 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}}," gained on Killing a Shocked Enemy "}c["90% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=90}},nil}c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=10}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments Nearby Enemies take 10% increased "}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,noSupports=true,skillId="PoachersMark"}}},nil}c["160% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=160}},nil}c["Gain 5 Rage when you use a Warcry"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["70 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=70}},nil}c["12% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["5% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=5}},nil}c["+25 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["Socketed Gems have 20% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-20}}}},nil}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={nil,"Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect "}c["6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," for 4 seconds after Spending a total of 200 Mana "}c["20% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=20}},nil}c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=10}},nil}c["30% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["3% increased Attack Speed with Bows"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 65 to 155 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=155}},nil}c["While at Maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["No Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["Nearby Enemies have -20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-20}}}},nil}c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["to 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"to 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["Skills used during Flask effect grant 800% of Mana Cost as Life"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life "}c["Elemental Resistances are Zero"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}},nil}c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["15% increased Character Size Spell Skills deal no Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}}," Character Size Skills deal no "}c["50% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},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["-7 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-7}}," from Attacks "}c["Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers {variant:2,3,4}Reflects 50 Cold Damage to Melee Attackers "}c["40% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40}},nil}c["50% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage "}c["30% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="OnHitWhileCursedTriggeredCurseNova"}}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances "}c["20% increased Spell Damage if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge "}c["began Recently"]={nil,"began Recently "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["10% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+80 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=80}},nil}c["12% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems"]={nil,"You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems "}c["Primordial"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:PrimordialItem",type="BASE",value=1}},nil}c["50% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill"]={{}," to gain aCharge and a Power Charge on Kill "}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["140% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=140}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances "}c["35% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=24}},nil}c["Minions have 5% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=15}},nil}c["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use "}c["+6 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=6}},nil}c["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VoidGaze"}}},nil}c["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use "}c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "}c["8% increased Attack Speed with Swords"]={{[1]={flags=262145,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Gain Life and Mana from Leech instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.5}},nil}c["You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use "}c["187% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=187}},nil}c["33% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=33}},nil}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["5% increased Attack Speed with Wands"]={{[1]={flags=524289,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Chaos Skills have 50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=128,name="AreaOfEffect",type="INC",value=50}},nil}c["5% increased Cast Speed with Cold Skills"]={{[1]={flags=16,keywordFlags=32,name="Speed",type="INC",value=5}},nil}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=40}},nil}c["50% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=50}},nil}c["5% increased Experience gain {variant:2,3}3% increased Experience gain"]={{}," Experience gain {variant:2,3}3% increased Experience gain "}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use "}c["Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds "}c["Gain +30 Life when you Hit a Bleeding Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["Gain Igniting Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100},[2]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="PhysicalCanIgnite",type="FLAG",value=true},[3]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true},[4]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[5]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true}},nil}c["+75 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=75}},nil}c["Leech applies instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Socketed Gems have 30% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}}}},nil}c["2% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=2}},nil}c["+1 to Minimum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMin",type="BASE",value=1}},nil}c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["Channelling Skills have 3% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["30% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=30}},nil}c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage "}c["15% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil}c["+3 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=3}}},nil}c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=10}},nil}c["90% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=90}},nil}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Maximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceMaxIsBlockChanceMax",type="FLAG",value=true}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},nil}c["+20 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=20}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={type="Multiplier",var="PoisonAppliedRecently"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=5}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["20% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=20}},nil}c["Cannot be Stunned by Hits you Block"]={nil,"Cannot be Stunned by Hits you Block "}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["+5 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5}},nil}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["+50 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["10% chance to gain a Frenzy Charge when you Block Attack Damage 10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=3,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain aCharge when you Block 10% chance to gain a Power Charge when you Block Damage "}c["+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee on Hit "}c["18% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=18}},nil}c["7% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=7}},nil}c["12% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=12}},nil}c["Cannot be Frozen if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["+25 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}},nil}c["+50 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["+160 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=160}},nil}c["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="TemporalChains"}}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["15% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["+70 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=70}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["15 Mana Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["30% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy "}c["+290 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=290}},nil}c["Golems have +900 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=900}}}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-40}},nil}c["Passives in Radius can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="intuitiveLeap",value=true}}},nil}c["120% of Block Chance applied to Spells when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s "}c["20% chance to Block Spells if you've Blocked an Attack Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["50% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=-50}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"]={{}," Maximum Spirit Charges Gain a Spirit Charge every second "}c["20% chance to Freeze, Shock and Ignite during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["Adds 33 to 47 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=33},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=47}},nil}c["30% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=30}},nil}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["+18 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=18}},nil}c["Take 30 Chaos Damage per Second during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=30}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 15% of your Reserved Mana to "}c["30% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}c["-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["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by "}c["+500 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Accuracy",type="BASE",value=500}},nil}c["20% chance to gain a Frenzy Charge on Kill {variant:22}20% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill {variant:22}20% chance to gain a Power Charge on Kill "}c["Projectiles Pierce 3 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=3}},nil}c["Gain Accuracy Rating equal to your Strength"]={{[1]={[1]={stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil}c["+50% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["+8 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil}c["+2 to Level of Socketed Movement Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="movement",value=2}}},nil}c["25% reduced Bleed duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-25}},nil}c["33% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}c["0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken "}c["Has 2 Abyssal Sockets"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=2}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil}c["30% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill "}c["4% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["+80 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=80}},nil}c["75% chance to cause Enemies to Flee on use {variant:1}100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="BASE",value=75}}," to cause Enemies to Flee on use {variant:1}100% increased "}c["9% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["135% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=135}},nil}c["You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect {variant:9,10,11,12}You are Shocked during Flask effect, causing 50% increased Damage taken "}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=180}},nil}c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage "}c["40% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil}c["20% less Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="MORE",value=-20}},nil}c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=1}},nil}c["5% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "}c["30% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["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["30% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds "}c["Adds 21 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=140}},nil}c["1% reduced Mana Reserved per 250 total attributes"]={{[1]={[1]={div=250,statList={[1]="Str",[2]="Dex",[3]="Int"},type="PerStat"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-1}},nil}c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=150}},nil}c["Gain Unholy Might for 3 seconds on Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage "}c["8% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=135}},nil}c["Socketed Curse Gems have 12% reduced Mana Reservation"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-12}}}},nil}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil}c["Damage Penetrates 10% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=10}},nil}c["Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 30 Chaos Damage to Melee Attackers "}c["Reflects 20 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers "}c["Adds 250 to 300 Cold Damage to Counterattacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}}," to Counterattacks "}c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=8192,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy "}c["20% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=20}},nil}c["23% increased Damage for each Equipped Magic Item"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["+7 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=7}},nil}c["15% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=15}},nil}c["+11 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=11},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=11}},nil}c["+8% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=8}},nil}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SelfExtraCritChance",type="BASE",value=2}}}},nil}c["+0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.1}},nil}c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block "}c["13% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=13}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium {variant:2}Socketed Gems have 25% reduced Elemental Equilibrium effect "}c["+35 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=35}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=250}},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["Cannot be Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-65}},nil}c["+23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=90}},nil}c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["4% additional Physical Damage Reduction while Channelling Channelling Skills have 6% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while Channelling Channelling Skills have 6% increased Attack and Cast Speed "}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges "}c["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["110% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=110}},nil}c["+100 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=100}},nil}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=100}},nil}c["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage "}c["20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}},nil}c["25% increased Maximum total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=25}},nil}c["20% increased Attack and Cast Speed while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageConvertToFire",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=50}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 Recover 60 Life when you Ignite an Enemy "}c["10% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "}c["+6% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["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["Leech Energy Shield instead of Life"]={{[1]={flags=0,keywordFlags=0,name="GhostReaver",type="FLAG",value=true}},nil}c["70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=70},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=70},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=70}},nil}c["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["+350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["+160 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=160}},nil}c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=1}}," per 15 Rampage Kills "}c["90% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=90}},nil}c["14% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=14}},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["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},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["36% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=36}},nil}c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"]={nil,"You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death "}c["Recover 100% of your maximum Life on use"]={nil,"Recover 100% of your maximum Life on use "}c["70% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["35% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=35}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage "}c["Using Warcries is Instant 20% increased Warcry Buff Effect"]={nil,"Using Warcries is Instant 20% increased Warcry Buff Effect "}c["+30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["Adds 19 to 30 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=30}},nil}c["Unaffected by Temporal Chains while affected by Haste {variant:25}Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},"Unaffected bywhile affected by Haste {variant:25} while affected by Hatred "}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["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["+23% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=23}},nil}c["40% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=18874368,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=10},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=20}},nil}c["320% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=320}},nil}c["10% chance to Fortify on Melee hit"]={{}," to Fortify "}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you "}c["+64 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=64}},nil}c["Nearby Enemies have 100% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 100% reduced Life Regeneration rate "}c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["8% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits"]={{}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits "}c["+29% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=29}},nil}c["8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil}c["150% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=150}},nil}c["30% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second "}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," for each Summoned Can Summon up to 1 additional Golem at a time "}c["Adds 10 to 23 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=23}},nil}c["Socketed Gems are Supported by level 11 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=11,skillId="SupportTrap"}}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=20}},nil}c["Every second, inflict Withered on nearby Enemies for 15 seconds"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds "}c["20% more Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow "}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=40}},nil}c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3}}," Character Size 6% increased "}c["40% increased Rarity of Items Dropped by Frozen Enemies 40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}}," Rarity of Items Dropped by Frozen Enemies 40% increased "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 "}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently Damage from your Critical Strikes cannot be Reflected"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed Damage from your Critical Strikes cannot be Reflected "}c["25% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",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["35% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=35}},nil}c["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 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["25% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=25}},nil}c["Adds 29 to 39 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=39}},nil}c["10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=14}},nil}c["24% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["15% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["30% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=30}},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["10% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["20% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20}},nil}c["You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each "}c["Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences "}c["17% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=17}},nil}c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=18}},nil}c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="BASE",value=10}}," to gain a Power Charge on Kill 5% increased "}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds "}c["Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload "}c["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["30% Chance to Dodge Attack Hits. 50% less Armour, 30% less Energy Shield, 30% less Chance to Block Spell and Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-50},[3]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-30},[4]={flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=-30},[5]={flags=0,keywordFlags=0,name="SpellBlockChance",type="MORE",value=-30}},nil}c["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["50% 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["+3% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireBeam"}}},nil}c["32% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=32}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration "}c["With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit"]={nil,"With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit "}c["40% chance to Avoid being Stunned while Channelling"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=40}}," while Channelling "}c["Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"]={nil,"Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length "}c["10% chance to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit "}c["+1 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=1}}},nil}c["2% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-2}},nil}c["45% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=45}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit "}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["10% reduced Damage taken from Blinded Enemies"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}}," from Blinded Enemies "}c["100% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=100}},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["38% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=38}},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["3% more Damage per Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}},nil}c["15% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["70% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Never deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["10% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth "}c["+2 to Level of Socketed Chaos Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="chaos",value=2}}},nil}c["+20 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["26% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=26}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["25% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=25}},nil}c["Adds 36 to 102 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=102}},nil}c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},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}},nil}c["Gain 15 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["Minions deal 35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}},nil}c["12% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+500 to Zombie maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}}}},nil}c["25% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=25}},nil}c["+2000 to Zombie maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=2000}}}},nil}c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["+145 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=145}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=210}},nil}c["25% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["60% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=60}},nil}c["Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Forking "}c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=80}},nil}c["25% chance to avoid Fire Damage when Hit {variant:2}You always Ignite while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit {variant:2}You always Ignite while Burning "}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own "}c["You and Allies affected by your Aura Skills deal 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["90% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=90}},nil}c["15% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=15}},nil}c["Adds 113 to 338 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=113},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=338}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity "}c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["30% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=30}},nil}c["30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["Adds 30 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=75}},nil}c["20% less Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="MORE",value=-20}},nil}c["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["Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier {variant:1,2}Arrows Pierce all Targets after Chaining "}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 15 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy "}c["Adds 36 to 50 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=36},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=50}},nil}c["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"]={nil,"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 "}c["18% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=18}},nil}c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=10}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them "}c["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=8}},nil}c["+38 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=38},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=38}},nil}c["Adds 10 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Adds 5 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill "}c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=60}},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["+2 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving "}c["Elemental Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Equilibrium"}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eldritch Battery"}},nil}c["+35% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=35}},nil}c["10% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste"]={nil,"Unaffected by Enfeeble while affected by Grace {variant:21}8% chance to Dodge Spells while affected by Haste "}c["Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Resolute Technique"}},nil}c["Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=7}},nil}c["16% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=16}},nil}c["+35% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=35}},nil}c["8% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=8}},nil}c["204% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=204}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge Gain a Power or Frenzy Charge each second while Channelling"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage Gain a Power or Frenzy Charge each second while Channelling "}c["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["+600 Strength and Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=600},[2]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=600}},nil}c["50% less Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=-50}},nil}c["Summoned Skeletons' hits can't be Evaded"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}}}},nil}c["100% more Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="MORE",value=100}},nil}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.6}},nil}c["600% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=600}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=263}},nil}c["18% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=18}},nil}c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["Gain 75 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["33% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+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["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=1}},nil}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["40% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-40}},nil}c["25% of Block Chance applied to Spells {variant:5}+7% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s {variant:5}+7% chance to Block Spell Damage "}c["280% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=280}},nil}c["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds "}c["22% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=22}},nil}c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=225}},nil}c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=100}},nil}c["30% increased Elemental Damage with Attack Skills while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=30}},nil}c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=145}},nil}c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Projectiles Pierce while Phasing"]={nil,"Projectiles Pierce while Phasing "}c["Adds Knockback during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance "}c["6% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["Golem Skills have 25% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil}c["Adds 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["10% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["Your Golems are aggressive Primordial"]={nil,"Your Golems are aggressive Primordial "}c["+35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}},nil}c["25% chance to avoid Fire Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit "}c["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-25}},nil}c["10% increased Effect of Fortify on you"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=10}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=60}},nil}c["Scion: +25 to All Attributes"]={{[1]={[1]={type="Condition",var="ConnectedToScionStart"},flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={[1]={type="Condition",var="ConnectedToScionStart"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=25},[3]={[1]={type="Condition",var="ConnectedToScionStart"},flags=0,keywordFlags=0,name="Int",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["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["+3% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["400% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=400}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius "}c["30% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-30}},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=25}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned "}c["Adds 1 to 2 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=2}},nil}c["80% less Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="MORE",value=-80}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=90}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Gain a Divine Charge on Hit"]={nil,"Gain a Divine Charge on Hit "}c["Your hits can't be Evaded"]={{[1]={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud "}c["Adds 1 to 53 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=53}},nil}c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=3}},nil}c["0.5% of Attack Damage Leeched as Mana against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=1,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=0.5}},nil}c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"]={{[1]={[1]={skillNameList={[1]="Blink Arrow",[2]="Mirror Arrow"},type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}},nil}c["160% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=160}},nil}c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery",type="BASE",value=100}},nil}c["10% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=40}},nil}c["+24 Mana gained when you Block {variant:1}20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block {variant:1}20% reduced Movement Speed "}c["Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire {variant:36}Unaffected by Flammability while affected by Purity of Fire "}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CrabAspect"}}},nil}c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-20}},nil}c["+19% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=19}},nil}c["Gain Shocking Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100},[2]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true},[3]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[4]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[5]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["13% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=13}},nil}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice "}c["each Impale on Enemy"]={nil,"each Impale on Enemy "}c["+120 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=120}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you "}c["20% increased Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["+5% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10}},nil}c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["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["2% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=2}},nil}c["Elemental Hit deals 15% increased Damage"]={{[1]={[1]={skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Adds 85 to 160 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=160}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["With at least 40 Dexterity in Radius, Burning"]={nil,"With at least 40 Dexterity in Radius, Burning "}c["20% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage "}c["3 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=3}},nil}c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true}},nil}c["Minions have +9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}}}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={nil,"30 Energy Shield gained for each Enemy Hit while affected by Discipline "}c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["Minions have 5% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["3% increased Character Size 6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=3}}," Character Size 6% increased "}c["50% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}},nil}c["125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=125}},nil}c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=80}},nil}c["13% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=13}},nil}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportGenerosity"}}},nil}c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems "}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["24% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=24}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies "}c["10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Crimson Dance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["8% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["+50 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=50}},nil}c["+70 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["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 {variant:2}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 {variant:2}With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["+500 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["+30 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy "}c["Adds 1 to 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["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius "}c["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill "}c["8% increased Attack Speed with Axes"]={{[1]={flags=4097,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "}c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you "}c["15% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=8196,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes "}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked "}c["+4% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=4},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=4}},nil}c["16% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["10% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["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 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["10% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=10}},nil}c["15% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=15}},nil}c["Found Magic Items drop Identified"]={nil,"Found Magic Items drop Identified "}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["Cannot Leech"]={nil,"Cannot Leech "}c["+1 Energy Shield gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill "}c["25% increased Physical Damage with Axes"]={{[1]={flags=4096,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies "}c["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["8% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["+2 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=2}}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["28% increased Physical Damage with Maces"]={{[1]={flags=65536,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["+8% chance to Evade Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=8}},nil}c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=15}},nil}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge 20% chance to gain a Power Charge on non-Critical Strike "}c["5% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}}},nil}c["3% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["+100 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100}},nil}c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=30}},nil}c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks "}c["15% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["15% chance of Projectiles Piercing {variant:2}Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=15}}," of Piercing {variant:2}Projectiles Pierce an additional Target "}c["2% of Life Regenerated per second with at least 400 Strength"]={{[1]={[1]={stat="Str",threshold=400,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={{}," to gain aCharge on Killing a Frozen Enemy Skills Chain an additional time "}c["8% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=8},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=8}},nil}c["12% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=12}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova "}c["Grants level 10 Gluttony of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VaalAuraElementalDamageHealing"}}},nil}c["15% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=15}},nil}c["Your Critical Strike Chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["10% Chance to Cast level 18 Summon Spectral Wolf on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=18,skillId="SummonRigwaldsPack"}}},nil}c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Minions deal 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["Adds 20 to 30 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMin",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMax",type="BASE",value=30}},nil}c["3% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil}c["1% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["Curse Enemies with level 10 Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="Flammability"}}},nil}c["20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}},nil}c["1% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},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["Has an additional Implicit Mod +30 to all Attributes"]={nil,"Has an additional Implicit Mod +30 to all Attributes "}c["30% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=30}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration "}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy "}c["20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{}," when Placing s to Place an additional Mine 100% increased Mine Arming Speed "}c["Adds 2 to 5 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=5}},nil}c["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["Knocks Back Enemies in an Area on Flask use"]={nil,"Knocks Back Enemies in an Area on Flask use "}c["12% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed "}c["10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={{}," to gain a Power,or Endurance Charge on Hit "}c["Adds 3 to 6 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=6}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=12}},nil}c["8% additional Physical Damage Reduction while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy "}c["2% of Life Regenerated per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["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["6% increased Damage per Enemy Killed by you or your Totems Recently"]={{[1]={[1]={type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByTotemsRecently"}},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["+6% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["8% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},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["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["30% chance to Avoid being Chilled during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["Adds 4 to 8 Fire Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={flags=8192,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["Adds 80 to 375 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=375}},nil}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}}," to Avoid interruption from Stuns while Casting +20 to "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius "}c["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["Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield "}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted "}c["Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Shocks you inflict spread to other Enemies within a Radius of 15 "}c["Adds 135 to 360 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=135},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=360}},nil}c["Adds 25 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage "}c["+2 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=2}}},nil}c["0.3% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil}c["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Damage Penetrates 1% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=1}},nil}c["4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}},nil}c["5% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=5}},nil}c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=18}},nil}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BloodRage"}}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{}," to gain Arcane Surge when you Kill an Enemy "}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=8}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=10}}," to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have 28% increased "}c["36% chance to deal Double Damage while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=36}},nil}c["Adds 110 to 158 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=110},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=158}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold "}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,keywordFlags=128,name="Duration",type="INC",value=40}},nil}c["+25% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["2% increased Attack and Cast Speed for each corpse consumed Recently"]={{[1]={[1]={type="Multiplier",var="CorpseConsumedRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding "}c["+30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30}},nil}c["4% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil}c["20% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["4% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=65536,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=100},[2]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=100},[3]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=100}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["90% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=90}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["12% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=12}},nil}c["+2% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil}c["Shocks you cause are reflected back to you 60% increased Damage while Shocked"]={nil,"Shocks you cause are reflected back to you 60% increased Damage while Shocked "}c["Adds 30 to 41 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=41}},nil}c["+225 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=225}},nil}c["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=90}},nil}c["215% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=215}},nil}c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=30}},nil}c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["75% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=75}},nil}c["50% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=50}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life "}c["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["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="AssassinsMark"}}},nil}c["Minions deal 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil}c["+15 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=15}},nil}c["Adds 75 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["Arrows that Pierce cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently {variant:1}60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently {variant:1}60% increased Damage for each 200 total Mana you have Spent Recently "}c["Herald of Agony has 38% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-38}},nil}c["Movement Skills cost no Mana"]={{[1]={flags=0,keywordFlags=8,name="ManaCost",type="MORE",value=-100}},nil}c["Adds 1 to 75 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=75}},nil}c["20% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}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["12% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["7% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["+24 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=24}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies "}c["+15 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15}},nil}c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil}c["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil}c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges"]={nil,"Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges "}c["15% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["Extra Gore"]={nil,"Extra Gore "}c["15% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=15}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["+5 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=5}},nil}c["Adds 85 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["Adds 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["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["+16 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=16},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=16}},nil}c["180% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=180}},nil}c["Gore Footprints"]={nil,"Gore Footprints "}c["or Unique Enemy"]={nil,"or Unique Enemy "}c["20% of Block Chance applied to Spells {variant:2}+6% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," applied to s {variant:2}+6% chance to Block Spell Damage "}c["+160 Dexterity Requirement"]={{[1]={flags=0,keywordFlags=0,name="DexRequirement",type="BASE",value=160}},nil}c["12% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},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["80% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["40% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["+50 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["30% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=30}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline "}c["7% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=7}},nil}c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},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["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["25% increased Area of Effect while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=40}},nil}c["10% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["10% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=120}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and "}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5}},nil}c["+20 Energy Shield gained on Kill +1 to Level of Socketed Elemental Gems"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill +1 to Level of Socketed Elemental Gems "}c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Arrows Pierce all Targets"]={{[1]={flags=1,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Adds 3 to 30 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=30}},nil}c["20% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["20% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=115}},nil}c["220% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=220}},nil}c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},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["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "}c["10% reduced Physical Damage taken over time"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenOverTime",type="INC",value=-10}},nil}c["18% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportManaLeech"}}},nil}c["45% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=45}},nil}c["135% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=135}},nil}c["You lose Virulence 50% slower"]={nil,"You lose Virulence 50% slower "}c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}}}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element "}c["You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil}c["Has 2 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=2}},nil}c["Ancestral Bond"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ancestral Bond"}},nil}c["10% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["Attacks with this Weapon deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["10% more Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="MORE",value=10}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={{},nil}c["23% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["Minions Regenerate 0.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}}},nil}c["+1% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},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["Minions gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill {variant:2}Minions gain Unholy Might for 10 seconds on Kill "}c["You have Phasing during Onslaught"]={nil,"You have Phasing during Onslaught "}c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil}c["40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=40}},nil}c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil}c["35% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=35}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit "}c["+28% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit {variant:3}You gain Onslaught for 5 second per Endurance Charge when Hit "}c["30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["15% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["80% increased Damage against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=80}},nil}c["6% increased Attack Speed with Maces"]={{[1]={flags=65537,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["88% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=88}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=55}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["25% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}},nil}c["18% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={[1]={div=1,stat="ColdResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}},nil}c["50% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=50}},nil}c["Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}},nil}c["Adds 7 to 25 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=25}},nil}c["Adds 8 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage "}c["9% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=9}},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["8% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=8}},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["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil}c["3% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["+33 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=33}},nil}c["Minions have 30% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=30}}}},nil}c["+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["+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["8% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["16% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil}c["Adds 6 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=8192,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["175% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=175}},nil} \ No newline at end of file diff --git a/Data/3_0/ModFlask.lua b/Data/3_0/ModFlask.lua index 4d55b1b03..5a6bcd4e0 100644 --- a/Data/3_0/ModFlask.lua +++ b/Data/3_0/ModFlask.lua @@ -29,9 +29,9 @@ return { ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrderKey = "362", statOrder = { 362 }, level = 8, group = "FlaskRechargeRate", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0, }, }, ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "20% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "363", statOrder = { 363 }, level = 8, group = "FlaskRechargeRate", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 1000, }, }, ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 3 Charges when you take a Critical Strike", statOrderKey = "364", statOrder = { 364 }, level = 12, group = "FlaskRechargeRate", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Immune to Poison during Flask Effect", "Removes Poison on use", statOrderKey = "2560,2560.1", statOrder = { 2560, 2560.1 }, level = 16, group = "FlaskDispellPoison", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Alchemist's", "25% increased effect", "33% reduced Duration", statOrderKey = "2559,2574", statOrder = { 2559, 2574 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 1000, 0, }, }, + ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Immune to Poison during Flask Effect", "Removes Poison on use", statOrderKey = "2565,2565.1", statOrder = { 2565, 2565.1 }, level = 16, group = "FlaskDispellPoison", weightKey = { "default", }, weightVal = { 1000, }, }, + ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Alchemist's", "25% increased effect", "33% reduced Duration", statOrderKey = "2564,2579", statOrder = { 2564, 2579 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 1000, 0, }, }, ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Chemist's", "(20-25)% reduced Charges used", statOrderKey = "360", statOrder = { 360 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Experimenter's", "(30-40)% increased Duration", statOrderKey = "2574", statOrder = { 2574 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Experimenter's", "(30-40)% increased Duration", statOrderKey = "2579", statOrder = { 2579 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 1000, 1000, 0, }, }, ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Immune to Curses during Flask effect", "Removes Curses on use", statOrderKey = "397,397.1", statOrder = { 397, 397.1 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 500, }, }, } \ No newline at end of file diff --git a/Data/3_0/ModItem.lua b/Data/3_0/ModItem.lua index 1580da09d..ce134384a 100644 --- a/Data/3_0/ModItem.lua +++ b/Data/3_0/ModItem.lua @@ -44,884 +44,884 @@ return { ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrderKey = "424", statOrder = { 424 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrderKey = "424", statOrder = { 424 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrderKey = "424", statOrder = { 424 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-19) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(20-29) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(30-39) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(40-49) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(50-59) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(60-69) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(70-79) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(80-89) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(90-99) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, }, }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(100-109) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(110-119) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(120-129) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(90-96) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrderKey = "703,704", statOrder = { 703, 704 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "703,704", statOrder = { 703, 704 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "709,710", statOrder = { 709, 710 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "709,828", statOrder = { 709, 828 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "(5-7) Mana Regenerated per second", statOrderKey = "709,712", statOrder = { 709, 712 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "709,1292", statOrder = { 709, 1292 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "709,949", statOrder = { 709, 949 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 3, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 11, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 17, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 23, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 29, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 35, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 42, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 59, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 68, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 74, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 80, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrderKey = "694,697", statOrder = { 694, 697 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "0.4% of Energy Shield Regenerated per second", statOrderKey = "694,1631", statOrder = { 694, 1631 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 3, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 11, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 17, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 23, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 29, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 35, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 43, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 51, group = "BaseLocalDefences", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 60, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 69, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 75, group = "BaseLocalDefences", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(83-92) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(70-80) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(36-42) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 5, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 13, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 19, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 28, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 35, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 44, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 52, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 64, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 76, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 1, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 12, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 20, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 28, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 35, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 44, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 52, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 64, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 76, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, - ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 2, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 13, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 21, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 29, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 36, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 45, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 53, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 65, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 77, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, - ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 3, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 13, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 22, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 28, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 35, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 44, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 52, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 64, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 76, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, - ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "518,1024", statOrder = { 518, 1024 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "525,1025", statOrder = { 525, 1025 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "534,1026", statOrder = { 534, 1026 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrderKey = "752", statOrder = { 752 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrderKey = "752", statOrder = { 752 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrderKey = "752", statOrder = { 752 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrderKey = "1053", statOrder = { 1053 }, level = 4, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrderKey = "1053", statOrder = { 1053 }, level = 15, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrderKey = "1053", statOrder = { 1053 }, level = 30, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrderKey = "1053", statOrder = { 1053 }, level = 60, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrderKey = "1053", statOrder = { 1053 }, level = 81, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(3-7) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(8-30) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(31-50) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(51-64) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(65-82) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(83-99) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(100-134) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(135-169) to Accuracy Rating", statOrderKey = "460,1097", statOrder = { 460, 1097 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "460,1004", statOrder = { 460, 1004 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-8) to (13-15) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (7-11) to (16-19) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (9-13) to (20-24) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-17) to (26-30) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (14-19) to (29-35) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (17-24) to (36-41) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (20-27) to (41-49) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-14) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (9-12) to (18-21) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-15) to (23-27) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-19) to (28-33) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (18-24) to (36-42) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (20-27) to (41-48) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (24-33) to (49-57) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (29-38) to (58-68) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 3, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 18, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 30, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 44, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 60, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 72, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 84, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 86, group = "DefencesPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 3, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 17, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 29, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 42, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 60, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 72, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 84, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrderKey = "678", statOrder = { 678 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 3, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 19, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 30, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 44, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 60, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 72, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 84, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 3, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 19, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 30, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 44, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 60, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 72, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 84, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrderKey = "689", statOrder = { 689 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 84, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrderKey = "690", statOrder = { 690 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 3, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 19, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 30, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 44, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 60, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 72, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 84, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrderKey = "692", statOrder = { 692 }, level = 85, group = "DefencesPercent", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "696,958", statOrder = { 696, 958 }, level = 3, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "696,958", statOrder = { 696, 958 }, level = 18, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "696,958", statOrder = { 696, 958 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "696,958", statOrder = { 696, 958 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "696,958", statOrder = { 696, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "696,958", statOrder = { 696, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrderKey = "678,958", statOrder = { 678, 958 }, level = 1, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrderKey = "678,958", statOrder = { 678, 958 }, level = 17, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrderKey = "678,958", statOrder = { 678, 958 }, level = 29, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrderKey = "678,958", statOrder = { 678, 958 }, level = 42, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrderKey = "678,958", statOrder = { 678, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrderKey = "678,958", statOrder = { 678, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrderKey = "678,1306", statOrder = { 678, 1306 }, level = 45, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrderKey = "678,1306", statOrder = { 678, 1306 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrderKey = "687,958", statOrder = { 687, 958 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrderKey = "687,958", statOrder = { 687, 958 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrderKey = "687,958", statOrder = { 687, 958 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrderKey = "687,958", statOrder = { 687, 958 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrderKey = "687,958", statOrder = { 687, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrderKey = "687,958", statOrder = { 687, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "689,958", statOrder = { 689, 958 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "689,958", statOrder = { 689, 958 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "689,958", statOrder = { 689, 958 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "689,958", statOrder = { 689, 958 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "689,958", statOrder = { 689, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "689,958", statOrder = { 689, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrderKey = "690,958", statOrder = { 690, 958 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrderKey = "690,958", statOrder = { 690, 958 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrderKey = "690,958", statOrder = { 690, 958 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrderKey = "690,958", statOrder = { 690, 958 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrderKey = "690,958", statOrder = { 690, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrderKey = "690,958", statOrder = { 690, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "691,958", statOrder = { 691, 958 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "691,958", statOrder = { 691, 958 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "691,958", statOrder = { 691, 958 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "691,958", statOrder = { 691, 958 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "691,958", statOrder = { 691, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "691,958", statOrder = { 691, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "692,958", statOrder = { 692, 958 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "692,958", statOrder = { 692, 958 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "692,958", statOrder = { 692, 958 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "692,958", statOrder = { 692, 958 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "692,958", statOrder = { 692, 958 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "692,958", statOrder = { 692, 958 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-16) to (24-28) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (21-28) to (42-49) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-35) to (53-61) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (32-42) to (63-74) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (38-51) to (77-89) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (45-61) to (91-106) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (62-72) to (107-114) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "519,1952", statOrder = { 519, 1952 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (5-6) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (12-16) to (23-27) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (18-24) to (36-42) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (25-34) to (50-59) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (32-42) to (63-74) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (40-53) to (79-92) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (48-64) to (95-111) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (58-77) to (115-134) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (68-91) to (137-160) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (93-108) to (160-171) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (68-91) to (137-160) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "519,1952", statOrder = { 519, 1952 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (6-8) to (13-15) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (10-13) to (19-23) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (14-18) to (27-32) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-23) to (34-40) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (43-50) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (52-60) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (31-42) to (63-73) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (37-50) to (74-87) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (41-54) to (78-91) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "526,1953", statOrder = { 526, 1953 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-5) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (10-13) to (19-22) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (15-20) to (29-34) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (21-27) to (41-48) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (26-34) to (52-60) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (65-76) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (78-91) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (47-63) to (94-110) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (56-75) to (112-131) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (62-81) to (117-137) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (56-75) to (112-131) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "526,1953", statOrder = { 526, 1953 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 6 Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (27-28) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (41-43) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (58-61) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-6) to (72-76) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (91-96) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (3-9) to (110-116) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (133-140) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-13) to (158-166) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (5-14) to (162-172) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "535,1954", statOrder = { 535, 1954 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (9-10) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (41-43) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (2-5) to (62-66) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-7) to (87-92) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (3-9) to (109-115) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (4-11) to (137-145) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (4-13) to (165-174) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-16) to (200-211) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (6-19) to (237-250) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (7-21) to (243-258) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (6-19) to (237-250) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "535,1954", statOrder = { 535, 1954 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(2-4)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 2, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(5-7)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 18, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(8-10)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 30, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(11-13)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 42, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(14-16)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 56, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-19)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 70, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(20-22)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 77, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 82, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(2-4)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 2, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(5-7)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 19, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(8-10)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 30, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(11-13)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 42, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(14-16)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 56, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(17-19)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 70, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(20-22)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 77, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 82, group = "EvasionRatingPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 3, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 18, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 30, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 42, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 56, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 70, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 77, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 18, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 29, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 42, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 58, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 72, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 84, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 82, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 29, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-138) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 42, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(139-322) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 56, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(323-400) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 70, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-430) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-60) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(61-138) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(139-155) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 26, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(26-29) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(30-35) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(36-60) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(61-70) to Evasion Rating", statOrderKey = "685", statOrder = { 685 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 18, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 30, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 44, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 57, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 71, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 83, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 86, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(420-480) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 58, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 74, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 59, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-440) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-90) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(91-138) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(139-180) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(30-45) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(46-60) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(61-75) to Armour", statOrderKey = "676", statOrder = { 676 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(3-7) to Armour", "+(3-7) to Evasion Rating", statOrderKey = "676,685", statOrder = { 676, 685 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(9-25) to Armour", "+(9-25) to Evasion Rating", statOrderKey = "676,685", statOrder = { 676, 685 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(27-45) to Armour", "+(27-45) to Evasion Rating", statOrderKey = "676,685", statOrder = { 676, 685 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(46-103) to Armour", "+(46-103) to Evasion Rating", statOrderKey = "676,685", statOrder = { 676, 685 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(105-241) to Armour", "+(105-241) to Evasion Rating", statOrderKey = "676,685", statOrder = { 676, 685 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(243-300) to Armour", "+(243-300) to Evasion Rating", statOrderKey = "676,685", statOrder = { 676, 685 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(3-7) to Armour", "+(3-4) to maximum Energy Shield", statOrderKey = "676,695", statOrder = { 676, 695 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(9-25) to Armour", "+(9-12) to maximum Energy Shield", statOrderKey = "676,695", statOrder = { 676, 695 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(27-45) to Armour", "+(18-22) to maximum Energy Shield", statOrderKey = "676,695", statOrder = { 676, 695 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(46-103) to Armour", "+(30-36) to maximum Energy Shield", statOrderKey = "676,695", statOrder = { 676, 695 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(105-241) to Armour", "+(58-67) to maximum Energy Shield", statOrderKey = "676,695", statOrder = { 676, 695 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(243-300) to Armour", "+(69-75) to maximum Energy Shield", statOrderKey = "676,695", statOrder = { 676, 695 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(3-7) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrderKey = "685,695", statOrder = { 685, 695 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(9-25) to Evasion Rating", "+(9-12) to maximum Energy Shield", statOrderKey = "685,695", statOrder = { 685, 695 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(27-45) to Evasion Rating", "+(18-22) to maximum Energy Shield", statOrderKey = "685,695", statOrder = { 685, 695 }, level = 30, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(46-103) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrderKey = "685,695", statOrder = { 685, 695 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(105-241) to Evasion Rating", "+(58-67) to maximum Energy Shield", statOrderKey = "685,695", statOrder = { 685, 695 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(243-300) to Evasion Rating", "+(69-75) to maximum Energy Shield", statOrderKey = "685,695", statOrder = { 685, 695 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "676,685,703", statOrder = { 676, 685, 703 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "676,685,703", statOrder = { 676, 685, 703 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "676,685,703", statOrder = { 676, 685, 703 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "676,685,703", statOrder = { 676, 685, 703 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "676,695,703", statOrder = { 676, 695, 703 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "676,695,703", statOrder = { 676, 695, 703 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "676,695,703", statOrder = { 676, 695, 703 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "676,695,703", statOrder = { 676, 695, 703 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "685,695,703", statOrder = { 685, 695, 703 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "685,695,703", statOrder = { 685, 695, 703 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "685,695,703", statOrder = { 685, 695, 703 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "685,695,703", statOrder = { 685, 695, 703 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(14-20) to Armour", "+(18-23) to maximum Life", statOrderKey = "676,703", statOrder = { 676, 703 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(21-42) to Armour", "+(24-28) to maximum Life", statOrderKey = "676,703", statOrder = { 676, 703 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(43-95) to Armour", "+(29-33) to maximum Life", statOrderKey = "676,703", statOrder = { 676, 703 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(96-120) to Armour", "+(34-38) to maximum Life", statOrderKey = "676,703", statOrder = { 676, 703 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0, }, }, - ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "685,703", statOrder = { 685, 703 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "685,703", statOrder = { 685, 703 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "685,703", statOrder = { 685, 703 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "685,703", statOrder = { 685, 703 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0, }, }, - ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "695,703", statOrder = { 695, 703 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "695,703", statOrder = { 695, 703 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "695,703", statOrder = { 695, 703 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "695,703", statOrder = { 695, 703 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0, }, }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "876,2206", statOrder = { 876, 2206 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Attack Hits", statOrderKey = "876,1232", statOrder = { 876, 1232 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Spell Hits", statOrderKey = "876,1233", statOrder = { 876, 1233 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 5, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 20, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 38, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 56, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 76, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 750, 750, 750, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 750, 750, 750, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 750, 750, 750, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-49)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 300, 300, 300, 400, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(50-59)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 150, 150, 150, 200, 150, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(60-69)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 75, 75, 75, 100, 75, 75, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(70-74)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 40, 40, 40, 50, 40, 40, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(75-79)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 20, 20, 20, 20, 20, 20, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essence's", "(50-56)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essence's", "(57-62)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essence's", "(63-69)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "452,4753", statOrder = { 452, 4753 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-74)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(75-89)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(90-104)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 75, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(105-110)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 40, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(111-115)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 20, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essence's", "(75-84)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essence's", "(85-94)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essence's", "(95-104)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "452,4753", statOrder = { 452, 4753 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(8-10) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 2, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(11-13) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 11, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(14-16) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 23, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(17-19) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 35, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(20-22) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 46, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(23-25) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 58, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(26-28) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 80, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(8-10) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 2, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(11-13) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 11, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(14-16) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 23, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(17-19) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 35, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 600, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(20-22) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 46, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(23-25) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 58, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(26-28) to maximum Mana", statOrderKey = "452,709", statOrder = { 452, 709 }, level = 80, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 75, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-19) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(20-29) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(30-39) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(40-49) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(50-59) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(60-69) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(70-79) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(80-89) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(90-99) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, }, }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(100-109) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(110-119) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(120-129) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(90-96) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrderKey = "705,706", statOrder = { 705, 706 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "705,706", statOrder = { 705, 706 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "staff", "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "711,712", statOrder = { 711, 712 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "711,832", statOrder = { 711, 832 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "(5-7) Mana Regenerated per second", statOrderKey = "711,714", statOrder = { 711, 714 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "711,1296", statOrder = { 711, 1296 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "711,953", statOrder = { 711, 953 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 3, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 11, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 17, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 23, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 29, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 35, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 42, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 59, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 68, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 74, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 80, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrderKey = "696,699", statOrder = { 696, 699 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "0.4% of Energy Shield Regenerated per second", statOrderKey = "696,1635", statOrder = { 696, 1635 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 3, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 11, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 17, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 23, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 29, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 35, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 43, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 51, group = "BaseLocalDefences", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 60, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 69, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 75, group = "BaseLocalDefences", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(83-92) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(70-80) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(36-42) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 5, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 13, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 19, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 28, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 35, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0, }, }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 44, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0, }, }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 52, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 64, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 76, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, + ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 12, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 20, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 28, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 35, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 44, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 52, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 64, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 76, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, + ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 2, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 13, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 21, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 29, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 36, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 45, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 53, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 65, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 77, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, + ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 3, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 13, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 22, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 28, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 35, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 44, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 52, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 64, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 76, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, + ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "520,1028", statOrder = { 520, 1028 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, + ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "527,1029", statOrder = { 527, 1029 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, + ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "536,1030", statOrder = { 536, 1030 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, + ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrderKey = "754", statOrder = { 754 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrderKey = "754", statOrder = { 754 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrderKey = "754", statOrder = { 754 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrderKey = "1057", statOrder = { 1057 }, level = 4, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, + ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrderKey = "1057", statOrder = { 1057 }, level = 15, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, + ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrderKey = "1057", statOrder = { 1057 }, level = 30, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, + ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrderKey = "1057", statOrder = { 1057 }, level = 60, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, + ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrderKey = "1057", statOrder = { 1057 }, level = 81, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(3-7) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(8-30) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(31-50) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(51-64) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(65-82) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(83-99) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(100-134) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(135-169) to Accuracy Rating", statOrderKey = "462,1101", statOrder = { 462, 1101 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "462,1008", statOrder = { 462, 1008 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-8) to (13-15) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (7-11) to (16-19) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (9-13) to (20-24) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-17) to (26-30) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (14-19) to (29-35) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (17-24) to (36-41) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (20-27) to (41-49) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-14) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (9-12) to (18-21) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-15) to (23-27) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-19) to (28-33) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (18-24) to (36-42) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (20-27) to (41-48) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (24-33) to (49-57) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (29-38) to (58-68) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 3, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 18, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 30, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 44, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 60, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 72, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 84, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrderKey = "698", statOrder = { 698 }, level = 86, group = "DefencesPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 3, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 17, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 29, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 42, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 60, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 72, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 84, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrderKey = "680", statOrder = { 680 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 3, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 19, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 30, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 44, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 60, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 72, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 84, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrderKey = "689", statOrder = { 689 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 3, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 19, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 30, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 44, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 60, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 72, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 84, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrderKey = "691", statOrder = { 691 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 84, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrderKey = "692", statOrder = { 692 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 3, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 19, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 30, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 44, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 60, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 72, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 84, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrderKey = "693", statOrder = { 693 }, level = 86, group = "DefencesPercent", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 85, group = "DefencesPercent", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "698,962", statOrder = { 698, 962 }, level = 3, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "698,962", statOrder = { 698, 962 }, level = 18, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "698,962", statOrder = { 698, 962 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "698,962", statOrder = { 698, 962 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "698,962", statOrder = { 698, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "698,962", statOrder = { 698, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrderKey = "680,962", statOrder = { 680, 962 }, level = 1, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrderKey = "680,962", statOrder = { 680, 962 }, level = 17, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrderKey = "680,962", statOrder = { 680, 962 }, level = 29, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrderKey = "680,962", statOrder = { 680, 962 }, level = 42, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrderKey = "680,962", statOrder = { 680, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrderKey = "680,962", statOrder = { 680, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrderKey = "680,1310", statOrder = { 680, 1310 }, level = 45, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrderKey = "680,1310", statOrder = { 680, 1310 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrderKey = "689,962", statOrder = { 689, 962 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrderKey = "689,962", statOrder = { 689, 962 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrderKey = "689,962", statOrder = { 689, 962 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrderKey = "689,962", statOrder = { 689, 962 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrderKey = "689,962", statOrder = { 689, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrderKey = "689,962", statOrder = { 689, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "691,962", statOrder = { 691, 962 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "691,962", statOrder = { 691, 962 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "691,962", statOrder = { 691, 962 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "691,962", statOrder = { 691, 962 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "691,962", statOrder = { 691, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "691,962", statOrder = { 691, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrderKey = "692,962", statOrder = { 692, 962 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrderKey = "692,962", statOrder = { 692, 962 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrderKey = "692,962", statOrder = { 692, 962 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrderKey = "692,962", statOrder = { 692, 962 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrderKey = "692,962", statOrder = { 692, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrderKey = "692,962", statOrder = { 692, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "693,962", statOrder = { 693, 962 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "693,962", statOrder = { 693, 962 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "693,962", statOrder = { 693, 962 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "693,962", statOrder = { 693, 962 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "693,962", statOrder = { 693, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "693,962", statOrder = { 693, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "694,962", statOrder = { 694, 962 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "694,962", statOrder = { 694, 962 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "694,962", statOrder = { 694, 962 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "694,962", statOrder = { 694, 962 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "694,962", statOrder = { 694, 962 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "694,962", statOrder = { 694, 962 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-16) to (24-28) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (21-28) to (42-49) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-35) to (53-61) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (32-42) to (63-74) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (38-51) to (77-89) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (45-61) to (91-106) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (62-72) to (107-114) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "521,1956", statOrder = { 521, 1956 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (5-6) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (12-16) to (23-27) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (18-24) to (36-42) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (25-34) to (50-59) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (32-42) to (63-74) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (40-53) to (79-92) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (48-64) to (95-111) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (58-77) to (115-134) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (68-91) to (137-160) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (93-108) to (160-171) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (68-91) to (137-160) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "521,1956", statOrder = { 521, 1956 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (6-8) to (13-15) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (10-13) to (19-23) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (14-18) to (27-32) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-23) to (34-40) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (43-50) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (52-60) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (31-42) to (63-73) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (37-50) to (74-87) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (41-54) to (78-91) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "528,1957", statOrder = { 528, 1957 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-5) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (10-13) to (19-22) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (15-20) to (29-34) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (21-27) to (41-48) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (26-34) to (52-60) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (65-76) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (78-91) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (47-63) to (94-110) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (56-75) to (112-131) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (62-81) to (117-137) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (56-75) to (112-131) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "528,1957", statOrder = { 528, 1957 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 6 Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (27-28) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (41-43) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (58-61) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-6) to (72-76) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (91-96) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (3-9) to (110-116) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (133-140) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-13) to (158-166) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 1400, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (5-14) to (162-172) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "537,1958", statOrder = { 537, 1958 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (9-10) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (41-43) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (2-5) to (62-66) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-7) to (87-92) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (3-9) to (109-115) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (4-11) to (137-145) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (4-13) to (165-174) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-16) to (200-211) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (6-19) to (237-250) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (7-21) to (243-258) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (6-19) to (237-250) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "537,1958", statOrder = { 537, 1958 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(2-4)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 2, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(5-7)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 18, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(8-10)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 30, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(11-13)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 42, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(14-16)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 56, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-19)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 70, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(20-22)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 77, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 82, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(2-4)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 2, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(5-7)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 19, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(8-10)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 30, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(11-13)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 42, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(14-16)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 56, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(17-19)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 70, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(20-22)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 77, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 82, group = "EvasionRatingPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 3, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 18, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 30, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 42, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 56, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 70, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 77, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 18, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 29, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 42, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 58, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 72, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 84, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 82, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 29, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-138) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 42, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(139-322) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 56, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(323-400) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 70, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-430) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-60) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(61-138) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(139-155) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 26, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(26-29) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(30-35) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(36-60) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(61-70) to Evasion Rating", statOrderKey = "687", statOrder = { 687 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 18, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 30, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 44, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 57, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 71, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 83, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 86, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(420-480) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 58, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 74, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 59, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-440) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-90) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(91-138) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(139-180) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(30-45) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(46-60) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(61-75) to Armour", statOrderKey = "678", statOrder = { 678 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(3-7) to Armour", "+(3-7) to Evasion Rating", statOrderKey = "678,687", statOrder = { 678, 687 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(9-25) to Armour", "+(9-25) to Evasion Rating", statOrderKey = "678,687", statOrder = { 678, 687 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(27-45) to Armour", "+(27-45) to Evasion Rating", statOrderKey = "678,687", statOrder = { 678, 687 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(46-103) to Armour", "+(46-103) to Evasion Rating", statOrderKey = "678,687", statOrder = { 678, 687 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(105-241) to Armour", "+(105-241) to Evasion Rating", statOrderKey = "678,687", statOrder = { 678, 687 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(243-300) to Armour", "+(243-300) to Evasion Rating", statOrderKey = "678,687", statOrder = { 678, 687 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(3-7) to Armour", "+(3-4) to maximum Energy Shield", statOrderKey = "678,697", statOrder = { 678, 697 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(9-25) to Armour", "+(9-12) to maximum Energy Shield", statOrderKey = "678,697", statOrder = { 678, 697 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(27-45) to Armour", "+(18-22) to maximum Energy Shield", statOrderKey = "678,697", statOrder = { 678, 697 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(46-103) to Armour", "+(30-36) to maximum Energy Shield", statOrderKey = "678,697", statOrder = { 678, 697 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(105-241) to Armour", "+(58-67) to maximum Energy Shield", statOrderKey = "678,697", statOrder = { 678, 697 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(243-300) to Armour", "+(69-75) to maximum Energy Shield", statOrderKey = "678,697", statOrder = { 678, 697 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(3-7) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrderKey = "687,697", statOrder = { 687, 697 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(9-25) to Evasion Rating", "+(9-12) to maximum Energy Shield", statOrderKey = "687,697", statOrder = { 687, 697 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(27-45) to Evasion Rating", "+(18-22) to maximum Energy Shield", statOrderKey = "687,697", statOrder = { 687, 697 }, level = 30, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(46-103) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrderKey = "687,697", statOrder = { 687, 697 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(105-241) to Evasion Rating", "+(58-67) to maximum Energy Shield", statOrderKey = "687,697", statOrder = { 687, 697 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(243-300) to Evasion Rating", "+(69-75) to maximum Energy Shield", statOrderKey = "687,697", statOrder = { 687, 697 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, + ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "678,687,705", statOrder = { 678, 687, 705 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "678,687,705", statOrder = { 678, 687, 705 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "678,687,705", statOrder = { 678, 687, 705 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "678,687,705", statOrder = { 678, 687, 705 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "678,697,705", statOrder = { 678, 697, 705 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "678,697,705", statOrder = { 678, 697, 705 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "678,697,705", statOrder = { 678, 697, 705 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "678,697,705", statOrder = { 678, 697, 705 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "687,697,705", statOrder = { 687, 697, 705 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "687,697,705", statOrder = { 687, 697, 705 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "687,697,705", statOrder = { 687, 697, 705 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "687,697,705", statOrder = { 687, 697, 705 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(14-20) to Armour", "+(18-23) to maximum Life", statOrderKey = "678,705", statOrder = { 678, 705 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, + ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(21-42) to Armour", "+(24-28) to maximum Life", statOrderKey = "678,705", statOrder = { 678, 705 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, + ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(43-95) to Armour", "+(29-33) to maximum Life", statOrderKey = "678,705", statOrder = { 678, 705 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, + ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(96-120) to Armour", "+(34-38) to maximum Life", statOrderKey = "678,705", statOrder = { 678, 705 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0, }, }, + ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "687,705", statOrder = { 687, 705 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, + ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "687,705", statOrder = { 687, 705 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, + ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "687,705", statOrder = { 687, 705 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, + ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "687,705", statOrder = { 687, 705 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0, }, }, + ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "697,705", statOrder = { 697, 705 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, + ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "697,705", statOrder = { 697, 705 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, + ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "697,705", statOrder = { 697, 705 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, + ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "697,705", statOrder = { 697, 705 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0, }, }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "880,2211", statOrder = { 880, 2211 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Attack Hits", statOrderKey = "880,1236", statOrder = { 880, 1236 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Spell Hits", statOrderKey = "880,1237", statOrder = { 880, 1237 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 5, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 20, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 38, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 56, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 76, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 750, 750, 750, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 750, 750, 750, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 750, 750, 750, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-49)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 300, 300, 300, 400, 300, 300, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(50-59)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 150, 150, 150, 200, 150, 150, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(60-69)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 75, 75, 75, 100, 75, 75, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(70-74)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 40, 40, 40, 50, 40, 40, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(75-79)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 20, 20, 20, 20, 20, 20, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essence's", "(50-56)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essence's", "(57-62)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essence's", "(63-69)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "454,4765", statOrder = { 454, 4765 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-74)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 300, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(75-89)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 150, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(90-104)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 75, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(105-110)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 40, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(111-115)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 20, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essence's", "(75-84)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essence's", "(85-94)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essence's", "(95-104)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "454,4765", statOrder = { 454, 4765 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(8-10) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 2, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(11-13) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 11, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(14-16) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 23, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(17-19) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 35, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(20-22) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 46, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(23-25) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 58, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(26-28) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 80, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(8-10) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 2, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(11-13) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 11, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(14-16) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 23, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(17-19) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 35, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 600, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(20-22) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 46, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 300, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(23-25) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 58, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 150, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(26-28) to maximum Mana", statOrderKey = "454,711", statOrder = { 454, 711 }, level = 80, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 75, 0, }, tags = { "has_caster_mod", }, }, ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrderKey = "431", statOrder = { 431 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrderKey = "431", statOrder = { 431 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "996", statOrder = { 996 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "992,2412", statOrder = { 992, 2412 }, level = 1, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2430", statOrder = { 2430 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "1000", statOrder = { 1000 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "996,2417", statOrder = { 996, 2417 }, level = 1, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, + ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2435", statOrder = { 2435 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrderKey = "40", statOrder = { 40 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrderKey = "1874,1875", statOrder = { 1874, 1875 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3461", statOrder = { 3461 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrderKey = "1878,1879", statOrder = { 1878, 1879 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3466", statOrder = { 3466 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrderKey = "35", statOrder = { 35 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-49)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(50-59)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(60-69)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(70-74)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 13, 13, 13, 0, }, }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(75-79)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 6, 6, 6, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-74)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(75-89)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(90-104)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 25, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(105-110)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 13, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(111-115)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 6, 0, }, }, - ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "516,555", statOrder = { 516, 555 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "516,555", statOrder = { 516, 555 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-49)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(50-59)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(60-69)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(70-74)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 13, 13, 13, 0, }, }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(75-79)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 6, 6, 6, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-74)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(75-89)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 25, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(105-110)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 13, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(111-115)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 6, 0, }, }, - ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "523,556", statOrder = { 523, 556 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "523,556", statOrder = { 523, 556 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-49)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(50-59)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(60-69)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(70-74)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 13, 13, 13, 0, }, }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(75-79)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 6, 6, 6, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-74)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(75-89)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(90-104)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 25, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(105-110)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 13, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(111-115)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 6, 0, }, }, - ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "532,557", statOrder = { 532, 557 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "532,557", statOrder = { 532, 557 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(31-37)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(38-42)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrderKey = "788", statOrder = { 788 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "788", statOrder = { 788 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "789", statOrder = { 789 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "789", statOrder = { 789 }, level = 70, group = "ManaLeech", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "789", statOrder = { 789 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 58, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-7)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "ring", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(8-10)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(11-13)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(14-16)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(17-19)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(20-22)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 500, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(23-25)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 250, 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-11)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(12-15)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(21-24)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(26-29)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(30-33)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(35-38)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "558,597", statOrder = { 558, 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "558,597", statOrder = { 558, 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 10, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 77, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(10-11)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(12-13)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(14-15)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "541,564", statOrder = { 541, 564 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "541,564", statOrder = { 541, 564 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 76, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "default", }, weightVal = { 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2-4) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 18, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(4-7) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 30, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(7-10) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(10-13) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(13-16) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "(16-20) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 83, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "(20-25) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "(2-4) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "(15-18) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "(16-20) Life Regenerated per second", "0.4% of Life Regenerated per second", statOrderKey = "707,1012", statOrder = { 707, 1012 }, level = 1, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "(0.4-0.5)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "(0.6-0.7)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "(0.8-0.9)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "(1-1.1)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrderKey = "664", statOrder = { 664 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrderKey = "664", statOrder = { 664 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrderKey = "664", statOrder = { 664 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrderKey = "664", statOrder = { 664 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrderKey = "664", statOrder = { 664 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrderKey = "664", statOrder = { 664 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 5, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 72, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 85, group = "CriticalStrikeChanceIncrease", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 42, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 74, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 12, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 24, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 36, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 48, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 60, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 72, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 84, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 14, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 26, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 38, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 50, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 60, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 72, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 84, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 13, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 25, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 37, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 49, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 60, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 72, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 84, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "737,1451", statOrder = { 737, 1451 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "741,1452", statOrder = { 741, 1452 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "744,1453", statOrder = { 744, 1453 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "737,771", statOrder = { 737, 771 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "741,773", statOrder = { 741, 773 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "744,775", statOrder = { 744, 775 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "737,4996", statOrder = { 737, 4996 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "741,3699", statOrder = { 741, 3699 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "744,3642", statOrder = { 744, 3642 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 30, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 44, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 56, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 65, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 81, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrderKey = "747,1016", statOrder = { 747, 1016 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 11, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 21, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 28, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 41, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 59, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 76, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 82, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "ring", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "default", }, weightVal = { 0, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by Attacks", statOrderKey = "822", statOrder = { 822 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by Attacks", statOrderKey = "822", statOrder = { 822 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by Attacks", statOrderKey = "822", statOrder = { 822 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by Attacks", statOrderKey = "822", statOrder = { 822 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(3-7)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 8, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(8-12)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 22, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(13-17)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 36, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(18-22)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 50, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 64, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, - ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 76, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, - ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(3-7)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 12, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(8-12)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 24, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(13-17)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 36, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(18-22)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 50, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 64, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, - ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 76, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, - ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(3-7)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 10, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(8-12)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 23, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(13-17)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 36, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(18-22)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 50, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 64, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, - ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 76, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, - ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "+(3-6) Life gained on Kill", statOrderKey = "832", statOrder = { 832 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "+(7-10) Life gained on Kill", statOrderKey = "832", statOrder = { 832 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "+(11-14) Life gained on Kill", statOrderKey = "832", statOrder = { 832 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "+1 Mana gained on Kill", statOrderKey = "844", statOrder = { 844 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "+(2-3) Mana gained on Kill", statOrderKey = "844", statOrder = { 844 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "+(4-6) Mana gained on Kill", statOrderKey = "844", statOrder = { 844 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 59, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 73, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-49)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(50-59)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(60-69)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(70-74)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 13, 13, 13, 0, }, }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(75-79)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 6, 6, 6, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-74)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(75-89)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(90-104)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 25, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(105-110)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 13, 0, }, }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(111-115)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 6, 0, }, }, + ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "518,557", statOrder = { 518, 557 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "518,557", statOrder = { 518, 557 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-49)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(50-59)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(60-69)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(70-74)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 13, 13, 13, 0, }, }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(75-79)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 6, 6, 6, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-74)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(75-89)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 25, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(105-110)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 13, 0, }, }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(111-115)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 6, 0, }, }, + ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "525,558", statOrder = { 525, 558 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "525,558", statOrder = { 525, 558 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-49)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(50-59)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(60-69)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(70-74)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 13, 13, 13, 0, }, }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(75-79)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 6, 6, 6, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-74)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(75-89)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(90-104)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 25, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(105-110)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 13, 0, }, }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(111-115)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 6, 0, }, }, + ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "534,559", statOrder = { 534, 559 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "534,559", statOrder = { 534, 559 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(31-37)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(38-42)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, + ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrderKey = "790", statOrder = { 790 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "790", statOrder = { 790 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 70, group = "ManaLeech", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "793", statOrder = { 793 }, level = 58, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "793", statOrder = { 793 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "793", statOrder = { 793 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-7)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "ring", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(8-10)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(11-13)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(14-16)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(17-19)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(20-22)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 500, 0, 500, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(23-25)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 250, 0, 250, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-11)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(12-15)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(21-24)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(26-29)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(30-33)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(35-38)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "560,599", statOrder = { 560, 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "560,599", statOrder = { 560, 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 10, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 1000, 0, }, }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 500, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 77, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(10-11)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(12-13)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(14-15)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "543,566", statOrder = { 543, 566 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "543,566", statOrder = { 543, 566 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 76, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "default", }, weightVal = { 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2-4) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 18, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(4-7) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 30, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(7-10) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(10-13) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(13-16) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "(16-20) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 83, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "(20-25) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "(2-4) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "(15-18) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "(16-20) Life Regenerated per second", "0.4% of Life Regenerated per second", statOrderKey = "709,1016", statOrder = { 709, 1016 }, level = 1, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "(0.4-0.5)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "(0.6-0.7)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "(0.8-0.9)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "(1-1.1)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrderKey = "666", statOrder = { 666 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrderKey = "666", statOrder = { 666 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrderKey = "666", statOrder = { 666 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrderKey = "666", statOrder = { 666 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrderKey = "666", statOrder = { 666 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrderKey = "666", statOrder = { 666 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 5, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 72, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 85, group = "CriticalStrikeChanceIncrease", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 42, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 74, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 12, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 24, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 36, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 48, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 60, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 72, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 84, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 14, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 26, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 38, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 50, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 60, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 72, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 84, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 13, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 25, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 37, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 49, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 60, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 72, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 84, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "739,1455", statOrder = { 739, 1455 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "743,1456", statOrder = { 743, 1456 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "746,1457", statOrder = { 746, 1457 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "739,773", statOrder = { 739, 773 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "743,775", statOrder = { 743, 775 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "746,777", statOrder = { 746, 777 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "739,5008", statOrder = { 739, 5008 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "743,3704", statOrder = { 743, 3704 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "746,3647", statOrder = { 746, 3647 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 30, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 44, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 56, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 65, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 81, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, + ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrderKey = "749,1020", statOrder = { 749, 1020 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0, }, }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 11, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 21, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 28, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 41, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 59, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 76, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 82, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "ring", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "default", }, weightVal = { 0, 0, }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by Attacks", statOrderKey = "826", statOrder = { 826 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by Attacks", statOrderKey = "826", statOrder = { 826 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by Attacks", statOrderKey = "826", statOrder = { 826 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by Attacks", statOrderKey = "826", statOrder = { 826 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, + ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(3-7)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 8, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(8-12)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 22, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(13-17)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 36, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(18-22)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 50, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 64, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, + ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 76, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, + ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(3-7)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 12, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(8-12)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 24, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(13-17)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 36, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(18-22)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 50, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 64, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, + ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 76, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, + ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(3-7)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 10, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(8-12)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 23, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(13-17)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 36, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(18-22)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 50, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, + ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 64, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, + ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 76, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, + ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "+(3-6) Life gained on Kill", statOrderKey = "836", statOrder = { 836 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "+(7-10) Life gained on Kill", statOrderKey = "836", statOrder = { 836 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "+(11-14) Life gained on Kill", statOrderKey = "836", statOrder = { 836 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "+1 Mana gained on Kill", statOrderKey = "848", statOrder = { 848 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "+(2-3) Mana gained on Kill", statOrderKey = "848", statOrder = { 848 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "+(4-6) Mana gained on Kill", statOrderKey = "848", statOrder = { 848 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 59, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 73, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrderKey = "20", statOrder = { 20 }, level = 50, group = "IncreaseSocketedGemLevel", weightKey = { "weapon", "default", }, weightVal = { 250, 0, }, }, ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrderKey = "20", statOrder = { 20 }, level = 2, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0, }, }, ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrderKey = "20", statOrder = { 20 }, level = 50, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0, }, }, @@ -942,198 +942,198 @@ return { ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrderKey = "35", statOrder = { 35 }, level = 14, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrderKey = "35", statOrder = { 35 }, level = 65, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrderKey = "35", statOrder = { 35 }, level = 86, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 80, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "bow", "wand", "weapon", "default", }, weightVal = { 0, 1000, 1000, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrderKey = "1097", statOrder = { 1097 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "", "Minions have (7-10)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "", "Minions have (11-14)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "", "Minions have (15-18)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "", "Minions have (19-22)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "", "Minions have (23-26)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "", "Minions have (27-30)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence2"] = { type = "Suffix", affix = "", "Minions have (7-10)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence3_"] = { type = "Suffix", affix = "", "Minions have (11-14)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence4"] = { type = "Suffix", affix = "", "Minions have (15-18)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence5"] = { type = "Suffix", affix = "", "Minions have (19-22)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence6"] = { type = "Suffix", affix = "", "Minions have (23-26)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence7"] = { type = "Suffix", affix = "", "Minions have (27-30)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence2"] = { type = "Suffix", affix = "", "Minions deal (7-10)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence3"] = { type = "Suffix", affix = "", "Minions deal (11-14)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence4_"] = { type = "Suffix", affix = "", "Minions deal (15-18)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence5"] = { type = "Suffix", affix = "", "Minions deal (19-22)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence6"] = { type = "Suffix", affix = "", "Minions deal (23-26)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence7"] = { type = "Suffix", affix = "", "Minions deal (27-30)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "", "Minions deal (10-15)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "", "Minions deal (16-21)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "", "Minions deal (22-27)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "", "Minions deal (28-33)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "", "Minions deal (34-39)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "", "Minions deal (40-45)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(10-20)% increased Flask Charges gained", statOrderKey = "1250", statOrder = { 1250 }, level = 2, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Overflowing", "(21-30)% increased Flask Charges gained", statOrderKey = "1250", statOrder = { 1250 }, level = 85, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrderKey = "1251", statOrder = { 1251 }, level = 3, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Savouring", "(10-20)% increased Flask Effect Duration", statOrderKey = "1252", statOrder = { 1252 }, level = 7, group = "BeltFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Recovering", "(10-20)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 1, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 10, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 26, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 42, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrderKey = "1253", statOrder = { 1253 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Inspiring", "(10-20)% increased Flask Mana Recovery rate", statOrderKey = "1254", statOrder = { 1254 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrderKey = "1254", statOrder = { 1254 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrderKey = "1254", statOrder = { 1254 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrderKey = "1254", statOrder = { 1254 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "", "(11-14)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "", "(15-18)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "", "(19-22)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "", "(31-44)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrderKey = "1266", statOrder = { 1266 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "", "(15-18)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "", "(19-22)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "", "(31-44)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-6)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(7-8)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 85, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1451", statOrder = { 1451 }, level = 1, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "", "(19-22)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "", "(31-34)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% Chance to Block Projectile Attack Damage", statOrderKey = "1467", statOrder = { 1467 }, level = 8, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% Chance to Block Projectile Attack Damage", statOrderKey = "1467", statOrder = { 1467 }, level = 19, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% Chance to Block Projectile Attack Damage", statOrderKey = "1467", statOrder = { 1467 }, level = 30, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% Chance to Block Projectile Attack Damage", statOrderKey = "1467", statOrder = { 1467 }, level = 55, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% Chance to Block Projectile Attack Damage", statOrderKey = "1467", statOrder = { 1467 }, level = 70, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% Chance to Block Projectile Attack Damage", statOrderKey = "1467", statOrder = { 1467 }, level = 81, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 80, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "bow", "wand", "weapon", "default", }, weightVal = { 0, 1000, 1000, 0, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrderKey = "1101", statOrder = { 1101 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "", "Minions have (7-10)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "", "Minions have (11-14)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "", "Minions have (15-18)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "", "Minions have (19-22)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "", "Minions have (23-26)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "", "Minions have (27-30)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionLifeEssence2"] = { type = "Suffix", affix = "", "Minions have (7-10)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionLifeEssence3_"] = { type = "Suffix", affix = "", "Minions have (11-14)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionLifeEssence4"] = { type = "Suffix", affix = "", "Minions have (15-18)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionLifeEssence5"] = { type = "Suffix", affix = "", "Minions have (19-22)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionLifeEssence6"] = { type = "Suffix", affix = "", "Minions have (23-26)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionLifeEssence7"] = { type = "Suffix", affix = "", "Minions have (27-30)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssence2"] = { type = "Suffix", affix = "", "Minions deal (7-10)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssence3"] = { type = "Suffix", affix = "", "Minions deal (11-14)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssence4_"] = { type = "Suffix", affix = "", "Minions deal (15-18)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssence5"] = { type = "Suffix", affix = "", "Minions deal (19-22)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssence6"] = { type = "Suffix", affix = "", "Minions deal (23-26)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssence7"] = { type = "Suffix", affix = "", "Minions deal (27-30)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "", "Minions deal (10-15)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "", "Minions deal (16-21)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "", "Minions deal (22-27)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "", "Minions deal (28-33)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "", "Minions deal (34-39)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "", "Minions deal (40-45)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(10-20)% increased Flask Charges gained", statOrderKey = "1254", statOrder = { 1254 }, level = 2, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Overflowing", "(21-30)% increased Flask Charges gained", statOrderKey = "1254", statOrder = { 1254 }, level = 85, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrderKey = "1255", statOrder = { 1255 }, level = 3, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Savouring", "(10-20)% increased Flask Effect Duration", statOrderKey = "1256", statOrder = { 1256 }, level = 7, group = "BeltFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Recovering", "(10-20)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 1, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 10, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 26, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 42, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrderKey = "1257", statOrder = { 1257 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Inspiring", "(10-20)% increased Flask Mana Recovery rate", statOrderKey = "1258", statOrder = { 1258 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrderKey = "1258", statOrder = { 1258 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrderKey = "1258", statOrder = { 1258 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrderKey = "1258", statOrder = { 1258 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "", "(11-14)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "", "(15-18)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "", "(19-22)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "", "(31-44)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrderKey = "1270", statOrder = { 1270 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "", "(15-18)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "", "(19-22)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "", "(31-44)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-6)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(7-8)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 85, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 1, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "", "(19-22)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "", "(31-34)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% Chance to Block Projectile Attack Damage", statOrderKey = "1471", statOrder = { 1471 }, level = 8, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% Chance to Block Projectile Attack Damage", statOrderKey = "1471", statOrder = { 1471 }, level = 19, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% Chance to Block Projectile Attack Damage", statOrderKey = "1471", statOrder = { 1471 }, level = 30, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% Chance to Block Projectile Attack Damage", statOrderKey = "1471", statOrder = { 1471 }, level = 55, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% Chance to Block Projectile Attack Damage", statOrderKey = "1471", statOrder = { 1471 }, level = 70, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% Chance to Block Projectile Attack Damage", statOrderKey = "1471", statOrder = { 1471 }, level = 81, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrderKey = "428", statOrder = { 428 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "", "2% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 42, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "", "3% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 58, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "", "4% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 74, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "", "5% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrderKey = "978", statOrder = { 978 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0, }, }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrderKey = "978", statOrder = { 978 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0, }, }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "584,1498", statOrder = { 584, 1498 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "584,1498", statOrder = { 584, 1498 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(5-10)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "585,1498", statOrder = { 585, 1498 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "1097,1498", statOrder = { 1097, 1498 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "1097,1498", statOrder = { 1097, 1498 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(5-10)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "585,1498", statOrder = { 585, 1498 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "", "+1 to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 58, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "", "+2 to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 74, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "", "+3 to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "+(5-15) Life gained when you Block", statOrderKey = "840", statOrder = { 840 }, level = 11, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "+(16-25) Life gained when you Block", statOrderKey = "840", statOrder = { 840 }, level = 22, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "+(26-40) Life gained when you Block", statOrderKey = "840", statOrder = { 840 }, level = 36, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "+(41-60) Life gained when you Block", statOrderKey = "840", statOrder = { 840 }, level = 48, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "+(61-85) Life gained when you Block", statOrderKey = "840", statOrder = { 840 }, level = 60, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "+(86-100) Life gained when you Block", statOrderKey = "840", statOrder = { 840 }, level = 75, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "+(4-12) Mana gained when you Block", statOrderKey = "841", statOrder = { 841 }, level = 15, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "+(13-21) Mana gained when you Block", statOrderKey = "841", statOrder = { 841 }, level = 32, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "+(22-30) Mana gained when you Block", statOrderKey = "841", statOrder = { 841 }, level = 58, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "+(31-39) Mana gained when you Block", statOrderKey = "841", statOrder = { 841 }, level = 75, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrderKey = "1816", statOrder = { 1816 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrderKey = "1817", statOrder = { 1817 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrderKey = "1818", statOrder = { 1818 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrderKey = "1819", statOrder = { 1819 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrderKey = "1820", statOrder = { 1820 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrderKey = "1821", statOrder = { 1821 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrderKey = "1822", statOrder = { 1822 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "2% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 35, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "3% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 62, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "4% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 78, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 42, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 58, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "", "(7-8)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 74, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 82, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "2% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 35, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "3% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 62, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "4% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 78, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "", "(3-4)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "", "(7-8)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrderKey = "2261", statOrder = { 2261 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "", "2% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 42, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "", "3% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 58, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "", "4% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 74, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "", "5% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrderKey = "982", statOrder = { 982 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0, }, }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrderKey = "982", statOrder = { 982 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0, }, }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "586,1502", statOrder = { 586, 1502 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "586,1502", statOrder = { 586, 1502 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(5-10)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "587,1502", statOrder = { 587, 1502 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "1101,1502", statOrder = { 1101, 1502 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "1101,1502", statOrder = { 1101, 1502 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(5-10)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "587,1502", statOrder = { 587, 1502 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "", "+1 to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 58, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "", "+2 to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 74, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "", "+3 to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "+(5-15) Life gained when you Block", statOrderKey = "844", statOrder = { 844 }, level = 11, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "+(16-25) Life gained when you Block", statOrderKey = "844", statOrder = { 844 }, level = 22, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "+(26-40) Life gained when you Block", statOrderKey = "844", statOrder = { 844 }, level = 36, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "+(41-60) Life gained when you Block", statOrderKey = "844", statOrder = { 844 }, level = 48, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "+(61-85) Life gained when you Block", statOrderKey = "844", statOrder = { 844 }, level = 60, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "+(86-100) Life gained when you Block", statOrderKey = "844", statOrder = { 844 }, level = 75, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "+(4-12) Mana gained when you Block", statOrderKey = "845", statOrder = { 845 }, level = 15, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "+(13-21) Mana gained when you Block", statOrderKey = "845", statOrder = { 845 }, level = 32, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "+(22-30) Mana gained when you Block", statOrderKey = "845", statOrder = { 845 }, level = 58, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "+(31-39) Mana gained when you Block", statOrderKey = "845", statOrder = { 845 }, level = 75, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrderKey = "1820", statOrder = { 1820 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrderKey = "1821", statOrder = { 1821 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrderKey = "1822", statOrder = { 1822 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrderKey = "1823", statOrder = { 1823 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrderKey = "1824", statOrder = { 1824 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrderKey = "1825", statOrder = { 1825 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrderKey = "1826", statOrder = { 1826 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "2% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 35, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "3% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 62, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "4% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 78, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 42, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 58, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "", "(7-8)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 74, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 82, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "2% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 35, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "3% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 62, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "4% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 78, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "", "(3-4)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "", "(7-8)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrderKey = "2266", statOrder = { 2266 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0, }, }, ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(7-9)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 30, group = "SpellBlockPercentage", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(10-12)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 60, group = "SpellBlockPercentage", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0, }, }, - ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "884", statOrder = { 884 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, - ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "886", statOrder = { 886 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0, }, }, - ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, + ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0, }, }, + ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "888", statOrder = { 888 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, + ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "890", statOrder = { 890 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0, }, }, + ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrderKey = "42", statOrder = { 42 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attacks", statOrderKey = "1293", statOrder = { 1293 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, - ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attacks", statOrderKey = "1293", statOrder = { 1293 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, - ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attacks", statOrderKey = "1293", statOrder = { 1293 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, - ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrderKey = "771", statOrder = { 771 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrderKey = "1114", statOrder = { 1114 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0, }, }, + ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attacks", statOrderKey = "1297", statOrder = { 1297 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, + ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attacks", statOrderKey = "1297", statOrder = { 1297 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, + ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attacks", statOrderKey = "1297", statOrder = { 1297 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, + ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, + ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, + ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrderKey = "777", statOrder = { 777 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, + ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", }, }, + ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrderKey = "1118", statOrder = { 1118 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0, }, }, ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrderKey = "400", statOrder = { 400 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 1, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 20, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 40, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 1, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, - ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 20, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, - ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 40, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, + ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 1, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, + ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 20, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, + ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 40, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, + ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 1, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, + ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 20, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, + ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 40, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrderKey = "1111", statOrder = { 1111 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, }, - ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1458", statOrder = { 1458 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "748", statOrder = { 748 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, - ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1237", statOrder = { 1237 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0, }, }, - ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "(2-4)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, }, - ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrderKey = "668", statOrder = { 668 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, + ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, + ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrderKey = "1115", statOrder = { 1115 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, }, + ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1462", statOrder = { 1462 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, + ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "750", statOrder = { 750 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, + ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1241", statOrder = { 1241 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0, }, }, + ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0, }, }, + ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, + ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0, }, }, + ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "(2-4)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, }, + ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrderKey = "670", statOrder = { 670 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrderKey = "20", statOrder = { 20 }, level = 1, group = "IncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0, }, }, - ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrderKey = "1447", statOrder = { 1447 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrderKey = "1675", statOrder = { 1675 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrderKey = "1024", statOrder = { 1024 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrderKey = "1025", statOrder = { 1025 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1026", statOrder = { 1026 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, }, - ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "873", statOrder = { 873 }, level = 1, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver", "bow", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrderKey = "953", statOrder = { 953 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrderKey = "1312", statOrder = { 1312 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "882", statOrder = { 882 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, + ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0, }, }, + ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrderKey = "1451", statOrder = { 1451 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, + ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrderKey = "1679", statOrder = { 1679 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, + ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrderKey = "1028", statOrder = { 1028 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_physical_conversion_mod", }, }, + ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrderKey = "1029", statOrder = { 1029 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_physical_conversion_mod", }, }, + ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1030", statOrder = { 1030 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, }, + ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver", "bow", "default", }, weightVal = { 0, 0, 0, 0, }, }, + ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, + ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrderKey = "957", statOrder = { 957 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, + ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrderKey = "1316", statOrder = { 1316 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, + ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "886", statOrder = { 886 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "415", statOrder = { 415 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrderKey = "871", statOrder = { 871 }, level = 1, group = "ArrowPierce", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 0, }, }, - ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0, }, }, - ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1512", statOrder = { 1512 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, - ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1513", statOrder = { 1513 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, - ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1515", statOrder = { 1515 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, + ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrderKey = "875", statOrder = { 875 }, level = 1, group = "ArrowPierce", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 0, }, }, + ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0, }, }, + ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1516", statOrder = { 1516 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, + ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1517", statOrder = { 1517 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, + ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1519", statOrder = { 1519 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrderKey = "143", statOrder = { 143 }, level = 35, group = "SupportedByTrigger", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0, }, }, ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrderKey = "142", statOrder = { 142 }, level = 35, group = "SupportedByTrigger", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0, }, }, ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "141", statOrder = { 141 }, level = 20, group = "SupportedByMelee", weightKey = { "no_attack_mods", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, }, }, ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrderKey = "132", statOrder = { 132 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0, }, }, ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrderKey = "145", statOrder = { 145 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0, }, }, - ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, + ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Mana Multiplier", statOrderKey = "185", statOrder = { 185 }, level = 1, group = "SocketedGemsHaveReducedManaCost", weightKey = { "body_armour", "default", }, weightVal = { 0, 0, }, }, ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrderKey = "136", statOrder = { 136 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0, }, }, ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrderKey = "146", statOrder = { 146 }, level = 48, group = "SupportedByAccuracy", weightKey = { "no_attack_mods", "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0, 0, }, }, @@ -1167,188 +1167,188 @@ return { ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrderKey = "239", statOrder = { 239 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0, }, }, ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrderKey = "241", statOrder = { 241 }, level = 40, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, }, ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrderKey = "242", statOrder = { 242 }, level = 40, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, }, - ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 40, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, + ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "832", statOrder = { 832 }, level = 40, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrderKey = "245", statOrder = { 245 }, level = 35, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "1821", statOrder = { 1821 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, - ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "1822", statOrder = { 1822 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, - ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 0, 0, }, }, - ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "1828", statOrder = { 1828 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, - ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrderKey = "3226", statOrder = { 3226 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrderKey = "3226", statOrder = { 3226 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrderKey = "3226", statOrder = { 3226 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrderKey = "529", statOrder = { 529 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrderKey = "529", statOrder = { 529 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrderKey = "529", statOrder = { 529 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, - ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-25) to (39-44) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrderKey = "3938", statOrder = { 3938 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrderKey = "3938", statOrder = { 3938 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrderKey = "3938", statOrder = { 3938 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrderKey = "528", statOrder = { 528 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrderKey = "528", statOrder = { 528 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrderKey = "528", statOrder = { 528 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, - ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (42-49) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrderKey = "560", statOrder = { 560 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrderKey = "560", statOrder = { 560 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrderKey = "560", statOrder = { 560 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, - ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "873", statOrder = { 873 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0, }, }, - ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Skills Chain +1 times", statOrderKey = "869", statOrder = { 869 }, level = 80, group = "Chain", weightKey = { "quiver", "default", }, weightVal = { 200, 0, }, }, - ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrderKey = "3658", statOrder = { 3658 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1237", statOrder = { 1237 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0, }, }, - ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrderKey = "3225", statOrder = { 3225 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrderKey = "872", statOrder = { 872 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0, }, }, + ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "1825", statOrder = { 1825 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, + ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "1826", statOrder = { 1826 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, + ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 0, 0, }, }, + ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "1832", statOrder = { 1832 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, + ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrderKey = "3231", statOrder = { 3231 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrderKey = "3231", statOrder = { 3231 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrderKey = "3231", statOrder = { 3231 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, + ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrderKey = "531", statOrder = { 531 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrderKey = "531", statOrder = { 531 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, + ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-25) to (39-44) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, + ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrderKey = "3943", statOrder = { 3943 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrderKey = "3943", statOrder = { 3943 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrderKey = "3943", statOrder = { 3943 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, + ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrderKey = "530", statOrder = { 530 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrderKey = "530", statOrder = { 530 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrderKey = "530", statOrder = { 530 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, + ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (42-49) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, + ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrderKey = "562", statOrder = { 562 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrderKey = "562", statOrder = { 562 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrderKey = "562", statOrder = { 562 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, + ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "877", statOrder = { 877 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0, }, }, + ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Skills Chain +1 times", statOrderKey = "873", statOrder = { 873 }, level = 80, group = "Chain", weightKey = { "quiver", "default", }, weightVal = { 200, 0, }, }, + ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrderKey = "3663", statOrder = { 3663 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1241", statOrder = { 1241 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0, }, }, + ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrderKey = "3230", statOrder = { 3230 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrderKey = "876", statOrder = { 876 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0, }, }, ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrderKey = "251", statOrder = { 251 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrderKey = "1947", statOrder = { 1947 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, + ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrderKey = "1951", statOrder = { 1951 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrderKey = "400", statOrder = { 400 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "1828", statOrder = { 1828 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrderKey = "3144", statOrder = { 3144 }, level = 85, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 100, 0, }, }, - ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrderKey = "912", statOrder = { 912 }, level = 60, group = "AvoidIgniteCorrupted", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrderKey = "2334", statOrder = { 2334 }, level = 60, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrderKey = "1484,1491", statOrder = { 1484, 1491 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0, }, }, - ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrderKey = "3552", statOrder = { 3552 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to Fortify on Melee hit", statOrderKey = "1320", statOrder = { 1320 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, }, - ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1617", statOrder = { 1617 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1962", statOrder = { 1962 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, - ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrderKey = "898", statOrder = { 898 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2341", statOrder = { 2341 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "SpellDodgePercentage", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "1832", statOrder = { 1832 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrderKey = "3149", statOrder = { 3149 }, level = 85, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 100, 0, }, }, + ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrderKey = "916", statOrder = { 916 }, level = 60, group = "AvoidIgniteCorrupted", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, + ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrderKey = "2339", statOrder = { 2339 }, level = 60, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, + ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrderKey = "1488,1495", statOrder = { 1488, 1495 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0, }, }, + ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrderKey = "3557", statOrder = { 3557 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to Fortify on Melee hit", statOrderKey = "1324", statOrder = { 1324 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, }, + ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1621", statOrder = { 1621 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1966", statOrder = { 1966 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, + ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrderKey = "902", statOrder = { 902 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2346", statOrder = { 2346 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 1, group = "SpellDodgePercentage", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrderKey = "244", statOrder = { 244 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrderKey = "239", statOrder = { 239 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Despair on Hit", statOrderKey = "1519", statOrder = { 1519 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1515", statOrder = { 1515 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Enfeeble on Hit", statOrderKey = "1520", statOrder = { 1520 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1512", statOrder = { 1512 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1513", statOrder = { 1513 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Despair on Hit", statOrderKey = "1523", statOrder = { 1523 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1519", statOrder = { 1519 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Enfeeble on Hit", statOrderKey = "1524", statOrder = { 1524 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1516", statOrder = { 1516 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1517", statOrder = { 1517 }, level = 30, group = "CurseOnHitLevel", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrderKey = "233", statOrder = { 233 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrderKey = "252", statOrder = { 252 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0, }, }, ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrderKey = "255", statOrder = { 255 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0, }, }, - ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Attack Hits while moving", statOrderKey = "3745", statOrder = { 3745 }, level = 60, group = "DodgeAttackHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Spell Hits while moving", statOrderKey = "3747", statOrder = { 3747 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Attack Hits while moving", statOrderKey = "3750", statOrder = { 3750 }, level = 60, group = "DodgeAttackHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Spell Hits while moving", statOrderKey = "3752", statOrder = { 3752 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "415", statOrder = { 415 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0, }, }, - ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "1951", statOrder = { 1951 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrderKey = "771", statOrder = { 771 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "1821", statOrder = { 1821 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "1822", statOrder = { 1822 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "1955", statOrder = { 1955 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "1825", statOrder = { 1825 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, + ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "1826", statOrder = { 1826 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrderKey = "237", statOrder = { 237 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrderKey = "240", statOrder = { 240 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrderKey = "3880", statOrder = { 3880 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0, }, }, + ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrderKey = "3885", statOrder = { 3885 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0, }, }, ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrderKey = "20", statOrder = { 20 }, level = 1, group = "IncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0, }, }, ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrderKey = "253", statOrder = { 253 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0, }, }, ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrderKey = "242", statOrder = { 242 }, level = 56, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrderKey = "250", statOrder = { 250 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrderKey = "4120", statOrder = { 4120 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrderKey = "4121", statOrder = { 4121 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, }, - ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3374", statOrder = { 3374 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0, }, tags = { "has_attack_mod", }, }, - ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrderKey = "2260", statOrder = { 2260 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0, }, tags = { "has_caster_mod", }, }, - ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrderKey = "3522", statOrder = { 3522 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Chill", statOrderKey = "3595", statOrder = { 3595 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrderKey = "3646", statOrder = { 3646 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrderKey = "4125", statOrder = { 4125 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, + ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrderKey = "4126", statOrder = { 4126 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, + ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, }, + ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, }, + ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3379", statOrder = { 3379 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0, }, tags = { "has_attack_mod", }, }, + ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrderKey = "2265", statOrder = { 2265 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0, }, tags = { "has_caster_mod", }, }, + ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrderKey = "3527", statOrder = { 3527 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Chill", statOrderKey = "3600", statOrder = { 3600 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrderKey = "3651", statOrder = { 3651 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrderKey = "428", statOrder = { 428 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrderKey = "443", statOrder = { 443 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrderKey = "953", statOrder = { 953 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 1, group = "EnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "(1.6-2)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrderKey = "2149", statOrder = { 2149 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage for each time they have Chained", statOrderKey = "4831", statOrder = { 4831 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage for each Enemy Pierced", statOrderKey = "4832", statOrder = { 4832 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrderKey = "4900", statOrder = { 4900 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "4949", statOrder = { 4949 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrderKey = "957", statOrder = { 957 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 1, group = "EnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, + ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "(1.6-2)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrderKey = "2154", statOrder = { 2154 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage for each time they have Chained", statOrderKey = "4843", statOrder = { 4843 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage for each Enemy Pierced", statOrderKey = "4844", statOrder = { 4844 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrderKey = "4912", statOrder = { 4912 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "4961", statOrder = { 4961 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrderKey = "26", statOrder = { 26 }, level = 1, group = "IncreaseSocketedColdGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrderKey = "25", statOrder = { 25 }, level = 1, group = "IncreaseSocketedFireGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrderKey = "27", statOrder = { 27 }, level = 1, group = "IncreaseSocketedLightningGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, - ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, - ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0, }, }, - ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 1, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 31, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 84, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-11) to (17-20) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 1, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (19-23) to (31-38) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 31, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (22-28) to (39-47) Cold Damage", statOrderKey = "526", statOrder = { 526 }, level = 84, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 1, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 31, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 84, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (10-15) to (20-23) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 1, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (23-27) to (34-43) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 31, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (27-34) to (45-53) Fire Damage", statOrderKey = "519", statOrder = { 519 }, level = 84, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 1, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 31, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 84, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (30-34) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 1, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-6) to (63-72) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 31, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (4-8) to (89-92) Lightning Damage", statOrderKey = "535", statOrder = { 535 }, level = 84, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 1, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 31, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 84, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 1, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 31, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrderKey = "477", statOrder = { 477 }, level = 84, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrderKey = "1306", statOrder = { 1306 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 70, group = "IncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "564", statOrder = { 564 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "613", statOrder = { 613 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "460", statOrder = { 460 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, tags = { "has_caster_mod", }, }, - ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(4-6) Mana gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "882", statOrder = { 882 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "884", statOrder = { 884 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "886", statOrder = { 886 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrderKey = "1062", statOrder = { 1062 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "748", statOrder = { 748 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0, }, }, + ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrderKey = "777", statOrder = { 777 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, + ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, + ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0, }, }, + ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 1, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 31, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 84, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-11) to (17-20) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 1, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (19-23) to (31-38) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 31, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (22-28) to (39-47) Cold Damage", statOrderKey = "528", statOrder = { 528 }, level = 84, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 31, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 84, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (10-15) to (20-23) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (23-27) to (34-43) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 31, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (27-34) to (45-53) Fire Damage", statOrderKey = "521", statOrder = { 521 }, level = 84, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 1, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 31, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 84, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (30-34) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 1, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-6) to (63-72) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 31, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (4-8) to (89-92) Lightning Damage", statOrderKey = "537", statOrder = { 537 }, level = 84, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 1, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 31, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 84, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 1, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 31, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrderKey = "479", statOrder = { 479 }, level = 84, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrderKey = "1310", statOrder = { 1310 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 70, group = "IncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "566", statOrder = { 566 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "615", statOrder = { 615 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "462", statOrder = { 462 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, tags = { "has_caster_mod", }, }, + ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(4-6) Mana gained for each Enemy hit by your Attacks", statOrderKey = "832", statOrder = { 832 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, + ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "886", statOrder = { 886 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "888", statOrder = { 888 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, + ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "890", statOrder = { 890 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, + ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrderKey = "1066", statOrder = { 1066 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "750", statOrder = { 750 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0, }, }, ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% Chance to Block Spell Damage", statOrderKey = "410", statOrder = { 410 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1003", statOrder = { 1003 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1452", statOrder = { 1452 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1451", statOrder = { 1451 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1453", statOrder = { 1453 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrderKey = "5122", statOrder = { 5122 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, + ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1456", statOrder = { 1456 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1457", statOrder = { 1457 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1459", statOrder = { 1459 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrderKey = "5134", statOrder = { 5134 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrderKey = "228", statOrder = { 228 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrderKey = "234", statOrder = { 234 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrderKey = "236", statOrder = { 236 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrderKey = "246", statOrder = { 246 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1300", statOrder = { 1300 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrderKey = "2349", statOrder = { 2349 }, level = 45, group = "ColdDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrderKey = "3344", statOrder = { 3344 }, level = 20, group = "ReducedDamageFromAreaOfEffect", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectiles", statOrderKey = "1716", statOrder = { 1716 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrderKey = "1299", statOrder = { 1299 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2348", statOrder = { 2348 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrderKey = "660", statOrder = { 660 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "660", statOrder = { 660 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "100 Life Regenerated per second while moving", statOrderKey = "4059", statOrder = { 4059 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrderKey = "5132", statOrder = { 5132 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1304", statOrder = { 1304 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrderKey = "2354", statOrder = { 2354 }, level = 45, group = "ColdDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrderKey = "3349", statOrder = { 3349 }, level = 20, group = "ReducedDamageFromAreaOfEffect", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectiles", statOrderKey = "1720", statOrder = { 1720 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrderKey = "1303", statOrder = { 1303 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2353", statOrder = { 2353 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrderKey = "662", statOrder = { 662 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "662", statOrder = { 662 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, + ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "100 Life Regenerated per second while moving", statOrderKey = "4064", statOrder = { 4064 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, + ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrderKey = "5144", statOrder = { 5144 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0, }, }, ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Mana Multiplier", statOrderKey = "185", statOrder = { 185 }, level = 1, group = "SocketedGemsHaveReducedManaCost", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrderKey = "146", statOrder = { 146 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrderKey = "140", statOrder = { 140 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, }, @@ -1358,7 +1358,7 @@ return { ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrderKey = "92", statOrder = { 92 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Onslaught", statOrderKey = "100", statOrder = { 100 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, }, ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Reduced Mana", statOrderKey = "154", statOrder = { 154 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, }, - ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrderKey = "3767", statOrder = { 3767 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, + ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrderKey = "3772", statOrder = { 3772 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrderKey = "249", statOrder = { 249 }, level = 45, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrderKey = "30", statOrder = { 30 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrderKey = "31", statOrder = { 31 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, @@ -1367,383 +1367,383 @@ return { ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrderKey = "41", statOrder = { 41 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrderKey = "45", statOrder = { 45 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrderKey = "32", statOrder = { 32 }, level = 20, group = "IncreaseSocketedProjectileGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 200, 200, 200, 0, }, }, - ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrderKey = "2329", statOrder = { 2329 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrderKey = "2328", statOrder = { 2328 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrderKey = "2331", statOrder = { 2331 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrderKey = "2332", statOrder = { 2332 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrderKey = "2333", statOrder = { 2333 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrderKey = "2330", statOrder = { 2330 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrderKey = "3725", statOrder = { 3725 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrderKey = "5095", statOrder = { 5095 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrderKey = "1809,1811", statOrder = { 1809, 1811 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Strength", statOrderKey = "1809,1810", statOrder = { 1809, 1810 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrderKey = "1810,1811", statOrder = { 1810, 1811 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, + ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 200, 200, 200, 0, }, }, + ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrderKey = "2334", statOrder = { 2334 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrderKey = "2333", statOrder = { 2333 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrderKey = "2336", statOrder = { 2336 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrderKey = "2337", statOrder = { 2337 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrderKey = "2338", statOrder = { 2338 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrderKey = "2335", statOrder = { 2335 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrderKey = "3730", statOrder = { 3730 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrderKey = "5107", statOrder = { 5107 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrderKey = "1813,1815", statOrder = { 1813, 1815 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Strength", statOrderKey = "1813,1814", statOrder = { 1813, 1814 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrderKey = "1814,1815", statOrder = { 1814, 1815 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrderKey = "43", statOrder = { 43 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "", "(23-26)% increased Chaos Damage", statOrderKey = "538", statOrder = { 538 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "", "(27-30)% increased Chaos Damage", statOrderKey = "538", statOrder = { 538 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "", "(31-34)% increased Chaos Damage", statOrderKey = "538", statOrder = { 538 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "", "40% increased total Recovery per second from Life Leech", statOrderKey = "1224", statOrder = { 1224 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrderKey = "776", statOrder = { 776 }, level = 63, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "IncreaseFlatManaCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrderKey = "1224", statOrder = { 1224 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "", "(23-26)% increased Chaos Damage", statOrderKey = "540", statOrder = { 540 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "", "(27-30)% increased Chaos Damage", statOrderKey = "540", statOrder = { 540 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "", "(31-34)% increased Chaos Damage", statOrderKey = "540", statOrder = { 540 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "", "40% increased total Recovery per second from Life Leech", statOrderKey = "1228", statOrder = { 1228 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrderKey = "778", statOrder = { 778 }, level = 63, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrderKey = "953", statOrder = { 953 }, level = 1, group = "IncreaseFlatManaCost", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrderKey = "1228", statOrder = { 1228 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrderKey = "54", statOrder = { 54 }, level = 1, group = "SupportGemQuality", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1482", statOrder = { 1482 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1484", statOrder = { 1484 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrderKey = "1115", statOrder = { 1115 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Zana's", "Area is inhabited by an additional Invasion Boss", statOrderKey = "1606", statOrder = { 1606 }, level = 1, group = "MapInvasionMonsterPacks", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrderKey = "1954", statOrder = { 1954 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrderKey = "1952", statOrder = { 1952 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrderKey = "1953", statOrder = { 1953 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(8-11)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(12-15)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(16-19)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(20-23)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 15, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 45, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 70, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1486", statOrder = { 1486 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1488", statOrder = { 1488 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrderKey = "1119", statOrder = { 1119 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Zana's", "Area is inhabited by an additional Invasion Boss", statOrderKey = "1610", statOrder = { 1610 }, level = 1, group = "MapInvasionMonsterPacks", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrderKey = "1958", statOrder = { 1958 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrderKey = "1956", statOrder = { 1956 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrderKey = "1957", statOrder = { 1957 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(8-11)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(12-15)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(16-19)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(20-23)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 15, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 45, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 70, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, + ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "757", statOrder = { 757 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "793", statOrder = { 793 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrderKey = "434", statOrder = { 434 }, level = 4, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrderKey = "434", statOrder = { 434 }, level = 15, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrderKey = "434", statOrder = { 434 }, level = 30, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrderKey = "434", statOrder = { 434 }, level = 60, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrderKey = "434", statOrder = { 434 }, level = 81, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "", "(31-34)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-13) to (19-22) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (31-41) to (61-71) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (36-49) to (73-85) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (25-33) to (50-58) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (30-40) to (60-69) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (33-35) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-49) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-30) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-24) to (36-42) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (23-30) to (45-53) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (28-38) to (57-66) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-46) to (68-80) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (41-55) to (83-96) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (49-65) to (98-115) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-16) to (23-27) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (21-27) to (41-48) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (26-34) to (52-60) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-41) to (62-73) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (38-50) to (75-88) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (45-60) to (89-104) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-6) to (69-73) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-7) to (87-92) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (4-11) to (132-139) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-15) to (189-200) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essence", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (47-72) to (98-123) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 0, 600, 600, 600, 400, 250, 250, 600, 600, 0, }, }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (70-108) to (147-185) Chaos Damage", statOrderKey = "541", statOrder = { 541 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 600, 600, 250, 300, 0, }, }, - ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrderKey = "1724", statOrder = { 1724 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrderKey = "3017", statOrder = { 3017 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "4848", statOrder = { 4848 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "4848", statOrder = { 4848 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrderKey = "4849", statOrder = { 4849 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "", "Cannot be Poisoned", statOrderKey = "2334", statOrder = { 2334 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "", "(6-7)% chance to Avoid Fire Damage when Hit", statOrderKey = "2336", statOrder = { 2336 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "", "(7-8)% chance to Avoid Fire Damage when Hit", statOrderKey = "2336", statOrder = { 2336 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "", "(8-9)% chance to Avoid Fire Damage when Hit", statOrderKey = "2336", statOrder = { 2336 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Avoid Fire Damage when Hit", statOrderKey = "2336", statOrder = { 2336 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "", "(5-6)% chance to Avoid Cold Damage when Hit", statOrderKey = "2337", statOrder = { 2337 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "", "(6-7)% chance to Avoid Cold Damage when Hit", statOrderKey = "2337", statOrder = { 2337 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "", "(7-8)% chance to Avoid Cold Damage when Hit", statOrderKey = "2337", statOrder = { 2337 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "", "(8-9)% chance to Avoid Cold Damage when Hit", statOrderKey = "2337", statOrder = { 2337 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Avoid Cold Damage when Hit", statOrderKey = "2337", statOrder = { 2337 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "", "(4-5)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2338", statOrder = { 2338 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "", "(5-6)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2338", statOrder = { 2338 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "", "(6-7)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2338", statOrder = { 2338 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "", "(7-8)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2338", statOrder = { 2338 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "", "(8-9)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2338", statOrder = { 2338 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2338", statOrder = { 2338 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrderKey = "2134", statOrder = { 2134 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrderKey = "2134", statOrder = { 2134 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 500, 500, 1000, 1000, 0, }, }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "538,2134", statOrder = { 538, 2134 }, level = 1, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "", "(23-26)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "", "(27-30)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "", "(31-34)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-13) to (19-22) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (31-41) to (61-71) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (36-49) to (73-85) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (25-33) to (50-58) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (30-40) to (60-69) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (33-35) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-49) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-30) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-24) to (36-42) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (23-30) to (45-53) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (28-38) to (57-66) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-46) to (68-80) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (41-55) to (83-96) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (49-65) to (98-115) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-16) to (23-27) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (21-27) to (41-48) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (26-34) to (52-60) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-41) to (62-73) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (38-50) to (75-88) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (45-60) to (89-104) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-6) to (69-73) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-7) to (87-92) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (4-11) to (132-139) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-15) to (189-200) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essence", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (47-72) to (98-123) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 0, 600, 600, 600, 400, 250, 250, 600, 600, 0, }, }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (70-108) to (147-185) Chaos Damage", statOrderKey = "543", statOrder = { 543 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 600, 600, 250, 300, 0, }, }, + ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrderKey = "1728", statOrder = { 1728 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrderKey = "3022", statOrder = { 3022 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "4860", statOrder = { 4860 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, + ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "4860", statOrder = { 4860 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, + ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrderKey = "4861", statOrder = { 4861 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "", "Cannot be Poisoned", statOrderKey = "2339", statOrder = { 2339 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "", "(6-7)% chance to Avoid Fire Damage when Hit", statOrderKey = "2341", statOrder = { 2341 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "", "(7-8)% chance to Avoid Fire Damage when Hit", statOrderKey = "2341", statOrder = { 2341 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "", "(8-9)% chance to Avoid Fire Damage when Hit", statOrderKey = "2341", statOrder = { 2341 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Avoid Fire Damage when Hit", statOrderKey = "2341", statOrder = { 2341 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "", "(5-6)% chance to Avoid Cold Damage when Hit", statOrderKey = "2342", statOrder = { 2342 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "", "(6-7)% chance to Avoid Cold Damage when Hit", statOrderKey = "2342", statOrder = { 2342 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "", "(7-8)% chance to Avoid Cold Damage when Hit", statOrderKey = "2342", statOrder = { 2342 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "", "(8-9)% chance to Avoid Cold Damage when Hit", statOrderKey = "2342", statOrder = { 2342 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Avoid Cold Damage when Hit", statOrderKey = "2342", statOrder = { 2342 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "", "(4-5)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2343", statOrder = { 2343 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "", "(5-6)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2343", statOrder = { 2343 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "", "(6-7)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2343", statOrder = { 2343 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "", "(7-8)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2343", statOrder = { 2343 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "", "(8-9)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2343", statOrder = { 2343 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "", "(9-10)% chance to Avoid Lightning Damage when Hit", statOrderKey = "2343", statOrder = { 2343 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrderKey = "2139", statOrder = { 2139 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrderKey = "2139", statOrder = { 2139 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 500, 500, 1000, 1000, 0, }, }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "540,2139", statOrder = { 540, 2139 }, level = 1, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "", "Socketed Gems deal 175 to 225 additional Fire Damage", statOrderKey = "205", statOrder = { 205 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrderKey = "202", statOrder = { 202 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "", "Socketed Gems have 16% more Attack and Cast Speed", statOrderKey = "202", statOrder = { 202 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrderKey = "206", statOrder = { 206 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "", "Socketed Gems deal 30% more Elemental Damage", statOrderKey = "203", statOrder = { 203 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "", "5% reduced Elemental Damage Taken while stationary", statOrderKey = "3224", statOrder = { 3224 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0, }, }, - ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second", statOrderKey = "3223", statOrder = { 3223 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "", "15% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1452", statOrder = { 1452 }, level = 63, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "", "Gain 10% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "", "25% reduced Chaos Damage taken over time", statOrderKey = "1016", statOrder = { 1016 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0, }, }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "", "5% reduced Elemental Damage Taken while stationary", statOrderKey = "3229", statOrder = { 3229 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0, }, }, + ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second", statOrderKey = "3228", statOrder = { 3228 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "", "15% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1456", statOrder = { 1456 }, level = 63, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "", "Gain 10% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "", "25% reduced Chaos Damage taken over time", statOrderKey = "1020", statOrder = { 1020 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have +3.5% Critical Strike Chance", statOrderKey = "195", statOrder = { 195 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrderKey = "3203", statOrder = { 3203 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Movement Speed during any Flask Effect", statOrderKey = "2149", statOrder = { 2149 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "", "4 to 7 Cold Damage per Frenzy Charge", statOrderKey = "3202", statOrder = { 3202 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "", "Adds 40 to 80 Fire Damage if you've Blocked Recently", statOrderKey = "3204", statOrder = { 3204 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0, }, }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrderKey = "3208", statOrder = { 3208 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Movement Speed during any Flask Effect", statOrderKey = "2154", statOrder = { 2154 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "", "4 to 7 Cold Damage per Frenzy Charge", statOrderKey = "3207", statOrder = { 3207 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "", "Adds 40 to 80 Fire Damage if you've Blocked Recently", statOrderKey = "3209", statOrder = { 3209 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 50% chance to Ignite", statOrderKey = "189", statOrder = { 189 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrderKey = "3197", statOrder = { 3197 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "5% additional Physical Damage Reduction during any Flask Effect", statOrderKey = "3198", statOrder = { 3198 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "", "10% reduced Reflected Damage taken", statOrderKey = "3199", statOrder = { 3199 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "", "10% chance to gain a Power Charge when you Block", statOrderKey = "3200", statOrder = { 3200 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "", "Chill Nearby Enemies when you Block", statOrderKey = "3201", statOrder = { 3201 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEssence1"] = { type = "Prefix", affix = "", "40% increased Damage with Poison", statOrderKey = "2132", statOrder = { 2132 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "", "10% chance to Recover 10% of Maximum Mana when you use a Skill", statOrderKey = "2426", statOrder = { 2426 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0, }, }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "", "15% increased Effect of Fortify on you", statOrderKey = "2519", statOrder = { 2519 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2558", statOrder = { 2558 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0, }, }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrderKey = "3202", statOrder = { 3202 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "5% additional Physical Damage Reduction during any Flask Effect", statOrderKey = "3203", statOrder = { 3203 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "", "10% reduced Reflected Damage taken", statOrderKey = "3204", statOrder = { 3204 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "", "10% chance to gain a Power Charge when you Block", statOrderKey = "3205", statOrder = { 3205 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "", "Chill Nearby Enemies when you Block", statOrderKey = "3206", statOrder = { 3206 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, + ["PoisonDamageEssence1"] = { type = "Prefix", affix = "", "40% increased Damage with Poison", statOrderKey = "2137", statOrder = { 2137 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "", "10% chance to Recover 10% of Maximum Mana when you use a Skill", statOrderKey = "2431", statOrder = { 2431 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0, }, }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "", "15% increased Effect of Fortify on you", statOrderKey = "2524", statOrder = { 2524 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2563", statOrder = { 2563 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrderKey = "216", statOrder = { 216 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "", "+2 to Level of Socketed Aura Gems", statOrderKey = "36", statOrder = { 36 }, level = 63, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "", "10% chance to Cast Level 20 Fire Burst on Hit", statOrderKey = "306", statOrder = { 306 }, level = 63, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, ["SpiritMinionEssence1"] = { type = "Suffix", affix = "", "Triggers Level 20 Spectral Spirits when Equipped", statOrderKey = "292", statOrder = { 292 }, level = 63, group = "GrantsMinion", weightKey = { "default", }, weightVal = { 0, }, }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "", "Gain Onslaught for 3 seconds when Hit", statOrderKey = "3907", statOrder = { 3907 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "", "Gain Onslaught for 3 seconds when Hit", statOrderKey = "3912", statOrder = { 3912 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0, }, }, ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "", "Socketed Gems deal 30% more Damage over Time", statOrderKey = "214", statOrder = { 214 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "", "Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds", statOrderKey = "3718", statOrder = { 3718 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrderKey = "4748", statOrder = { 4748 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0, }, }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "", "Recover 2% of your maximum Mana when you Block", statOrderKey = "4265", statOrder = { 4265 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrderKey = "3447", statOrder = { 3447 }, level = 30, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 2000, 2000, 0, }, }, - ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrderKey = "3447", statOrder = { 3447 }, level = 60, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 300, 300, 600, 600, 0, }, }, - ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(6-8)% chance to Ignite", statOrderKey = "1099", statOrder = { 1099 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(12-15)% chance to Ignite", statOrderKey = "1099", statOrder = { 1099 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrderKey = "1484", statOrder = { 1484 }, level = 15, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 2000, 2000, 0, }, }, - ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrderKey = "1484", statOrder = { 1484 }, level = 55, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 1000, 1000, 0, }, }, - ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrderKey = "1484", statOrder = { 1484 }, level = 85, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 250, 250, 500, 500, 0, }, }, - ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrderKey = "4169", statOrder = { 4169 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 2000, 2000, 0, }, }, - ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrderKey = "4169", statOrder = { 4169 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 500, 500, 1000, 1000, 0, }, }, - ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrderKey = "4169", statOrder = { 4169 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 250, 250, 500, 500, 0, }, }, - ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "538,4169", statOrder = { 538, 4169 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(6-8)% chance to Freeze", statOrderKey = "1101", statOrder = { 1101 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(12-15)% chance to Freeze", statOrderKey = "1101", statOrder = { 1101 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(6-8)% chance to Shock", statOrderKey = "1105", statOrder = { 1105 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(12-15)% chance to Shock", statOrderKey = "1105", statOrder = { 1105 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(16-20)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0, }, }, - ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(21-25)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0, }, }, - ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(26-30)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 750, 750, 0, }, }, - ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(21-30)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, }, - ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-40)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, }, - ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(41-50)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, }, - ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-25)% increased Damage with Poison", statOrderKey = "2132", statOrder = { 2132 }, level = 20, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, - ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(26-30)% increased Damage with Poison", statOrderKey = "2132", statOrder = { 2132 }, level = 40, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, - ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(31-35)% increased Damage with Poison", statOrderKey = "2132", statOrder = { 2132 }, level = 60, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 500, 500, 1000, 1000, 0, }, }, - ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "541,2132", statOrder = { 541, 2132 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "558,2132", statOrder = { 558, 2132 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "(21-25)% increased Damage with Bleeding", statOrderKey = "2133", statOrder = { 2133 }, level = 20, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0, }, }, - ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "(26-30)% increased Damage with Bleeding", statOrderKey = "2133", statOrder = { 2133 }, level = 40, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0, }, }, - ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "(31-35)% increased Damage with Bleeding", statOrderKey = "2133", statOrder = { 2133 }, level = 60, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 500, 500, 1000, 1000, 0, }, }, - ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrderKey = "1326", statOrder = { 1326 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 1000, 1000, 660, 0, }, }, - ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrderKey = "1326", statOrder = { 1326 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0, }, }, - ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 25, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 1000, 1000, 660, 0, }, }, - ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 85, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0, }, }, - ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "0.6% of Energy Shield Regenerated per second", statOrderKey = "1631", statOrder = { 1631 }, level = 25, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 1000, 1000, 660, 0, }, }, - ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "1% of Energy Shield Regenerated per second", statOrderKey = "1631", statOrder = { 1631 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0, }, }, - ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 Increased Duration", "(10-15)% increased Skill Effect Duration", statOrderKey = "88,953", statOrder = { 88, 953 }, level = 68, group = "SkillEffectDuration", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3450", statOrder = { 3450 }, level = 80, group = "CooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "", "Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds", statOrderKey = "3723", statOrder = { 3723 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrderKey = "4760", statOrder = { 4760 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0, }, }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "", "Recover 2% of your maximum Mana when you Block", statOrderKey = "4270", statOrder = { 4270 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, + ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrderKey = "3452", statOrder = { 3452 }, level = 30, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 2000, 2000, 0, }, }, + ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrderKey = "3452", statOrder = { 3452 }, level = 60, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 300, 300, 600, 600, 0, }, }, + ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(6-8)% chance to Ignite", statOrderKey = "1103", statOrder = { 1103 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(12-15)% chance to Ignite", statOrderKey = "1103", statOrder = { 1103 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, + ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrderKey = "1488", statOrder = { 1488 }, level = 15, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 2000, 2000, 0, }, }, + ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrderKey = "1488", statOrder = { 1488 }, level = 55, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 1000, 1000, 0, }, }, + ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrderKey = "1488", statOrder = { 1488 }, level = 85, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 250, 250, 500, 500, 0, }, }, + ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrderKey = "4174", statOrder = { 4174 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 2000, 2000, 0, }, }, + ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrderKey = "4174", statOrder = { 4174 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 500, 500, 1000, 1000, 0, }, }, + ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrderKey = "4174", statOrder = { 4174 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 250, 250, 500, 500, 0, }, }, + ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "540,4174", statOrder = { 540, 4174 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(6-8)% chance to Freeze", statOrderKey = "1105", statOrder = { 1105 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(12-15)% chance to Freeze", statOrderKey = "1105", statOrder = { 1105 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, + ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(6-8)% chance to Shock", statOrderKey = "1109", statOrder = { 1109 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(12-15)% chance to Shock", statOrderKey = "1109", statOrder = { 1109 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, + ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(16-20)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0, }, }, + ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(21-25)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0, }, }, + ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(26-30)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 750, 750, 0, }, }, + ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(21-30)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, }, + ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-40)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, }, + ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(41-50)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, }, + ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-25)% increased Damage with Poison", statOrderKey = "2137", statOrder = { 2137 }, level = 20, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, + ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(26-30)% increased Damage with Poison", statOrderKey = "2137", statOrder = { 2137 }, level = 40, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, + ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(31-35)% increased Damage with Poison", statOrderKey = "2137", statOrder = { 2137 }, level = 60, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 500, 500, 1000, 1000, 0, }, }, + ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "543,2137", statOrder = { 543, 2137 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "560,2137", statOrder = { 560, 2137 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "(21-25)% increased Damage with Bleeding", statOrderKey = "2138", statOrder = { 2138 }, level = 20, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0, }, }, + ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "(26-30)% increased Damage with Bleeding", statOrderKey = "2138", statOrder = { 2138 }, level = 40, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0, }, }, + ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "(31-35)% increased Damage with Bleeding", statOrderKey = "2138", statOrder = { 2138 }, level = 60, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 500, 500, 1000, 1000, 0, }, }, + ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrderKey = "1330", statOrder = { 1330 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 1000, 1000, 660, 0, }, }, + ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrderKey = "1330", statOrder = { 1330 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0, }, }, + ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 25, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 1000, 1000, 660, 0, }, }, + ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 85, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0, }, }, + ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "0.6% of Energy Shield Regenerated per second", statOrderKey = "1635", statOrder = { 1635 }, level = 25, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 2000, 1000, 1000, 660, 0, }, }, + ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "1% of Energy Shield Regenerated per second", statOrderKey = "1635", statOrder = { 1635 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0, }, }, + ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 Increased Duration", "(10-15)% increased Skill Effect Duration", statOrderKey = "88,957", statOrder = { 88, 957 }, level = 68, group = "SkillEffectDuration", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3455", statOrder = { 3455 }, level = 80, group = "CooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", statOrderKey = "156", statOrder = { 156 }, level = 68, group = "DisplaySocketedGemGetsFortify", weightKey = { "no_attack_mods", "boots_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrderKey = "5036", statOrder = { 5036 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrderKey = "5034", statOrder = { 5034 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Shocked Ground", statOrderKey = "5047", statOrder = { 5047 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, - ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Desecrated Ground", statOrderKey = "5039", statOrder = { 5039 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 68, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "(6-8)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 75, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1232", statOrder = { 1232 }, level = 84, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 68, group = "SpellDodgePercentage", weightKey = { "boots_elder", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "(6-8)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 75, group = "SpellDodgePercentage", weightKey = { "boots_elder", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Dodge Spell Hits", statOrderKey = "1233", statOrder = { 1233 }, level = 83, group = "SpellDodgePercentage", weightKey = { "boots_elder", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-22)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(23-30)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrderKey = "909", statOrder = { 909 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrderKey = "3446", statOrder = { 3446 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrderKey = "3446", statOrder = { 3446 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain an Endurance Charge on Kill", statOrderKey = "1618", statOrder = { 1618 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0, }, }, - ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain an Endurance Charge on Kill", statOrderKey = "1618", statOrder = { 1618 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0, }, }, + ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrderKey = "5048", statOrder = { 5048 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrderKey = "5046", statOrder = { 5046 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Shocked Ground", statOrderKey = "5059", statOrder = { 5059 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, + ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Desecrated Ground", statOrderKey = "5051", statOrder = { 5051 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 68, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "(6-8)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 75, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1236", statOrder = { 1236 }, level = 84, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 68, group = "SpellDodgePercentage", weightKey = { "boots_elder", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "(6-8)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 75, group = "SpellDodgePercentage", weightKey = { "boots_elder", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Dodge Spell Hits", statOrderKey = "1237", statOrder = { 1237 }, level = 83, group = "SpellDodgePercentage", weightKey = { "boots_elder", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-22)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(23-30)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrderKey = "913", statOrder = { 913 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrderKey = "3451", statOrder = { 3451 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrderKey = "3451", statOrder = { 3451 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, + ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain an Endurance Charge on Kill", statOrderKey = "1622", statOrder = { 1622 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0, }, }, + ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain an Endurance Charge on Kill", statOrderKey = "1622", statOrder = { 1622 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0, }, }, ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrderKey = "134,430", statOrder = { 134, 430 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrderKey = "134,430", statOrder = { 134, 430 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrderKey = "134,430", statOrder = { 134, 430 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "134,1572", statOrder = { 134, 1572 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "134,1572", statOrder = { 134, 1572 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "134,1572", statOrder = { 134, 1572 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, + ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "134,1576", statOrder = { 134, 1576 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, + ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "134,1576", statOrder = { 134, 1576 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, + ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "134,1576", statOrder = { 134, 1576 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ranged Attack Totem", "(20-25)% increased Totem Damage", statOrderKey = "107,430", statOrder = { 107, 430 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ranged Attack Totem", "(26-30)% increased Totem Damage", statOrderKey = "107,430", statOrder = { 107, 430 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ranged Attack Totem", "(31-35)% increased Totem Damage", statOrderKey = "107,430", statOrder = { 107, 430 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ranged Attack Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "107,1572", statOrder = { 107, 1572 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ranged Attack Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "107,1572", statOrder = { 107, 1572 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ranged Attack Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "107,1572", statOrder = { 107, 1572 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ranged Attack Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "107,1576", statOrder = { 107, 1576 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ranged Attack Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "107,1576", statOrder = { 107, 1576 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, + ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ranged Attack Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "107,1576", statOrder = { 107, 1576 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrderKey = "149", statOrder = { 149 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrderKey = "277", statOrder = { 277 }, level = 68, group = "GrantedSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrderKey = "139,561", statOrder = { 139, 561 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrderKey = "139,561", statOrder = { 139, 561 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrderKey = "139,561", statOrder = { 139, 561 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrderKey = "159,597", statOrder = { 159, 597 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrderKey = "159,597", statOrder = { 159, 597 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrderKey = "159,597", statOrder = { 159, 597 }, level = 84, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 85, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrderKey = "139,563", statOrder = { 139, 563 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrderKey = "139,563", statOrder = { 139, 563 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrderKey = "139,563", statOrder = { 139, 563 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrderKey = "159,599", statOrder = { 159, 599 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrderKey = "159,599", statOrder = { 159, 599 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrderKey = "159,599", statOrder = { 159, 599 }, level = 84, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 85, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrderKey = "172", statOrder = { 172 }, level = 68, group = "Supported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrderKey = "148,874", statOrder = { 148, 874 }, level = 68, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrderKey = "148,874", statOrder = { 148, 874 }, level = 75, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrderKey = "148,874", statOrder = { 148, 874 }, level = 82, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrderKey = "112,1069", statOrder = { 112, 1069 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrderKey = "112,1069", statOrder = { 112, 1069 }, level = 75, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrderKey = "112,1069", statOrder = { 112, 1069 }, level = 83, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "956", statOrder = { 956 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "956", statOrder = { 956 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "956", statOrder = { 956 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Melee Weapon and Unarmed Attack range", statOrderKey = "1528", statOrder = { 1528 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "125,4766", statOrder = { 125, 4766 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 150, 0, }, }, - ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "125,4766", statOrder = { 125, 4766 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 150, 0, }, }, - ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "125,4766", statOrder = { 125, 4766 }, level = 84, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 150, 0, }, }, + ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrderKey = "148,878", statOrder = { 148, 878 }, level = 68, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrderKey = "148,878", statOrder = { 148, 878 }, level = 75, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrderKey = "148,878", statOrder = { 148, 878 }, level = 82, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrderKey = "112,1073", statOrder = { 112, 1073 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrderKey = "112,1073", statOrder = { 112, 1073 }, level = 75, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrderKey = "112,1073", statOrder = { 112, 1073 }, level = 83, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "960", statOrder = { 960 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "960", statOrder = { 960 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "960", statOrder = { 960 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Melee Weapon and Unarmed Attack range", statOrderKey = "1532", statOrder = { 1532 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "125,4778", statOrder = { 125, 4778 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 150, 0, }, }, + ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "125,4778", statOrder = { 125, 4778 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 150, 0, }, }, + ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "125,4778", statOrder = { 125, 4778 }, level = 84, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 150, 0, }, }, ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrderKey = "125,431", statOrder = { 125, 431 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrderKey = "125,431", statOrder = { 125, 431 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrderKey = "125,431", statOrder = { 125, 431 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrderKey = "119,431", statOrder = { 119, 431 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrderKey = "119,431", statOrder = { 119, 431 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrderKey = "119,431", statOrder = { 119, 431 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrderKey = "119,996", statOrder = { 119, 996 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrderKey = "119,996", statOrder = { 119, 996 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrderKey = "119,996", statOrder = { 119, 996 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, + ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrderKey = "119,1000", statOrder = { 119, 1000 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, + ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrderKey = "119,1000", statOrder = { 119, 1000 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, + ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrderKey = "119,1000", statOrder = { 119, 1000 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrderKey = "128,431", statOrder = { 128, 431 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrderKey = "128,431", statOrder = { 128, 431 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrderKey = "128,431", statOrder = { 128, 431 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(20-25)% increased Damage with Poison", statOrderKey = "105,2132", statOrder = { 105, 2132 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(26-30)% increased Damage with Poison", statOrderKey = "105,2132", statOrder = { 105, 2132 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(31-35)% increased Damage with Poison", statOrderKey = "105,2132", statOrder = { 105, 2132 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(8-12)% increased Poison Duration", statOrderKey = "105,2134", statOrder = { 105, 2134 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(13-16)% increased Poison Duration", statOrderKey = "105,2134", statOrder = { 105, 2134 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(17-20)% increased Poison Duration", statOrderKey = "105,2134", statOrder = { 105, 2134 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrderKey = "67,2133", statOrder = { 67, 2133 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrderKey = "67,2133", statOrder = { 67, 2133 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrderKey = "67,2133", statOrder = { 67, 2133 }, level = 80, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1617", statOrder = { 1617 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "quiver_elder", "default", }, weightVal = { 400, 400, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1617", statOrder = { 1617 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "quiver_elder", "default", }, weightVal = { 400, 400, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1617", statOrder = { 1617 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1617", statOrder = { 1617 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrderKey = "146,585", statOrder = { 146, 585 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrderKey = "146,585", statOrder = { 146, 585 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrderKey = "146,585", statOrder = { 146, 585 }, level = 83, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(20-25)% increased Damage with Poison", statOrderKey = "105,2137", statOrder = { 105, 2137 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(26-30)% increased Damage with Poison", statOrderKey = "105,2137", statOrder = { 105, 2137 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(31-35)% increased Damage with Poison", statOrderKey = "105,2137", statOrder = { 105, 2137 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(8-12)% increased Poison Duration", statOrderKey = "105,2139", statOrder = { 105, 2139 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(13-16)% increased Poison Duration", statOrderKey = "105,2139", statOrder = { 105, 2139 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(17-20)% increased Poison Duration", statOrderKey = "105,2139", statOrder = { 105, 2139 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, + ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrderKey = "67,2138", statOrder = { 67, 2138 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrderKey = "67,2138", statOrder = { 67, 2138 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrderKey = "67,2138", statOrder = { 67, 2138 }, level = 80, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1621", statOrder = { 1621 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "quiver_elder", "default", }, weightVal = { 400, 400, 0, }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1621", statOrder = { 1621 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "quiver_elder", "default", }, weightVal = { 400, 400, 0, }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1621", statOrder = { 1621 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1621", statOrder = { 1621 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, + ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrderKey = "146,587", statOrder = { 146, 587 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrderKey = "146,587", statOrder = { 146, 587 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrderKey = "146,587", statOrder = { 146, 587 }, level = 83, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrderKey = "400", statOrder = { 400 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrderKey = "400", statOrder = { 400 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrderKey = "140,1927", statOrder = { 140, 1927 }, level = 68, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrderKey = "140,1927", statOrder = { 140, 1927 }, level = 75, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrderKey = "140,1927", statOrder = { 140, 1927 }, level = 80, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, + ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrderKey = "140,1931", statOrder = { 140, 1931 }, level = 68, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, + ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrderKey = "140,1931", statOrder = { 140, 1931 }, level = 75, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, + ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrderKey = "140,1931", statOrder = { 140, 1931 }, level = 80, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrderKey = "212", statOrder = { 212 }, level = 68, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrderKey = "212", statOrder = { 212 }, level = 75, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrderKey = "212", statOrder = { 212 }, level = 83, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrderKey = "200", statOrder = { 200 }, level = 68, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrderKey = "200", statOrder = { 200 }, level = 75, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrderKey = "200", statOrder = { 200 }, level = 84, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrderKey = "124,1107", statOrder = { 124, 1107 }, level = 68, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrderKey = "124,1107", statOrder = { 124, 1107 }, level = 75, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrderKey = "124,1107", statOrder = { 124, 1107 }, level = 82, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrderKey = "57,945", statOrder = { 57, 945 }, level = 68, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrderKey = "57,945", statOrder = { 57, 945 }, level = 75, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrderKey = "57,945", statOrder = { 57, 945 }, level = 83, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaUber1"] = { type = "Prefix", affix = "Eldritch", "(10-15)% increased maximum Mana", statOrderKey = "710", statOrder = { 710 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaUber2_"] = { type = "Prefix", affix = "Eldritch", "(16-20)% increased maximum Mana", statOrderKey = "710", statOrder = { 710 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrderKey = "164,1047", statOrder = { 164, 1047 }, level = 68, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrderKey = "164,1047", statOrder = { 164, 1047 }, level = 75, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrderKey = "164,1047", statOrder = { 164, 1047 }, level = 83, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrderKey = "162,846", statOrder = { 162, 846 }, level = 68, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrderKey = "162,846", statOrder = { 162, 846 }, level = 75, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrderKey = "162,846", statOrder = { 162, 846 }, level = 80, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Remote Mine", "Place an additional Mine", statOrderKey = "157,2499", statOrder = { 157, 2499 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 150, 0, }, }, - ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Remote Mine", "Place an additional Mine", statOrderKey = "157,2499", statOrder = { 157, 2499 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 150, 0, }, }, - ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Remote Mine", "Place an additional Mine", statOrderKey = "157,2499", statOrder = { 157, 2499 }, level = 85, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 150, 0, }, }, + ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrderKey = "124,1111", statOrder = { 124, 1111 }, level = 68, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrderKey = "124,1111", statOrder = { 124, 1111 }, level = 75, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrderKey = "124,1111", statOrder = { 124, 1111 }, level = 82, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrderKey = "57,949", statOrder = { 57, 949 }, level = 68, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrderKey = "57,949", statOrder = { 57, 949 }, level = 75, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrderKey = "57,949", statOrder = { 57, 949 }, level = 83, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumManaUber1"] = { type = "Prefix", affix = "Eldritch", "(10-15)% increased maximum Mana", statOrderKey = "712", statOrder = { 712 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumManaUber2_"] = { type = "Prefix", affix = "Eldritch", "(16-20)% increased maximum Mana", statOrderKey = "712", statOrder = { 712 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrderKey = "164,1051", statOrder = { 164, 1051 }, level = 68, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrderKey = "164,1051", statOrder = { 164, 1051 }, level = 75, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrderKey = "164,1051", statOrder = { 164, 1051 }, level = 83, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrderKey = "162,850", statOrder = { 162, 850 }, level = 68, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrderKey = "162,850", statOrder = { 162, 850 }, level = 75, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrderKey = "162,850", statOrder = { 162, 850 }, level = 80, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Remote Mine", "Place an additional Mine", statOrderKey = "157,2504", statOrder = { 157, 2504 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 150, 0, }, }, + ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Remote Mine", "Place an additional Mine", statOrderKey = "157,2504", statOrder = { 157, 2504 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 150, 0, }, }, + ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Remote Mine", "Place an additional Mine", statOrderKey = "157,2504", statOrder = { 157, 2504 }, level = 85, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 150, 0, }, }, ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Remote Mine", "(20-25)% increased Mine Damage", statOrderKey = "157,432", statOrder = { 157, 432 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Remote Mine", "(26-30)% increased Mine Damage", statOrderKey = "157,432", statOrder = { 157, 432 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Remote Mine", "(31-35)% increased Mine Damage", statOrderKey = "157,432", statOrder = { 157, 432 }, level = 80, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrderKey = "128,432", statOrder = { 128, 432 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrderKey = "128,432", statOrder = { 128, 432 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrderKey = "128,432", statOrder = { 128, 432 }, level = 80, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Chill", statOrderKey = "169,3595", statOrder = { 169, 3595 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Chill", statOrderKey = "169,3595", statOrder = { 169, 3595 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Chill", statOrderKey = "169,3595", statOrder = { 169, 3595 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Shock", statOrderKey = "176,4900", statOrder = { 176, 4900 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Shock", statOrderKey = "176,4900", statOrder = { 176, 4900 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Shock", statOrderKey = "176,4900", statOrder = { 176, 4900 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrderKey = "85,924", statOrder = { 85, 924 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrderKey = "85,924", statOrder = { 85, 924 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrderKey = "85,924", statOrder = { 85, 924 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrderKey = "86,942", statOrder = { 86, 942 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrderKey = "86,942", statOrder = { 86, 942 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrderKey = "86,942", statOrder = { 86, 942 }, level = 82, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrderKey = "1619", statOrder = { 1619 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "default", }, weightVal = { 400, 400, 0, }, }, - ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrderKey = "1619", statOrder = { 1619 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "default", }, weightVal = { 400, 400, 0, }, }, + ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Chill", statOrderKey = "169,3600", statOrder = { 169, 3600 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Chill", statOrderKey = "169,3600", statOrder = { 169, 3600 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Chill", statOrderKey = "169,3600", statOrder = { 169, 3600 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Shock", statOrderKey = "176,4912", statOrder = { 176, 4912 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Shock", statOrderKey = "176,4912", statOrder = { 176, 4912 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Shock", statOrderKey = "176,4912", statOrder = { 176, 4912 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrderKey = "85,928", statOrder = { 85, 928 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrderKey = "85,928", statOrder = { 85, 928 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrderKey = "85,928", statOrder = { 85, 928 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrderKey = "86,946", statOrder = { 86, 946 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrderKey = "86,946", statOrder = { 86, 946 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrderKey = "86,946", statOrder = { 86, 946 }, level = 82, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrderKey = "1623", statOrder = { 1623 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "default", }, weightVal = { 400, 400, 0, }, }, + ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrderKey = "1623", statOrder = { 1623 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "default", }, weightVal = { 400, 400, 0, }, }, ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Less Duration", statOrderKey = "110", statOrder = { 110 }, level = 68, group = "Supported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5) Mana Regenerated per second", statOrderKey = "712", statOrder = { 712 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(6-8) Mana Regenerated per second", statOrderKey = "712", statOrder = { 712 }, level = 80, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5) Mana Regenerated per second", statOrderKey = "714", statOrder = { 714 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(6-8) Mana Regenerated per second", statOrderKey = "714", statOrder = { 714 }, level = 80, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrderKey = "211", statOrder = { 211 }, level = 68, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, @@ -1754,39 +1754,39 @@ return { ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrderKey = "199", statOrder = { 199 }, level = 83, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Active Skill Gems", statOrderKey = "44", statOrder = { 44 }, level = 80, group = "IncreaseSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, }, ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to Level of Socketed Support Gems", statOrderKey = "43", statOrder = { 43 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, - ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "Eldritch", "(5-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1451", statOrder = { 1451 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "Eldritch", "(11-15)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1451", statOrder = { 1451 }, level = 84, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1452", statOrder = { 1452 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1452", statOrder = { 1452 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1453", statOrder = { 1453 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1453", statOrder = { 1453 }, level = 82, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "(15-22)% reduced Reflected Elemental Damage taken", statOrderKey = "1685", statOrder = { 1685 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0, }, }, - ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "(23-30)% reduced Reflected Elemental Damage taken", statOrderKey = "1685", statOrder = { 1685 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0, }, }, - ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "Eldritch", "(15-22)% reduced Reflected Physical Damage taken", statOrderKey = "1686", statOrder = { 1686 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0, }, }, - ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "Eldritch", "(23-30)% reduced Reflected Physical Damage taken", statOrderKey = "1686", statOrder = { 1686 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0, }, }, - ["MaximumLifeUber1"] = { type = "Prefix", affix = "Eldritch", "(5-8)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, - ["MaximumLifeUber2"] = { type = "Prefix", affix = "Eldritch", "(9-12)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, - ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrderKey = "1675", statOrder = { 1675 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, }, - ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Maximum Life on Kill", statOrderKey = "833", statOrder = { 833 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Maximum Life on Kill", statOrderKey = "833", statOrder = { 833 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Maximum Mana on Kill", statOrderKey = "835", statOrder = { 835 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Maximum Mana on Kill", statOrderKey = "835", statOrder = { 835 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Maximum Energy Shield on Kill", statOrderKey = "834", statOrder = { 834 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Maximum Energy Shield on Kill", statOrderKey = "834", statOrder = { 834 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrderKey = "1810", statOrder = { 1810 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrderKey = "1810", statOrder = { 1810 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrderKey = "1809", statOrder = { 1809 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrderKey = "1809", statOrder = { 1809 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrderKey = "1811", statOrder = { 1811 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrderKey = "1811", statOrder = { 1811 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "(1-1.5)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "(1.6-2)% of Life Regenerated per second", statOrderKey = "1012", statOrder = { 1012 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrderKey = "91,5054", statOrder = { 91, 5054 }, level = 68, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrderKey = "91,5054", statOrder = { 91, 5054 }, level = 85, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3374", statOrder = { 3374 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1-2)% to Critical Strike Chance", statOrderKey = "3374", statOrder = { 3374 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "4949", statOrder = { 4949 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(1-2)% to Critical Strike Chance ", statOrderKey = "4949", statOrder = { 4949 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, }, + ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "Eldritch", "(5-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "Eldritch", "(11-15)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 84, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1456", statOrder = { 1456 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1456", statOrder = { 1456 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1457", statOrder = { 1457 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1457", statOrder = { 1457 }, level = 82, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "(15-22)% reduced Reflected Elemental Damage taken", statOrderKey = "1689", statOrder = { 1689 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0, }, }, + ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "(23-30)% reduced Reflected Elemental Damage taken", statOrderKey = "1689", statOrder = { 1689 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0, }, }, + ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "Eldritch", "(15-22)% reduced Reflected Physical Damage taken", statOrderKey = "1690", statOrder = { 1690 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0, }, }, + ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "Eldritch", "(23-30)% reduced Reflected Physical Damage taken", statOrderKey = "1690", statOrder = { 1690 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0, }, }, + ["MaximumLifeUber1"] = { type = "Prefix", affix = "Eldritch", "(5-8)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, + ["MaximumLifeUber2"] = { type = "Prefix", affix = "Eldritch", "(9-12)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, + ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrderKey = "1679", statOrder = { 1679 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, }, + ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Maximum Life on Kill", statOrderKey = "837", statOrder = { 837 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Maximum Life on Kill", statOrderKey = "837", statOrder = { 837 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Maximum Mana on Kill", statOrderKey = "839", statOrder = { 839 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Maximum Mana on Kill", statOrderKey = "839", statOrder = { 839 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Maximum Energy Shield on Kill", statOrderKey = "838", statOrder = { 838 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Maximum Energy Shield on Kill", statOrderKey = "838", statOrder = { 838 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrderKey = "1814", statOrder = { 1814 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, + ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrderKey = "1814", statOrder = { 1814 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, + ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrderKey = "1813", statOrder = { 1813 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, + ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrderKey = "1813", statOrder = { 1813 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, + ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrderKey = "1815", statOrder = { 1815 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrderKey = "1815", statOrder = { 1815 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "(1-1.5)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "(1.6-2)% of Life Regenerated per second", statOrderKey = "1016", statOrder = { 1016 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrderKey = "91,5066", statOrder = { 91, 5066 }, level = 68, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrderKey = "91,5066", statOrder = { 91, 5066 }, level = 85, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3379", statOrder = { 3379 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1-2)% to Critical Strike Chance", statOrderKey = "3379", statOrder = { 3379 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "4961", statOrder = { 4961 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(1-2)% to Critical Strike Chance ", statOrderKey = "4961", statOrder = { 4961 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, }, ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrderKey = "249", statOrder = { 249 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrderKey = "251", statOrder = { 251 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrderKey = "250", statOrder = { 250 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, @@ -1797,612 +1797,613 @@ return { ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrderKey = "242", statOrder = { 242 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrderKey = "245", statOrder = { 245 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrderKey = "244", statOrder = { 244 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrderKey = "1546", statOrder = { 1546 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrderKey = "1546", statOrder = { 1546 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrderKey = "771", statOrder = { 771 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrderKey = "769", statOrder = { 769 }, level = 68, group = "PhysicalDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrderKey = "1550", statOrder = { 1550 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrderKey = "1550", statOrder = { 1550 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrderKey = "777", statOrder = { 777 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrderKey = "771", statOrder = { 771 }, level = 68, group = "PhysicalDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(25-35)% Chance to Block Spell Damage", statOrderKey = "410", statOrder = { 410 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0, }, }, ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(36-40)% Chance to Block Spell Damage", statOrderKey = "410", statOrder = { 410 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0, }, }, ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrderKey = "2055", statOrder = { 2055 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrderKey = "2055", statOrder = { 2055 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrderKey = "2055", statOrder = { 2055 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrderKey = "2055", statOrder = { 2055 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 400, 0, }, }, - ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "Eldritch", "(7-9)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0, }, }, - ["AreaOfEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(10-12)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0, }, }, - ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "Eldritch", "(13-15)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["AdditionalPierceUber1"] = { type = "Prefix", affix = "Eldritch", "Projectiles Pierce an additional Target", statOrderKey = "870", statOrder = { 870 }, level = 68, group = "Pierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1326", statOrder = { 1326 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrderKey = "717", statOrder = { 717 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (10-15)% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "Eldritch", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-15)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1003", statOrder = { 1003 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1003", statOrder = { 1003 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (7-13)% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "4753", statOrder = { 4753 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2558", statOrder = { 2558 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2558", statOrder = { 2558 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumZombiesUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Zombies", statOrderKey = "1227", statOrder = { 1227 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Skeletons", statOrderKey = "1229", statOrder = { 1229 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrderKey = "1062", statOrder = { 1062 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "Eldritch", "(15-25)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "817", statOrder = { 817 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrderKey = "1951", statOrder = { 1951 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "1951", statOrder = { 1951 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 15 Strength", statOrderKey = "3692", statOrder = { 3692 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrderKey = "3690", statOrder = { 3690 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrderKey = "3691", statOrder = { 3691 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% reduced Effect of Curses on you", statOrderKey = "1239", statOrder = { 1239 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% reduced Effect of Curses on you", statOrderKey = "1239", statOrder = { 1239 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrderKey = "1054", statOrder = { 1054 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrderKey = "1054", statOrder = { 1054 }, level = 75, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrderKey = "1054", statOrder = { 1054 }, level = 83, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrderKey = "1070", statOrder = { 1070 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrderKey = "1070", statOrder = { 1070 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrderKey = "1070", statOrder = { 1070 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 75, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 82, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "(10-15)% reduced Reflected Elemental Damage taken", statOrderKey = "1685", statOrder = { 1685 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% reduced Reflected Elemental Damage taken", statOrderKey = "1685", statOrder = { 1685 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "Eldritch", "(10-15)% reduced Reflected Physical Damage taken", statOrderKey = "1686", statOrder = { 1686 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "Eldritch", "(16-20)% reduced Reflected Physical Damage taken", statOrderKey = "1686", statOrder = { 1686 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 80, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0, }, }, - ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0, }, }, - ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrderKey = "529", statOrder = { 529 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrderKey = "560", statOrder = { 560 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrderKey = "560", statOrder = { 560 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrderKey = "727", statOrder = { 727 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0, }, }, - ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "Eldritch", "+(10-15) Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 68, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "Eldritch", "+(16-20) Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 75, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "Eldritch", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "+(8-12) Life gained for each Enemy hit by your Spells", statOrderKey = "823", statOrder = { 823 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "+(13-15) Life gained for each Enemy hit by your Spells", statOrderKey = "823", statOrder = { 823 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy Hit by your Spells", statOrderKey = "4260", statOrder = { 4260 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrderKey = "585", statOrder = { 585 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrderKey = "585", statOrder = { 585 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrderKey = "585", statOrder = { 585 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 8 Assassin's Mark on Hit", statOrderKey = "1516", statOrder = { 1516 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 12 Assassin's Mark on Hit", statOrderKey = "1516", statOrder = { 1516 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Poacher's Mark on Hit", statOrderKey = "1523", statOrder = { 1523 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Poacher's Mark on Hit", statOrderKey = "1523", statOrder = { 1523 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Warlord's Mark on Hit", statOrderKey = "1525", statOrder = { 1525 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Warlord's Mark on Hit", statOrderKey = "1525", statOrder = { 1525 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, + ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrderKey = "2059", statOrder = { 2059 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrderKey = "2059", statOrder = { 2059 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, + ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrderKey = "2059", statOrder = { 2059 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrderKey = "2059", statOrder = { 2059 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 400, 0, }, }, + ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "Eldritch", "(7-9)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0, }, }, + ["AreaOfEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(10-12)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0, }, }, + ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "Eldritch", "(13-15)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0, }, }, + ["AdditionalPierceUber1"] = { type = "Prefix", affix = "Eldritch", "Projectiles Pierce an additional Target", statOrderKey = "874", statOrder = { 874 }, level = 68, group = "Pierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1330", statOrder = { 1330 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 800, 800, 0, }, }, + ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrderKey = "719", statOrder = { 719 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (10-15)% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "Eldritch", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-15)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (7-13)% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "4765", statOrder = { 4765 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2563", statOrder = { 2563 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2563", statOrder = { 2563 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumZombiesUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Zombies", statOrderKey = "1231", statOrder = { 1231 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Skeletons", statOrderKey = "1233", statOrder = { 1233 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrderKey = "1066", statOrder = { 1066 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "Eldritch", "(180-300)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "820", statOrder = { 820 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0, }, }, + ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "Eldritch", "(15-25)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "819", statOrder = { 819 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrderKey = "1955", statOrder = { 1955 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "1955", statOrder = { 1955 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 15 Strength", statOrderKey = "3697", statOrder = { 3697 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, + ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrderKey = "3695", statOrder = { 3695 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrderKey = "3696", statOrder = { 3696 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% reduced Effect of Curses on you", statOrderKey = "1243", statOrder = { 1243 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% reduced Effect of Curses on you", statOrderKey = "1243", statOrder = { 1243 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrderKey = "1058", statOrder = { 1058 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrderKey = "1058", statOrder = { 1058 }, level = 75, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrderKey = "1058", statOrder = { 1058 }, level = 83, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrderKey = "1074", statOrder = { 1074 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrderKey = "1074", statOrder = { 1074 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrderKey = "1074", statOrder = { 1074 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 75, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 82, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, + ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "(10-15)% reduced Reflected Elemental Damage taken", statOrderKey = "1689", statOrder = { 1689 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% reduced Reflected Elemental Damage taken", statOrderKey = "1689", statOrder = { 1689 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "Eldritch", "(10-15)% reduced Reflected Physical Damage taken", statOrderKey = "1690", statOrder = { 1690 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "Eldritch", "(16-20)% reduced Reflected Physical Damage taken", statOrderKey = "1690", statOrder = { 1690 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 80, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0, }, }, + ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrderKey = "530", statOrder = { 530 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0, }, }, + ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrderKey = "531", statOrder = { 531 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, + ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrderKey = "531", statOrder = { 531 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, + ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, + ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrderKey = "562", statOrder = { 562 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, + ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrderKey = "729", statOrder = { 729 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0, }, }, + ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "Eldritch", "+(10-15) Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 68, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "Eldritch", "+(16-20) Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 75, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, + ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "832", statOrder = { 832 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "Eldritch", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "832", statOrder = { 832 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "+(8-12) Life gained for each Enemy hit by your Spells", statOrderKey = "827", statOrder = { 827 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "+(13-15) Life gained for each Enemy hit by your Spells", statOrderKey = "827", statOrder = { 827 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy Hit by your Spells", statOrderKey = "4265", statOrder = { 4265 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrderKey = "587", statOrder = { 587 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrderKey = "587", statOrder = { 587 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrderKey = "587", statOrder = { 587 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 8 Assassin's Mark on Hit", statOrderKey = "1520", statOrder = { 1520 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0, }, }, + ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 12 Assassin's Mark on Hit", statOrderKey = "1520", statOrder = { 1520 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0, }, }, + ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Poacher's Mark on Hit", statOrderKey = "1527", statOrder = { 1527 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, + ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Poacher's Mark on Hit", statOrderKey = "1527", statOrder = { 1527 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, + ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Warlord's Mark on Hit", statOrderKey = "1529", statOrder = { 1529 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, + ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Warlord's Mark on Hit", statOrderKey = "1529", statOrder = { 1529 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrderKey = "279", statOrder = { 279 }, level = 68, group = "GrantedSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrderKey = "280", statOrder = { 280 }, level = 68, group = "GrantedSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrderKey = "281", statOrder = { 281 }, level = 68, group = "GrantedSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attacks", statOrderKey = "3547", statOrder = { 3547 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attacks", statOrderKey = "3547", statOrder = { 3547 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to Ignite", "Adds (9-12) to (27-30) Fire Damage against Ignited Enemies", statOrderKey = "1099,3940", statOrder = { 1099, 3940 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to Ignite", "Adds (13-16) to (33-36) Fire Damage against Ignited Enemies", statOrderKey = "1099,3940", statOrder = { 1099, 3940 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Freeze", "Adds (9-12) to (27-30) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1101,3939", statOrder = { 1101, 3939 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Freeze", "Adds (13-16) to (33-36) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1101,3939", statOrder = { 1101, 3939 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Shock", "Adds (3-7) to (34-38) Lightning Damage against Shocked Enemies", statOrderKey = "1105,3942", statOrder = { 1105, 3942 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Shock", "Adds (6-10) to (41-45) Lightning Damage against Shocked Enemies", statOrderKey = "1105,3942", statOrder = { 1105, 3942 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attacks", statOrderKey = "1293", statOrder = { 1293 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attacks", statOrderKey = "1293", statOrder = { 1293 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3450", statOrder = { 3450 }, level = 75, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Speed", statOrderKey = "3450", statOrder = { 3450 }, level = 84, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "Eldritch", "(4-7)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "Eldritch", "(8-10)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 68, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 75, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["FlaskEffectUber1"] = { type = "Prefix", affix = "Eldritch", "(4-7)% increased Effect of Flasks on you", statOrderKey = "1711", statOrder = { 1711 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["FlaskEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(8-10)% increased Effect of Flasks on you", statOrderKey = "1711", statOrder = { 1711 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrderKey = "660", statOrder = { 660 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "660", statOrder = { 660 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% increased Life Recovery rate", statOrderKey = "1941", statOrder = { 1941 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Life Recovery rate", statOrderKey = "1941", statOrder = { 1941 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Energy Shield Recovery rate", statOrderKey = "1943", statOrder = { 1943 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Energy Shield Recovery rate", statOrderKey = "1943", statOrder = { 1943 }, level = 75, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Mana Recovery rate", statOrderKey = "1942", statOrder = { 1942 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Mana Recovery rate", statOrderKey = "1942", statOrder = { 1942 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "Eldritch", "(6-10)% chance for your Flasks to not consume Charges", statOrderKey = "3159", statOrder = { 3159 }, level = 82, group = "FlaskChargesUsed", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrderKey = "2261", statOrder = { 2261 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrderKey = "2261", statOrder = { 2261 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrderKey = "2149", statOrder = { 2149 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "Eldritch", "(8-12)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "3550", statOrder = { 3550 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attacks", statOrderKey = "3552", statOrder = { 3552 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attacks", statOrderKey = "3552", statOrder = { 3552 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to Ignite", "Adds (9-12) to (27-30) Fire Damage against Ignited Enemies", statOrderKey = "1103,3945", statOrder = { 1103, 3945 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to Ignite", "Adds (13-16) to (33-36) Fire Damage against Ignited Enemies", statOrderKey = "1103,3945", statOrder = { 1103, 3945 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Freeze", "Adds (9-12) to (27-30) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1105,3944", statOrder = { 1105, 3944 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Freeze", "Adds (13-16) to (33-36) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1105,3944", statOrder = { 1105, 3944 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Shock", "Adds (3-7) to (34-38) Lightning Damage against Shocked Enemies", statOrderKey = "1109,3947", statOrder = { 1109, 3947 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Shock", "Adds (6-10) to (41-45) Lightning Damage against Shocked Enemies", statOrderKey = "1109,3947", statOrder = { 1109, 3947 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attacks", statOrderKey = "1297", statOrder = { 1297 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attacks", statOrderKey = "1297", statOrder = { 1297 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3455", statOrder = { 3455 }, level = 75, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Speed", statOrderKey = "3455", statOrder = { 3455 }, level = 84, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "Eldritch", "(4-7)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, + ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "Eldritch", "(8-10)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, + ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 68, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, + ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 75, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, + ["FlaskEffectUber1"] = { type = "Prefix", affix = "Eldritch", "(4-7)% increased Effect of Flasks on you", statOrderKey = "1715", statOrder = { 1715 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, + ["FlaskEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(8-10)% increased Effect of Flasks on you", statOrderKey = "1715", statOrder = { 1715 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, + ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrderKey = "662", statOrder = { 662 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "662", statOrder = { 662 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% increased Life Recovery rate", statOrderKey = "1945", statOrder = { 1945 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Life Recovery rate", statOrderKey = "1945", statOrder = { 1945 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Energy Shield Recovery rate", statOrderKey = "1947", statOrder = { 1947 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Energy Shield Recovery rate", statOrderKey = "1947", statOrder = { 1947 }, level = 75, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Mana Recovery rate", statOrderKey = "1946", statOrder = { 1946 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Mana Recovery rate", statOrderKey = "1946", statOrder = { 1946 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "Eldritch", "(6-10)% chance for your Flasks to not consume Charges", statOrderKey = "3164", statOrder = { 3164 }, level = 82, group = "FlaskChargesUsed", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrderKey = "2266", statOrder = { 2266 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrderKey = "2266", statOrder = { 2266 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, + ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrderKey = "2154", statOrder = { 2154 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, + ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "Eldritch", "(8-12)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "3555", statOrder = { 3555 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "Eldritch", "Grants Level 22 Enduring Cry Skill", statOrderKey = "278", statOrder = { 278 }, level = 68, group = "GrantedSkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "Eldritch", "Grants Level 22 Rallying Cry Skill", statOrderKey = "284", statOrder = { 284 }, level = 68, group = "GrantedSkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Abyssal Cry Skill", statOrderKey = "272", statOrder = { 272 }, level = 68, group = "GrantedSkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrderKey = "4882", statOrder = { 4882 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrderKey = "4881", statOrder = { 4881 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrderKey = "4884", statOrder = { 4884 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrderKey = "2260", statOrder = { 2260 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrderKey = "3522", statOrder = { 3522 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrderKey = "4685", statOrder = { 4685 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrderKey = "4685", statOrder = { 4685 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrderKey = "4685", statOrder = { 4685 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "4829", statOrder = { 4829 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "4829", statOrder = { 4829 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "4829", statOrder = { 4829 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrderKey = "4957", statOrder = { 4957 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrderKey = "4957", statOrder = { 4957 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrderKey = "4957", statOrder = { 4957 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrderKey = "873", statOrder = { 873 }, level = 80, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 400, 0, }, }, - ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Damage with Poison", "15% chance to Poison on Hit", statOrderKey = "2132,2137", statOrder = { 2132, 2137 }, level = 68, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrderKey = "2132,2137", statOrder = { 2132, 2137 }, level = 75, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrderKey = "1490,2133", statOrder = { 1490, 2133 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrderKey = "1490,2133", statOrder = { 1490, 2133 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrderKey = "4256", statOrder = { 4256 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrderKey = "4256", statOrder = { 4256 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2416", statOrder = { 2416 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2416", statOrder = { 2416 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2416", statOrder = { 2416 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "Eldritch", "3 to 6 Cold Damage per Frenzy Charge", statOrderKey = "3202", statOrder = { 3202 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0, }, }, - ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "Eldritch", "+1% to maximum Fire Resistance", statOrderKey = "736", statOrder = { 736 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "Eldritch", "+2% to maximum Fire Resistance", statOrderKey = "736", statOrder = { 736 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrderKey = "740", statOrder = { 740 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrderKey = "740", statOrder = { 740 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrderKey = "743", statOrder = { 743 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrderKey = "743", statOrder = { 743 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrderKey = "748", statOrder = { 748 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrderKey = "4894", statOrder = { 4894 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, + ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrderKey = "4893", statOrder = { 4893 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, + ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrderKey = "4896", statOrder = { 4896 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, + ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrderKey = "2265", statOrder = { 2265 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrderKey = "3527", statOrder = { 3527 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrderKey = "4697", statOrder = { 4697 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrderKey = "4697", statOrder = { 4697 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrderKey = "4697", statOrder = { 4697 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "4841", statOrder = { 4841 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "4841", statOrder = { 4841 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "4841", statOrder = { 4841 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrderKey = "4969", statOrder = { 4969 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrderKey = "4969", statOrder = { 4969 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrderKey = "4969", statOrder = { 4969 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, + ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrderKey = "877", statOrder = { 877 }, level = 80, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 400, 0, }, }, + ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Damage with Poison", "15% chance to Poison on Hit", statOrderKey = "2137,2142", statOrder = { 2137, 2142 }, level = 68, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, + ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrderKey = "2137,2142", statOrder = { 2137, 2142 }, level = 75, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, + ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrderKey = "1494,2138", statOrder = { 1494, 2138 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrderKey = "1494,2138", statOrder = { 1494, 2138 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0, }, }, + ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrderKey = "4261", statOrder = { 4261 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrderKey = "4261", statOrder = { 4261 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2421", statOrder = { 2421 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2421", statOrder = { 2421 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2421", statOrder = { 2421 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, + ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "Eldritch", "3 to 6 Cold Damage per Frenzy Charge", statOrderKey = "3207", statOrder = { 3207 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0, }, }, + ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, + ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "Eldritch", "+1% to maximum Fire Resistance", statOrderKey = "738", statOrder = { 738 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "Eldritch", "+2% to maximum Fire Resistance", statOrderKey = "738", statOrder = { 738 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrderKey = "742", statOrder = { 742 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrderKey = "742", statOrder = { 742 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrderKey = "745", statOrder = { 745 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrderKey = "745", statOrder = { 745 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrderKey = "750", statOrder = { 750 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrderKey = "63", statOrder = { 63 }, level = 68, group = "SupportedByTrigger", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "Eldritch", "(3-6)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "Eldritch", "(3-6)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 10% reduced Mana Reservation", statOrderKey = "183", statOrder = { 183 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 15% reduced Mana Reservation", statOrderKey = "183", statOrder = { 183 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(30-40)% Chance to Block Spell Damage", statOrderKey = "410", statOrder = { 410 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0, }, }, ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(41-50)% Chance to Block Spell Damage", statOrderKey = "410", statOrder = { 410 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0, }, }, ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrderKey = "414", statOrder = { 414 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "Eldritch", "+(500-650) Armour if you've Blocked Recently", statOrderKey = "3292", statOrder = { 3292 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "Eldritch", "+(651-800) Armour if you've Blocked Recently", statOrderKey = "3292", statOrder = { 3292 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3310", statOrder = { 3310 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3310", statOrder = { 3310 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrderKey = "3923", statOrder = { 3923 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits if you have Blocked Recently", statOrderKey = "3744", statOrder = { 3744 }, level = 68, group = "ChanceToDodgeIfBlockedRecently", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 1% Chance to Block Attack Damage", statOrderKey = "3693", statOrder = { 3693 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "3593", statOrder = { 3593 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "3593", statOrder = { 3593 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "4899", statOrder = { 4899 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "4899", statOrder = { 4899 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your Maximum Life when you Block", statOrderKey = "2030", statOrder = { 2030 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (4-8)% of your maximum Mana when you Block", statOrderKey = "4265", statOrder = { 4265 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrderKey = "1470", statOrder = { 1470 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumTotemUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Summoned Totems", statOrderKey = "1311", statOrder = { 1311 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrderKey = "138,460", statOrder = { 138, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrderKey = "138,460", statOrder = { 138, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrderKey = "138,460", statOrder = { 138, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrderKey = "62,460", statOrder = { 62, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrderKey = "62,460", statOrder = { 62, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrderKey = "62,460", statOrder = { 62, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrderKey = "132,460", statOrder = { 132, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrderKey = "132,460", statOrder = { 132, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrderKey = "132,460", statOrder = { 132, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 100, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrderKey = "111,460", statOrder = { 111, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrderKey = "111,460", statOrder = { 111, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrderKey = "111,460", statOrder = { 111, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Onslaught", "(101-115)% increased Physical Damage", statOrderKey = "100,460", statOrder = { 100, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Onslaught", "(116-126)% increased Physical Damage", statOrderKey = "100,460", statOrder = { 100, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Onslaught", "(127-134)% increased Physical Damage", statOrderKey = "100,460", statOrder = { 100, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrderKey = "181,460", statOrder = { 181, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrderKey = "181,460", statOrder = { 181, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrderKey = "181,460", statOrder = { 181, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrderKey = "156,460", statOrder = { 156, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrderKey = "156,460", statOrder = { 156, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrderKey = "156,460", statOrder = { 156, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrderKey = "106,460", statOrder = { 106, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrderKey = "106,460", statOrder = { 106, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrderKey = "106,460", statOrder = { 106, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrderKey = "89,460", statOrder = { 89, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrderKey = "89,460", statOrder = { 89, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrderKey = "89,460", statOrder = { 89, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "148,460", statOrder = { 148, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "148,460", statOrder = { 148, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "148,460", statOrder = { 148, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "102,460", statOrder = { 102, 460 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "102,460", statOrder = { 102, 460 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "102,460", statOrder = { 102, 460 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrderKey = "141,1107", statOrder = { 141, 1107 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrderKey = "141,1107", statOrder = { 141, 1107 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrderKey = "141,1107", statOrder = { 141, 1107 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrderKey = "115,945", statOrder = { 115, 945 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrderKey = "115,945", statOrder = { 115, 945 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrderKey = "115,945", statOrder = { 115, 945 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrderKey = "147,564", statOrder = { 147, 564 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrderKey = "147,564", statOrder = { 147, 564 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrderKey = "139,564", statOrder = { 139, 564 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrderKey = "139,564", statOrder = { 139, 564 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Onslaught", "(8-10)% increased Attack Speed", statOrderKey = "100,564", statOrder = { 100, 564 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Onslaught", "(11-12)% increased Attack Speed", statOrderKey = "100,564", statOrder = { 100, 564 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrderKey = "139,564", statOrder = { 139, 564 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrderKey = "139,564", statOrder = { 139, 564 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "564,3536", statOrder = { 564, 3536 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "564,3536", statOrder = { 564, 3536 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "564,3411", statOrder = { 564, 3411 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "564,3411", statOrder = { 564, 3411 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "564,3536", statOrder = { 564, 3536 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "564,3536", statOrder = { 564, 3536 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "564,3411", statOrder = { 564, 3411 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "564,3411", statOrder = { 564, 3411 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrderKey = "87,613", statOrder = { 87, 613 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrderKey = "87,613", statOrder = { 87, 613 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "613,3647", statOrder = { 613, 3647 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "613,3647", statOrder = { 613, 3647 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrderKey = "613,3661", statOrder = { 613, 3661 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrderKey = "613,3661", statOrder = { 613, 3661 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrderKey = "150,637", statOrder = { 150, 637 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrderKey = "150,637", statOrder = { 150, 637 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrderKey = "637,898", statOrder = { 637, 898 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0, }, }, - ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrderKey = "637,898", statOrder = { 637, 898 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0, }, }, - ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrderKey = "152,3767", statOrder = { 152, 3767 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrderKey = "152,3767", statOrder = { 152, 3767 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrderKey = "94,4160", statOrder = { 94, 4160 }, level = 68, group = "LocalChanceToMaim", weightKey = { "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrderKey = "94,4160", statOrder = { 94, 4160 }, level = 75, group = "LocalChanceToMaim", weightKey = { "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "15% chance to Poison on Hit", statOrderKey = "105,4169", statOrder = { 105, 4169 }, level = 68, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "20% chance to Poison on Hit", statOrderKey = "105,4169", statOrder = { 105, 4169 }, level = 75, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrderKey = "67,1484", statOrder = { 67, 1484 }, level = 68, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrderKey = "67,1484", statOrder = { 67, 1484 }, level = 75, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1001", statOrder = { 1001 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1002", statOrder = { 1002 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1003", statOrder = { 1003 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1003", statOrder = { 1003 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1003", statOrder = { 1003 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2342", statOrder = { 2342 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2342", statOrder = { 2342 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2342", statOrder = { 2342 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2341", statOrder = { 2341 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2341", statOrder = { 2341 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2341", statOrder = { 2341 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "Eldritch", "+(500-650) Armour if you've Blocked Recently", statOrderKey = "3297", statOrder = { 3297 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "Eldritch", "+(651-800) Armour if you've Blocked Recently", statOrderKey = "3297", statOrder = { 3297 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3315", statOrder = { 3315 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3315", statOrder = { 3315 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrderKey = "3928", statOrder = { 3928 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits if you have Blocked Recently", statOrderKey = "3749", statOrder = { 3749 }, level = 68, group = "ChanceToDodgeIfBlockedRecently", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 1% Chance to Block Attack Damage", statOrderKey = "3698", statOrder = { 3698 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "3598", statOrder = { 3598 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "3598", statOrder = { 3598 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "4911", statOrder = { 4911 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "4911", statOrder = { 4911 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your Maximum Life when you Block", statOrderKey = "2034", statOrder = { 2034 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (4-8)% of your maximum Mana when you Block", statOrderKey = "4270", statOrder = { 4270 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrderKey = "1474", statOrder = { 1474 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrderKey = "1315", statOrder = { 1315 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrderKey = "138,462", statOrder = { 138, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrderKey = "138,462", statOrder = { 138, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrderKey = "138,462", statOrder = { 138, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrderKey = "62,462", statOrder = { 62, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrderKey = "62,462", statOrder = { 62, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrderKey = "62,462", statOrder = { 62, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrderKey = "132,462", statOrder = { 132, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrderKey = "132,462", statOrder = { 132, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrderKey = "132,462", statOrder = { 132, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 100, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrderKey = "111,462", statOrder = { 111, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrderKey = "111,462", statOrder = { 111, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrderKey = "111,462", statOrder = { 111, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Onslaught", "(101-115)% increased Physical Damage", statOrderKey = "100,462", statOrder = { 100, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Onslaught", "(116-126)% increased Physical Damage", statOrderKey = "100,462", statOrder = { 100, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Onslaught", "(127-134)% increased Physical Damage", statOrderKey = "100,462", statOrder = { 100, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrderKey = "181,462", statOrder = { 181, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrderKey = "181,462", statOrder = { 181, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrderKey = "181,462", statOrder = { 181, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrderKey = "156,462", statOrder = { 156, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrderKey = "156,462", statOrder = { 156, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrderKey = "156,462", statOrder = { 156, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrderKey = "106,462", statOrder = { 106, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrderKey = "106,462", statOrder = { 106, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrderKey = "106,462", statOrder = { 106, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrderKey = "89,462", statOrder = { 89, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrderKey = "89,462", statOrder = { 89, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrderKey = "89,462", statOrder = { 89, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "148,462", statOrder = { 148, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "148,462", statOrder = { 148, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "148,462", statOrder = { 148, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "102,462", statOrder = { 102, 462 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "102,462", statOrder = { 102, 462 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "102,462", statOrder = { 102, 462 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, + ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrderKey = "141,1111", statOrder = { 141, 1111 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrderKey = "141,1111", statOrder = { 141, 1111 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrderKey = "141,1111", statOrder = { 141, 1111 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrderKey = "115,949", statOrder = { 115, 949 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrderKey = "115,949", statOrder = { 115, 949 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrderKey = "115,949", statOrder = { 115, 949 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrderKey = "147,566", statOrder = { 147, 566 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrderKey = "147,566", statOrder = { 147, 566 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrderKey = "139,566", statOrder = { 139, 566 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrderKey = "139,566", statOrder = { 139, 566 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Onslaught", "(8-10)% increased Attack Speed", statOrderKey = "100,566", statOrder = { 100, 566 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Onslaught", "(11-12)% increased Attack Speed", statOrderKey = "100,566", statOrder = { 100, 566 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrderKey = "139,566", statOrder = { 139, 566 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrderKey = "139,566", statOrder = { 139, 566 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "566,3541", statOrder = { 566, 3541 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "566,3541", statOrder = { 566, 3541 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "566,3416", statOrder = { 566, 3416 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "566,3416", statOrder = { 566, 3416 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "566,3541", statOrder = { 566, 3541 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "20% chance to deal Double Damage", statOrderKey = "566,3541", statOrder = { 566, 3541 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "566,3416", statOrder = { 566, 3416 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "566,3416", statOrder = { 566, 3416 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrderKey = "87,615", statOrder = { 87, 615 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrderKey = "87,615", statOrder = { 87, 615 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "615,3652", statOrder = { 615, 3652 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "615,3652", statOrder = { 615, 3652 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrderKey = "615,3666", statOrder = { 615, 3666 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrderKey = "615,3666", statOrder = { 615, 3666 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrderKey = "150,639", statOrder = { 150, 639 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrderKey = "150,639", statOrder = { 150, 639 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrderKey = "639,902", statOrder = { 639, 902 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0, }, }, + ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrderKey = "639,902", statOrder = { 639, 902 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0, }, }, + ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrderKey = "152,3772", statOrder = { 152, 3772 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrderKey = "152,3772", statOrder = { 152, 3772 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, + ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrderKey = "94,4165", statOrder = { 94, 4165 }, level = 68, group = "LocalChanceToMaim", weightKey = { "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrderKey = "94,4165", statOrder = { 94, 4165 }, level = 75, group = "LocalChanceToMaim", weightKey = { "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "15% chance to Poison on Hit", statOrderKey = "105,4174", statOrder = { 105, 4174 }, level = 68, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "20% chance to Poison on Hit", statOrderKey = "105,4174", statOrder = { 105, 4174 }, level = 75, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrderKey = "67,1488", statOrder = { 67, 1488 }, level = 68, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrderKey = "67,1488", statOrder = { 67, 1488 }, level = 75, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1005", statOrder = { 1005 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1006", statOrder = { 1006 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2347", statOrder = { 2347 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2347", statOrder = { 2347 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2347", statOrder = { 2347 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2346", statOrder = { 2346 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2346", statOrder = { 2346 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2346", statOrder = { 2346 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "415", statOrder = { 415 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "415", statOrder = { 415 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "415", statOrder = { 415 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "478", statOrder = { 478 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "478", statOrder = { 478 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "478", statOrder = { 478 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrderKey = "1951", statOrder = { 1951 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "1951", statOrder = { 1951 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "1951", statOrder = { 1951 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1027", statOrder = { 1027 }, 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", "wand_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1027", statOrder = { 1027 }, 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", "wand_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1027", statOrder = { 1027 }, 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", "wand_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3405", statOrder = { 3405 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3405", statOrder = { 3405 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3425", statOrder = { 3425 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3425", statOrder = { 3425 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3407", statOrder = { 3407 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3407", statOrder = { 3407 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "staff_shaper", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "480", statOrder = { 480 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "480", statOrder = { 480 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "480", statOrder = { 480 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrderKey = "1955", statOrder = { 1955 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "1955", statOrder = { 1955 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "1955", statOrder = { 1955 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1031", statOrder = { 1031 }, 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", "wand_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1031", statOrder = { 1031 }, 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", "wand_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1031", statOrder = { 1031 }, 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", "wand_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3410", statOrder = { 3410 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3410", statOrder = { 3410 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3430", statOrder = { 3430 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3430", statOrder = { 3430 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow_shaper", "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3412", statOrder = { 3412 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, + ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3412", statOrder = { 3412 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "staff_shaper", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrderKey = "142", statOrder = { 142 }, level = 68, group = "SupportedByTrigger", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 350, 350, 350, 0, }, }, ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrderKey = "142", statOrder = { 142 }, level = 75, group = "SupportedByTrigger", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 350, 350, 350, 0, }, }, ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrderKey = "64", statOrder = { 64 }, level = 68, group = "SupportedByTrigger", weightKey = { "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "default", }, weightVal = { 250, 250, 250, 250, 0, }, }, ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrderKey = "64", statOrder = { 64 }, level = 75, group = "SupportedByTrigger", weightKey = { "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "default", }, weightVal = { 250, 250, 250, 250, 0, }, }, ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrderKey = "65", statOrder = { 65 }, level = 68, group = "SupportedByTrigger", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0, }, }, ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrderKey = "65", statOrder = { 65 }, level = 75, group = "SupportedByTrigger", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0, }, }, - ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrderKey = "1111", statOrder = { 1111 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+2 to Weapon range", statOrderKey = "1712", statOrder = { 1712 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrderKey = "876", statOrder = { 876 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Bow Attacks fire an additional Arrow", statOrderKey = "873", statOrder = { 873 }, level = 82, group = "AdditionalArrows", weightKey = { "bow_elder", "default", }, weightVal = { 500, 0, }, }, - ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrderKey = "870", statOrder = { 870 }, level = 68, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrderKey = "870", statOrder = { 870 }, level = 75, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrderKey = "180,452", statOrder = { 180, 452 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrderKey = "180,452", statOrder = { 180, 452 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrderKey = "180,452", statOrder = { 180, 452 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 100, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrderKey = "73,452", statOrder = { 73, 452 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrderKey = "73,452", statOrder = { 73, 452 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrderKey = "73,452", statOrder = { 73, 452 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 100, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrderKey = "58,452", statOrder = { 58, 452 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrderKey = "58,452", statOrder = { 58, 452 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrderKey = "58,452", statOrder = { 58, 452 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 100, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Reduced Mana", "(67-78)% increased Spell Damage", statOrderKey = "154,452", statOrder = { 154, 452 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Reduced Mana", "(79-83)% increased Spell Damage", statOrderKey = "154,452", statOrder = { 154, 452 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Reduced Mana", "(84-87)% increased Spell Damage", statOrderKey = "154,452", statOrder = { 154, 452 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 100, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrderKey = "106,452", statOrder = { 106, 452 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrderKey = "106,452", statOrder = { 106, 452 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrderKey = "106,452", statOrder = { 106, 452 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 100, 0, }, tags = { "has_caster_mod", }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrderKey = "74,1053", statOrder = { 74, 1053 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 400, 0, }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrderKey = "74,1053", statOrder = { 74, 1053 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 0, }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrderKey = "74,1053", statOrder = { 74, 1053 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrderKey = "80,516", statOrder = { 80, 516 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 400, 400, 0, }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrderKey = "80,516", statOrder = { 80, 516 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 200, 200, 0, }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrderKey = "80,516", statOrder = { 80, 516 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 100, 100, 0, }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrderKey = "171,523", statOrder = { 171, 523 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 0, }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrderKey = "171,523", statOrder = { 171, 523 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0, }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrderKey = "171,523", statOrder = { 171, 523 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 0, }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrderKey = "93,532", statOrder = { 93, 532 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrderKey = "93,532", statOrder = { 93, 532 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrderKey = "93,532", statOrder = { 93, 532 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrderKey = "99,597", statOrder = { 99, 597 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrderKey = "99,597", statOrder = { 99, 597 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrderKey = "159,597", statOrder = { 159, 597 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrderKey = "159,597", statOrder = { 159, 597 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "597,956", statOrder = { 597, 956 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "597,956", statOrder = { 597, 956 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "597,3523", statOrder = { 597, 3523 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "597,3523", statOrder = { 597, 3523 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Critical Strike Chance for Spells", statOrderKey = "87,608", statOrder = { 87, 608 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Critical Strike Chance for Spells", statOrderKey = "87,608", statOrder = { 87, 608 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "608,898", statOrder = { 608, 898 }, level = 68, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "608,898", statOrder = { 608, 898 }, level = 75, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "136,1770", statOrder = { 136, 1770 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "136,1770", statOrder = { 136, 1770 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "120,1770", statOrder = { 120, 1770 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "120,1770", statOrder = { 120, 1770 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Lesser Poison", "(19-23)% increased Damage with Poison", statOrderKey = "178,2132", statOrder = { 178, 2132 }, level = 68, group = "PoisonDamage", weightKey = { "no_caster_mods", "dagger_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Lesser Poison", "(24-26)% increased Damage with Poison", statOrderKey = "178,2132", statOrder = { 178, 2132 }, level = 75, group = "PoisonDamage", weightKey = { "no_caster_mods", "dagger_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(6-9)% increased Poison Duration", statOrderKey = "105,2134", statOrder = { 105, 2134 }, level = 68, group = "PoisonDuration", weightKey = { "no_caster_mods", "dagger_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(10-14)% increased Poison Duration", statOrderKey = "105,2134", statOrder = { 105, 2134 }, level = 75, group = "PoisonDuration", weightKey = { "no_caster_mods", "dagger_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrderKey = "57,1107", statOrder = { 57, 1107 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrderKey = "57,1107", statOrder = { 57, 1107 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrderKey = "57,1107", statOrder = { 57, 1107 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrderKey = "113,945", statOrder = { 113, 945 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrderKey = "113,945", statOrder = { 113, 945 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrderKey = "113,945", statOrder = { 113, 945 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Lesser Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrderKey = "163,1069", statOrder = { 163, 1069 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Lesser Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrderKey = "163,1069", statOrder = { 163, 1069 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Lesser Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrderKey = "163,1069", statOrder = { 163, 1069 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrderKey = "101,874", statOrder = { 101, 874 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrderKey = "101,874", statOrder = { 101, 874 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrderKey = "101,874", statOrder = { 101, 874 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-15)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (16-20)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, + ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrderKey = "1115", statOrder = { 1115 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+2 to Weapon range", statOrderKey = "1716", statOrder = { 1716 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrderKey = "880", statOrder = { 880 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, + ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Bow Attacks fire an additional Arrow", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "AdditionalArrows", weightKey = { "bow_elder", "default", }, weightVal = { 500, 0, }, }, + ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrderKey = "874", statOrder = { 874 }, level = 68, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrderKey = "874", statOrder = { 874 }, level = 75, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrderKey = "180,454", statOrder = { 180, 454 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrderKey = "180,454", statOrder = { 180, 454 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrderKey = "180,454", statOrder = { 180, 454 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 100, 500, 500, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrderKey = "73,454", statOrder = { 73, 454 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrderKey = "73,454", statOrder = { 73, 454 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrderKey = "73,454", statOrder = { 73, 454 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 100, 500, 500, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrderKey = "58,454", statOrder = { 58, 454 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrderKey = "58,454", statOrder = { 58, 454 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrderKey = "58,454", statOrder = { 58, 454 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 100, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Reduced Mana", "(67-78)% increased Spell Damage", statOrderKey = "154,454", statOrder = { 154, 454 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Reduced Mana", "(79-83)% increased Spell Damage", statOrderKey = "154,454", statOrder = { 154, 454 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Reduced Mana", "(84-87)% increased Spell Damage", statOrderKey = "154,454", statOrder = { 154, 454 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 100, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrderKey = "106,454", statOrder = { 106, 454 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrderKey = "106,454", statOrder = { 106, 454 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrderKey = "106,454", statOrder = { 106, 454 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 100, 0, }, tags = { "has_caster_mod", }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrderKey = "74,1057", statOrder = { 74, 1057 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 400, 0, }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrderKey = "74,1057", statOrder = { 74, 1057 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 0, }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrderKey = "74,1057", statOrder = { 74, 1057 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 100, 0, }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrderKey = "80,518", statOrder = { 80, 518 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 400, 400, 0, }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrderKey = "80,518", statOrder = { 80, 518 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 200, 200, 0, }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrderKey = "80,518", statOrder = { 80, 518 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 100, 100, 0, }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrderKey = "171,525", statOrder = { 171, 525 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 0, }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrderKey = "171,525", statOrder = { 171, 525 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0, }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrderKey = "171,525", statOrder = { 171, 525 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 0, }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrderKey = "93,534", statOrder = { 93, 534 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrderKey = "93,534", statOrder = { 93, 534 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrderKey = "93,534", statOrder = { 93, 534 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, + ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrderKey = "99,599", statOrder = { 99, 599 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrderKey = "99,599", statOrder = { 99, 599 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrderKey = "159,599", statOrder = { 159, 599 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrderKey = "159,599", statOrder = { 159, 599 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "599,960", statOrder = { 599, 960 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "599,960", statOrder = { 599, 960 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "599,3528", statOrder = { 599, 3528 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "599,3528", statOrder = { 599, 3528 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, + ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Critical Strike Chance for Spells", statOrderKey = "87,610", statOrder = { 87, 610 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Critical Strike Chance for Spells", statOrderKey = "87,610", statOrder = { 87, 610 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "610,902", statOrder = { 610, 902 }, level = 68, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "610,902", statOrder = { 610, 902 }, level = 75, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "136,1774", statOrder = { 136, 1774 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "136,1774", statOrder = { 136, 1774 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "120,1774", statOrder = { 120, 1774 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "120,1774", statOrder = { 120, 1774 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Lesser Poison", "(19-23)% increased Damage with Poison", statOrderKey = "178,2137", statOrder = { 178, 2137 }, level = 68, group = "PoisonDamage", weightKey = { "no_caster_mods", "dagger_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Lesser Poison", "(24-26)% increased Damage with Poison", statOrderKey = "178,2137", statOrder = { 178, 2137 }, level = 75, group = "PoisonDamage", weightKey = { "no_caster_mods", "dagger_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(6-9)% increased Poison Duration", statOrderKey = "105,2139", statOrder = { 105, 2139 }, level = 68, group = "PoisonDuration", weightKey = { "no_caster_mods", "dagger_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(10-14)% increased Poison Duration", statOrderKey = "105,2139", statOrder = { 105, 2139 }, level = 75, group = "PoisonDuration", weightKey = { "no_caster_mods", "dagger_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrderKey = "57,1111", statOrder = { 57, 1111 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrderKey = "57,1111", statOrder = { 57, 1111 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrderKey = "57,1111", statOrder = { 57, 1111 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrderKey = "113,949", statOrder = { 113, 949 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrderKey = "113,949", statOrder = { 113, 949 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrderKey = "113,949", statOrder = { 113, 949 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Lesser Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrderKey = "163,1073", statOrder = { 163, 1073 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, + ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Lesser Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrderKey = "163,1073", statOrder = { 163, 1073 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, + ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Lesser Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrderKey = "163,1073", statOrder = { 163, 1073 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, + ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrderKey = "101,878", statOrder = { 101, 878 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrderKey = "101,878", statOrder = { 101, 878 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrderKey = "101,878", statOrder = { 101, 878 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-15)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1015", statOrder = { 1015 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, + ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (16-20)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1015", statOrder = { 1015 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrderKey = "194", statOrder = { 194 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0, }, }, - ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (15-21) to (32-37) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "Eldritch", "Adds (19-25) to (38-44) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (22-30) to (45-52) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "Eldritch", "Adds (21-29) to (42-50) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-60) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (30-40) to (61-71) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (15-21) to (32-37) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (19-25) to (38-44) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "Eldritch", "Adds (22-30) to (45-52) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (21-29) to (42-50) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-60) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (30-40) to (61-71) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Strength", statOrderKey = "4963", statOrder = { 4963 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Dexterity", statOrderKey = "4961", statOrder = { 4961 }, level = 68, group = "SpellDamagePerDexterity", weightKey = { "no_caster_mods", "dagger_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Intelligence", statOrderKey = "4962", statOrder = { 4962 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Strength", statOrderKey = "4960", statOrder = { 4960 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Intelligence", statOrderKey = "1707", statOrder = { 1707 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrderKey = "882", statOrder = { 882 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrderKey = "884", statOrder = { 884 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrderKey = "886", statOrder = { 886 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrderKey = "407,3200", statOrder = { 407, 3200 }, level = 68, group = "PowerChargeOnBlock", weightKey = { "staff_elder", "default", }, weightVal = { 1000, 0, }, }, - ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrderKey = "407,3663", statOrder = { 407, 3663 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (15-21) to (32-37) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "Eldritch", "Adds (19-25) to (38-44) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (22-30) to (45-52) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "Eldritch", "Adds (21-29) to (42-50) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-60) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (30-40) to (61-71) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (15-21) to (32-37) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (19-25) to (38-44) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "Eldritch", "Adds (22-30) to (45-52) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (21-29) to (42-50) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-60) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (30-40) to (61-71) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Strength", statOrderKey = "4975", statOrder = { 4975 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Dexterity", statOrderKey = "4973", statOrder = { 4973 }, level = 68, group = "SpellDamagePerDexterity", weightKey = { "no_caster_mods", "dagger_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Intelligence", statOrderKey = "4974", statOrder = { 4974 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "sceptre_elder", "dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Strength", statOrderKey = "4972", statOrder = { 4972 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Intelligence", statOrderKey = "1711", statOrder = { 1711 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "staff_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrderKey = "886", statOrder = { 886 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, + ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrderKey = "888", statOrder = { 888 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, + ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrderKey = "890", statOrder = { 890 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrderKey = "407,3205", statOrder = { 407, 3205 }, level = 68, group = "PowerChargeOnBlock", weightKey = { "staff_elder", "default", }, weightVal = { 1000, 0, }, }, + ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrderKey = "407,3668", statOrder = { 407, 3668 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 1000, 0, }, }, ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(40-60)% Chance to Block Spell Damage", statOrderKey = "407,410", statOrder = { 407, 410 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0, }, }, ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrderKey = "407,414", statOrder = { 407, 414 }, level = 68, group = "SpellBlockPercentage", weightKey = { "staff_elder", "default", }, weightVal = { 1000, 0, }, }, - ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrderKey = "637,3648", statOrder = { 637, 3648 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrderKey = "4118", statOrder = { 4118 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrderKey = "3697", statOrder = { 3697 }, level = 68, group = "AllDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage for each Enemy Pierced", statOrderKey = "4832", statOrder = { 4832 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrderKey = "3222", statOrder = { 3222 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrderKey = "2252", statOrder = { 2252 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 1000, 0, }, }, - ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2387", statOrder = { 2387 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrderKey = "3879", statOrder = { 3879 }, level = 68, group = "GainRareMonsterModsOnKill", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0, }, }, - ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrderKey = "3788", statOrder = { 3788 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "+(35-50) Life gained for each Blinded Enemy Hit by this Weapon", statOrderKey = "4157", statOrder = { 4157 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "no_attack_mods", "claw_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrderKey = "2362", statOrder = { 2362 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrderKey = "1191,3306", statOrder = { 1191, 3306 }, level = 68, group = "AdditionalBlockChancePerEnduranceCharge", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0, }, }, - ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrderKey = "1123,3555", statOrder = { 1123, 3555 }, level = 68, group = "AccuracyRatingPerFrenzyCharge", weightKey = { "no_attack_mods", "sword_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrderKey = "639,3653", statOrder = { 639, 3653 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrderKey = "4123", statOrder = { 4123 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrderKey = "3702", statOrder = { 3702 }, level = 68, group = "AllDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, + ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage for each Enemy Pierced", statOrderKey = "4844", statOrder = { 4844 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrderKey = "3227", statOrder = { 3227 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrderKey = "2257", statOrder = { 2257 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 1000, 0, }, }, + ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2392", statOrder = { 2392 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrderKey = "3884", statOrder = { 3884 }, level = 68, group = "GainRareMonsterModsOnKill", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0, }, }, + ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrderKey = "3793", statOrder = { 3793 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "+(35-50) Life gained for each Blinded Enemy Hit by this Weapon", statOrderKey = "4162", statOrder = { 4162 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "no_attack_mods", "claw_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrderKey = "2367", statOrder = { 2367 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrderKey = "1195,3311", statOrder = { 1195, 3311 }, level = 68, group = "AdditionalBlockChancePerEnduranceCharge", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0, }, }, + ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrderKey = "1127,3560", statOrder = { 1127, 3560 }, level = 68, group = "AccuracyRatingPerFrenzyCharge", weightKey = { "no_attack_mods", "sword_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills have no Mana Cost", statOrderKey = "207", statOrder = { 207 }, level = 68, group = "MovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrderKey = "4768", statOrder = { 4768 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrderKey = "460,4113", statOrder = { 460, 4113 }, level = 68, group = "CullingStrikeOnBleedingEnemies", weightKey = { "no_attack_mods", "2h_axe_elder", "axe_elder", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrderKey = "3551", statOrder = { 3551 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0, }, }, - ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrderKey = "613,889", statOrder = { 613, 889 }, level = 68, group = "GainEnduranceChargeOnCrit", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "3647", statOrder = { 3647 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies killed explode dealing 5% of their Life as Fire Damage", statOrderKey = "1682", statOrder = { 1682 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-20)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "3550", statOrder = { 3550 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "no_attack_mods", "mace_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrderKey = "3347", statOrder = { 3347 }, level = 68, group = "AreaOfEffectPerStrength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0, }, }, - ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3345", statOrder = { 3345 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(1-2) to Melee Weapon Range if you have Killed Recently", statOrderKey = "4690", statOrder = { 4690 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "2h_sword_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Movement Skills have (30-50)% chance to Fortify on Hit", statOrderKey = "4686", statOrder = { 4686 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrderKey = "3553", statOrder = { 3553 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrderKey = "4880", statOrder = { 4880 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0, }, }, - ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrderKey = "3349", statOrder = { 3349 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0, }, }, - ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrderKey = "664,928", statOrder = { 664, 928 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "1904", statOrder = { 1904 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "1904", statOrder = { 1904 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "1904", statOrder = { 1904 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrderKey = "4780", statOrder = { 4780 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrderKey = "462,4118", statOrder = { 462, 4118 }, level = 68, group = "CullingStrikeOnBleedingEnemies", weightKey = { "no_attack_mods", "2h_axe_elder", "axe_elder", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, + ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrderKey = "3556", statOrder = { 3556 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0, }, }, + ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrderKey = "615,893", statOrder = { 615, 893 }, level = 68, group = "GainEnduranceChargeOnCrit", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "3652", statOrder = { 3652 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies killed explode dealing 5% of their Life as Fire Damage", statOrderKey = "1686", statOrder = { 1686 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-20)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "3555", statOrder = { 3555 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "no_attack_mods", "mace_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrderKey = "3352", statOrder = { 3352 }, level = 68, group = "AreaOfEffectPerStrength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0, }, }, + ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3350", statOrder = { 3350 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(1-2) to Melee Weapon Range if you have Killed Recently", statOrderKey = "4702", statOrder = { 4702 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "2h_sword_elder", "default", }, weightVal = { 0, 1000, 0, }, }, + ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Movement Skills have (30-50)% chance to Fortify on Hit", statOrderKey = "4698", statOrder = { 4698 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrderKey = "3558", statOrder = { 3558 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrderKey = "4892", statOrder = { 4892 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0, }, }, + ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrderKey = "3354", statOrder = { 3354 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0, }, }, + ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrderKey = "666,932", statOrder = { 666, 932 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0, }, }, + ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "1908", statOrder = { 1908 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "1908", statOrder = { 1908 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, + ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "1908", statOrder = { 1908 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrderKey = "275", statOrder = { 275 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrderKey = "274", statOrder = { 274 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrderKey = "285", statOrder = { 285 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrderKey = "276", statOrder = { 276 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrderKey = "35", statOrder = { 35 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Zombies", statOrderKey = "1227", statOrder = { 1227 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1229", statOrder = { 1229 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrderKey = "1228", statOrder = { 1228 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Zombies", statOrderKey = "1227", statOrder = { 1227 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1229", statOrder = { 1229 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "5% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 60, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Zombies", statOrderKey = "1231", statOrder = { 1231 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1233", statOrder = { 1233 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrderKey = "1232", statOrder = { 1232 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Zombies", statOrderKey = "1231", statOrder = { 1231 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1233", statOrder = { 1233 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "5% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 60, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrderKey = "36", statOrder = { 36 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1326", statOrder = { 1326 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrderKey = "1490,2133", statOrder = { 1490, 2133 }, level = 60, group = "BleedingDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3502", statOrder = { 3502 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0, }, }, - ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrderKey = "3536", statOrder = { 3536 }, level = 60, group = "DoubleDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrderKey = "459,554", statOrder = { 459, 554 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrderKey = "459,554", statOrder = { 459, 554 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Vulnerability on Hit", statOrderKey = "1513", statOrder = { 1513 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrderKey = "769", statOrder = { 769 }, level = 60, group = "PhysicalDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1451", statOrder = { 1451 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrderKey = "736", statOrder = { 736 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrderKey = "1299", statOrder = { 1299 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrderKey = "516,519", statOrder = { 516, 519 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (27-36) to (55-64) Fire Damage", statOrderKey = "516,519", statOrder = { 516, 519 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrderKey = "516,555", statOrder = { 516, 555 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrderKey = "516,555", statOrder = { 516, 555 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Flammability on Hit", statOrderKey = "1521", statOrder = { 1521 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrderKey = "771", statOrder = { 771 }, level = 60, group = "FireDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1452", statOrder = { 1452 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrderKey = "740", statOrder = { 740 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrderKey = "2349", statOrder = { 2349 }, level = 60, group = "ColdDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrderKey = "523,526", statOrder = { 523, 526 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (22-30) to (45-52) Cold Damage", statOrderKey = "523,526", statOrder = { 523, 526 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrderKey = "523,556", statOrder = { 523, 556 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrderKey = "523,556", statOrder = { 523, 556 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Frostbite on Hit", statOrderKey = "1522", statOrder = { 1522 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 60, group = "ColdDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1453", statOrder = { 1453 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrderKey = "743", statOrder = { 743 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2348", statOrder = { 2348 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrderKey = "532,535", statOrder = { 532, 535 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-8) to (95-100) Lightning Damage", statOrderKey = "532,535", statOrder = { 532, 535 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrderKey = "532,557", statOrder = { 532, 557 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrderKey = "532,557", statOrder = { 532, 557 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Conductivity on Hit", statOrderKey = "1518", statOrder = { 1518 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 60, group = "LightningDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrderKey = "746", statOrder = { 746 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1300", statOrder = { 1300 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrderKey = "538,541", statOrder = { 538, 541 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (28-43) to (59-74) Chaos Damage", statOrderKey = "538,541", statOrder = { 538, 541 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrderKey = "538,558", statOrder = { 538, 558 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrderKey = "538,558", statOrder = { 538, 558 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Despair on Hit", statOrderKey = "1519", statOrder = { 1519 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrderKey = "776", statOrder = { 776 }, level = 60, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrderKey = "1598", statOrder = { 1598 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrderKey = "1237", statOrder = { 1237 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1330", statOrder = { 1330 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, + ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrderKey = "1494,2138", statOrder = { 1494, 2138 }, level = 60, group = "BleedingDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3507", statOrder = { 3507 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0, }, }, + ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrderKey = "3541", statOrder = { 3541 }, level = 60, group = "DoubleDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrderKey = "461,556", statOrder = { 461, 556 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrderKey = "461,556", statOrder = { 461, 556 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Vulnerability on Hit", statOrderKey = "1517", statOrder = { 1517 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrderKey = "771", statOrder = { 771 }, level = 60, group = "PhysicalDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1455", statOrder = { 1455 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrderKey = "738", statOrder = { 738 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrderKey = "1303", statOrder = { 1303 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrderKey = "518,521", statOrder = { 518, 521 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (27-36) to (55-64) Fire Damage", statOrderKey = "518,521", statOrder = { 518, 521 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrderKey = "518,557", statOrder = { 518, 557 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrderKey = "518,557", statOrder = { 518, 557 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Flammability on Hit", statOrderKey = "1525", statOrder = { 1525 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrderKey = "773", statOrder = { 773 }, level = 60, group = "FireDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1456", statOrder = { 1456 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrderKey = "742", statOrder = { 742 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrderKey = "2354", statOrder = { 2354 }, level = 60, group = "ColdDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrderKey = "525,528", statOrder = { 525, 528 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (22-30) to (45-52) Cold Damage", statOrderKey = "525,528", statOrder = { 525, 528 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrderKey = "525,558", statOrder = { 525, 558 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrderKey = "525,558", statOrder = { 525, 558 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Frostbite on Hit", statOrderKey = "1526", statOrder = { 1526 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrderKey = "775", statOrder = { 775 }, level = 60, group = "ColdDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1457", statOrder = { 1457 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrderKey = "745", statOrder = { 745 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2353", statOrder = { 2353 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrderKey = "534,537", statOrder = { 534, 537 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-8) to (95-100) Lightning Damage", statOrderKey = "534,537", statOrder = { 534, 537 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrderKey = "534,559", statOrder = { 534, 559 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrderKey = "534,559", statOrder = { 534, 559 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Conductivity on Hit", statOrderKey = "1522", statOrder = { 1522 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "777", statOrder = { 777 }, level = 60, group = "LightningDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1459", statOrder = { 1459 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrderKey = "748", statOrder = { 748 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1304", statOrder = { 1304 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrderKey = "540,543", statOrder = { 540, 543 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (28-43) to (59-74) Chaos Damage", statOrderKey = "540,543", statOrder = { 540, 543 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrderKey = "540,560", statOrder = { 540, 560 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrderKey = "540,560", statOrder = { 540, 560 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Despair on Hit", statOrderKey = "1523", statOrder = { 1523 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrderKey = "778", statOrder = { 778 }, level = 60, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrderKey = "1602", statOrder = { 1602 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0, }, }, + ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrderKey = "1241", statOrder = { 1241 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0, }, }, ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrderKey = "39", statOrder = { 39 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Curse Skills", statOrderKey = "1291", statOrder = { 1291 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrderKey = "3673", statOrder = { 3673 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrderKey = "1983", statOrder = { 1983 }, level = 60, group = "DamageToEnemiesPerCurse", weightKey = { "default", }, weightVal = { 0, }, }, - ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1458", statOrder = { 1458 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5) Mana Regenerated per second", statOrderKey = "712", statOrder = { 712 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrderKey = "710", statOrder = { 710 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 400, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 200, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 100, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 50, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, - ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 220, 220, 220, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 140, 140, 140, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 70, 70, 70, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 35, 35, 35, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(8-12)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(13-16)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrderKey = "703,704", statOrder = { 703, 704 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "703,704", statOrder = { 703, 704 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "709,710", statOrder = { 709, 710 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "709,828", statOrder = { 709, 828 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "(5-7) Mana Regenerated per second", statOrderKey = "709,712", statOrder = { 709, 712 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "709,1292", statOrder = { 709, 1292 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "709,949", statOrder = { 709, 949 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrderKey = "694,697", statOrder = { 694, 697 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "0.4% of Energy Shield Regenerated per second", statOrderKey = "694,1631", statOrder = { 694, 1631 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "518,1024", statOrder = { 518, 1024 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "525,1025", statOrder = { 525, 1025 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "534,1026", statOrder = { 534, 1026 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "460,1004", statOrder = { 460, 1004 }, level = 50, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "519,1952", statOrder = { 519, 1952 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (68-91) to (137-160) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "519,1952", statOrder = { 519, 1952 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "526,1953", statOrder = { 526, 1953 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (56-75) to (112-131) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "526,1953", statOrder = { 526, 1953 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "535,1954", statOrder = { 535, 1954 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (6-19) to (237-250) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "535,1954", statOrder = { 535, 1954 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "876,2206", statOrder = { 876, 2206 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Attack Hits", statOrderKey = "876,1232", statOrder = { 876, 1232 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Spell Hits", statOrderKey = "876,1233", statOrder = { 876, 1233 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "452,4753", statOrder = { 452, 4753 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "452,4753", statOrder = { 452, 4753 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Curse Skills", statOrderKey = "1295", statOrder = { 1295 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrderKey = "3678", statOrder = { 3678 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrderKey = "1987", statOrder = { 1987 }, level = 60, group = "DamageToEnemiesPerCurse", weightKey = { "default", }, weightVal = { 0, }, }, + ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1462", statOrder = { 1462 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5) Mana Regenerated per second", statOrderKey = "714", statOrder = { 714 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrderKey = "712", statOrder = { 712 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 400, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 200, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 100, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 50, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, + ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 220, 220, 220, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 140, 140, 140, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 70, 70, 70, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 35, 35, 35, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(8-12)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0, }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(13-16)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0, }, tags = { "has_caster_mod", }, }, + ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrderKey = "705,706", statOrder = { 705, 706 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "705,706", statOrder = { 705, 706 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "711,712", statOrder = { 711, 712 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "711,832", statOrder = { 711, 832 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "(5-7) Mana Regenerated per second", statOrderKey = "711,714", statOrder = { 711, 714 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "711,1296", statOrder = { 711, 1296 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "711,953", statOrder = { 711, 953 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrderKey = "696,699", statOrder = { 696, 699 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "0.4% of Energy Shield Regenerated per second", statOrderKey = "696,1635", statOrder = { 696, 1635 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "520,1028", statOrder = { 520, 1028 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, + ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "527,1029", statOrder = { 527, 1029 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, + ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "536,1030", statOrder = { 536, 1030 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, + ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "462,1008", statOrder = { 462, 1008 }, level = 50, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "521,1956", statOrder = { 521, 1956 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (68-91) to (137-160) Fire Damage", "Damage Penetrates (13-15)% Fire Resistance", statOrderKey = "521,1956", statOrder = { 521, 1956 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "528,1957", statOrder = { 528, 1957 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (56-75) to (112-131) Cold Damage", "Damage Penetrates (13-15)% Cold Resistance", statOrderKey = "528,1957", statOrder = { 528, 1957 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "537,1958", statOrder = { 537, 1958 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (6-19) to (237-250) Lightning Damage", "Damage Penetrates (13-15)% Lightning Resistance", statOrderKey = "537,1958", statOrder = { 537, 1958 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, + ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "880,2211", statOrder = { 880, 2211 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Attack Hits", statOrderKey = "880,1236", statOrder = { 880, 1236 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(11-12)% chance to Dodge Spell Hits", statOrderKey = "880,1237", statOrder = { 880, 1237 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "454,4765", statOrder = { 454, 4765 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "454,4765", statOrder = { 454, 4765 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrderKey = "431", statOrder = { 431 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrderKey = "431", statOrder = { 431 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "996", statOrder = { 996 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "992,2412", statOrder = { 992, 2412 }, level = 50, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2430", statOrder = { 2430 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "1000", statOrder = { 1000 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "996,2417", statOrder = { 996, 2417 }, level = 50, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, + ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2435", statOrder = { 2435 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrderKey = "40", statOrder = { 40 }, level = 50, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrderKey = "1874,1875", statOrder = { 1874, 1875 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3461", statOrder = { 3461 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrderKey = "1878,1879", statOrder = { 1878, 1879 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3466", statOrder = { 3466 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrderKey = "35", statOrder = { 35 }, level = 50, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "516,555", statOrder = { 516, 555 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "516,555", statOrder = { 516, 555 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "523,556", statOrder = { 523, 556 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "523,556", statOrder = { 523, 556 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "532,557", statOrder = { 532, 557 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "532,557", statOrder = { 532, 557 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "558,597", statOrder = { 558, 597 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "558,597", statOrder = { 558, 597 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "541,564", statOrder = { 541, 564 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "541,564", statOrder = { 541, 564 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "(16-20) Life Regenerated per second", "0.4% of Life Regenerated per second", statOrderKey = "707,1012", statOrder = { 707, 1012 }, level = 50, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "737,1451", statOrder = { 737, 1451 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "741,1452", statOrder = { 741, 1452 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "744,1453", statOrder = { 744, 1453 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "737,771", statOrder = { 737, 771 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "741,773", statOrder = { 741, 773 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "744,775", statOrder = { 744, 775 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "737,4996", statOrder = { 737, 4996 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "741,3699", statOrder = { 741, 3699 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "744,3642", statOrder = { 744, 3642 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrderKey = "747,1016", statOrder = { 747, 1016 }, level = 50, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "538,2134", statOrder = { 538, 2134 }, level = 50, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "538,4169", statOrder = { 538, 4169 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "541,2132", statOrder = { 541, 2132 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "558,2132", statOrder = { 558, 2132 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1010", statOrder = { 1010 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, - ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1010", statOrder = { 1010 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, - ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1010", statOrder = { 1010 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, - ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1009", statOrder = { 1009 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, - ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1009", statOrder = { 1009 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, - ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1009", statOrder = { 1009 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, - ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, - ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, - ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, - ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1004", statOrder = { 1004 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 400, 600, 50, 50, 0, }, }, - ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1004", statOrder = { 1004 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 200, 300, 50, 50, 0, }, }, - ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1004", statOrder = { 1004 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 100, 150, 50, 50, 0, }, }, - ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1010", statOrder = { 1010 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1010", statOrder = { 1010 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1010", statOrder = { 1010 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1009", statOrder = { 1009 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1009", statOrder = { 1009 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1009", statOrder = { 1009 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1007", statOrder = { 1007 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1004", statOrder = { 1004 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1004", statOrder = { 1004 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1004", statOrder = { 1004 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, + ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "518,557", statOrder = { 518, 557 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "518,557", statOrder = { 518, 557 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "525,558", statOrder = { 525, 558 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "525,558", statOrder = { 525, 558 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "534,559", statOrder = { 534, 559 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "534,559", statOrder = { 534, 559 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "560,599", statOrder = { 560, 599 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "560,599", statOrder = { 560, 599 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "543,566", statOrder = { 543, 566 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "543,566", statOrder = { 543, 566 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "(16-20) Life Regenerated per second", "0.4% of Life Regenerated per second", statOrderKey = "709,1016", statOrder = { 709, 1016 }, level = 50, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "739,1455", statOrder = { 739, 1455 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "743,1456", statOrder = { 743, 1456 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "746,1457", statOrder = { 746, 1457 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, + ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "739,773", statOrder = { 739, 773 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "743,775", statOrder = { 743, 775 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "746,777", statOrder = { 746, 777 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "739,5008", statOrder = { 739, 5008 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "743,3704", statOrder = { 743, 3704 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "746,3647", statOrder = { 746, 3647 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrderKey = "749,1020", statOrder = { 749, 1020 }, level = 50, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "540,2139", statOrder = { 540, 2139 }, level = 50, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "540,4174", statOrder = { 540, 4174 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0, }, }, + ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "543,2137", statOrder = { 543, 2137 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "560,2137", statOrder = { 560, 2137 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1014", statOrder = { 1014 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, + ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1014", statOrder = { 1014 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, + ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1014", statOrder = { 1014 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, + ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1013", statOrder = { 1013 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, + ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1013", statOrder = { 1013 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, + ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1013", statOrder = { 1013 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, + ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, + ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, + ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, + ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1008", statOrder = { 1008 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 400, 600, 50, 50, 0, }, }, + ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1008", statOrder = { 1008 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 200, 300, 50, 50, 0, }, }, + ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1008", statOrder = { 1008 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 100, 150, 50, 50, 0, }, }, + ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1014", statOrder = { 1014 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, + ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1014", statOrder = { 1014 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, + ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1014", statOrder = { 1014 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, + ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1013", statOrder = { 1013 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, + ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1013", statOrder = { 1013 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, + ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1013", statOrder = { 1013 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, + ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, + ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, + ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1011", statOrder = { 1011 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, + ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1008", statOrder = { 1008 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, + ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1008", statOrder = { 1008 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, + ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1008", statOrder = { 1008 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, } \ No newline at end of file diff --git a/Data/3_0/ModJewel.lua b/Data/3_0/ModJewel.lua index ad976bcd4..2cbd3a8bb 100644 --- a/Data/3_0/ModJewel.lua +++ b/Data/3_0/ModJewel.lua @@ -2,217 +2,217 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1129", statOrder = { 1129 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "937", statOrder = { 937 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "939", statOrder = { 939 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "940", statOrder = { 940 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "1994", statOrder = { 1994 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have +(3-5)% additional Critical Stike Chance against you", statOrderKey = "2095", statOrder = { 2095 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2065", statOrder = { 2065 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2064", statOrder = { 2064 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2066", statOrder = { 2066 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2067", statOrder = { 2067 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2068", statOrder = { 2068 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2063", statOrder = { 2063 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3502", statOrder = { 3502 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "5082", statOrder = { 5082 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of non-Damaging Ailments on Enemies", statOrderKey = "4755", statOrder = { 4755 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1133", statOrder = { 1133 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "941", statOrder = { 941 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "943", statOrder = { 943 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "944", statOrder = { 944 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "942", statOrder = { 942 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "1998", statOrder = { 1998 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (3-5)% increased Critical Strike Chance against you", statOrderKey = "2100", statOrder = { 2100 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2069", statOrder = { 2069 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2068", statOrder = { 2068 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2070", statOrder = { 2070 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2071", statOrder = { 2071 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2072", statOrder = { 2072 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2067", statOrder = { 2067 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3507", statOrder = { 3507 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "5094", statOrder = { 5094 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of non-Damaging Ailments on Enemies", statOrderKey = "4767", statOrder = { 4767 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrderKey = "428", statOrder = { 428 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3435", statOrder = { 3435 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2063", statOrder = { 2063 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Physical Damage with Maces", statOrderKey = "501", statOrder = { 501 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500, }, tags = { "mace", "specific_weapon", "melee_mod", }, }, - ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Physical Damage with Axes", statOrderKey = "489", statOrder = { 489 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "axe", "specific_weapon", "melee_mod", }, }, - ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Physical Damage with Swords", statOrderKey = "509", statOrder = { 509 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "sword", "specific_weapon", "melee_mod", }, }, - ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Physical Damage with Bows", statOrderKey = "504", statOrder = { 504 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Physical Damage with Claws", statOrderKey = "495", statOrder = { 495 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Physical Damage with Daggers", statOrderKey = "498", statOrder = { 498 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Physical Damage with Wands", statOrderKey = "512", statOrder = { 512 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Physical Damage with Staves", statOrderKey = "492", statOrder = { 492 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, - ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Physical Damage with One Handed Melee Weapons", statOrderKey = "482", statOrder = { 482 }, level = 1, group = "MeleeTypeDamage", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, - ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Physical Damage with Two Handed Melee Weapons", statOrderKey = "485", statOrder = { 485 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "478", statOrder = { 478 }, level = 1, group = "MeleeTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "dual_wielding_mod", }, }, - ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrderKey = "488", statOrder = { 488 }, level = 1, group = "MeleeTypeDamage", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrderKey = "1054", statOrder = { 1054 }, level = 1, group = "DamageForm", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "melee_mod", }, }, - ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrderKey = "1069", statOrder = { 1069 }, level = 1, group = "DamageForm", weightKey = { "not_dex", "default", }, weightVal = { 400, 500, }, }, - ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrderKey = "452", statOrder = { 452 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrderKey = "455", statOrder = { 455 }, level = 1, group = "SpellTypeDamage", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrderKey = "458", statOrder = { 458 }, level = 1, group = "SpellTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, - ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrderKey = "457", statOrder = { 457 }, level = 1, group = "SpellTypeDamage", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, }, tags = { "shield_mod", }, }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3440", statOrder = { 3440 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2067", statOrder = { 2067 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, + ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Physical Damage with Maces", statOrderKey = "503", statOrder = { 503 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500, }, tags = { "mace", "specific_weapon", "melee_mod", }, }, + ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Physical Damage with Axes", statOrderKey = "491", statOrder = { 491 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "axe", "specific_weapon", "melee_mod", }, }, + ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Physical Damage with Swords", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "sword", "specific_weapon", "melee_mod", }, }, + ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Physical Damage with Bows", statOrderKey = "506", statOrder = { 506 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Physical Damage with Claws", statOrderKey = "497", statOrder = { 497 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Physical Damage with Daggers", statOrderKey = "500", statOrder = { 500 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Physical Damage with Wands", statOrderKey = "514", statOrder = { 514 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Physical Damage with Staves", statOrderKey = "494", statOrder = { 494 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, + ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Physical Damage with One Handed Melee Weapons", statOrderKey = "484", statOrder = { 484 }, level = 1, group = "MeleeTypeDamage", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, + ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Physical Damage with Two Handed Melee Weapons", statOrderKey = "487", statOrder = { 487 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Physical Weapon Damage while Dual Wielding", statOrderKey = "480", statOrder = { 480 }, level = 1, group = "MeleeTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "dual_wielding_mod", }, }, + ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrderKey = "490", statOrder = { 490 }, level = 1, group = "MeleeTypeDamage", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, + ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrderKey = "1058", statOrder = { 1058 }, level = 1, group = "DamageForm", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "melee_mod", }, }, + ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrderKey = "1073", statOrder = { 1073 }, level = 1, group = "DamageForm", weightKey = { "not_dex", "default", }, weightVal = { 400, 500, }, }, + ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrderKey = "454", statOrder = { 454 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrderKey = "457", statOrder = { 457 }, level = 1, group = "SpellTypeDamage", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrderKey = "460", statOrder = { 460 }, level = 1, group = "SpellTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, + ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrderKey = "459", statOrder = { 459 }, level = 1, group = "SpellTypeDamage", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, }, tags = { "shield_mod", }, }, ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrderKey = "431", statOrder = { 431 }, level = 1, group = "DamageForm", weightKey = { "not_str", "default", }, weightVal = { 500, 0, }, }, ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrderKey = "432", statOrder = { 432 }, level = 1, group = "DamageForm", weightKey = { "not_str", "default", }, weightVal = { 500, 0, }, }, ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrderKey = "428", statOrder = { 428 }, level = 1, group = "DamageForm", weightKey = { "default", }, weightVal = { 350, }, }, - ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrderKey = "516", statOrder = { 516 }, level = 1, group = "FireDamagePercentage", weightKey = { "not_str", "default", }, weightVal = { 400, 500, }, }, - ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrderKey = "523", statOrder = { 523 }, level = 1, group = "ColdDamagePercentage", weightKey = { "not_dex", "default", }, weightVal = { 400, 500, }, }, - ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrderKey = "532", statOrder = { 532 }, level = 1, group = "LightningDamagePercentage", weightKey = { "not_int", "default", }, weightVal = { 400, 500, }, }, - ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrderKey = "459", statOrder = { 459 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 500, }, }, + ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrderKey = "518", statOrder = { 518 }, level = 1, group = "FireDamagePercentage", weightKey = { "not_str", "default", }, weightVal = { 400, 500, }, }, + ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrderKey = "525", statOrder = { 525 }, level = 1, group = "ColdDamagePercentage", weightKey = { "not_dex", "default", }, weightVal = { 400, 500, }, }, + ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "LightningDamagePercentage", weightKey = { "not_int", "default", }, weightVal = { 400, 500, }, }, + ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrderKey = "461", statOrder = { 461 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 500, }, }, ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrderKey = "443", statOrder = { 443 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 500, }, }, - ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrderKey = "538", statOrder = { 538 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 200, }, }, - ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AreaDamage", weightKey = { "default", }, weightVal = { 500, }, }, - ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces", statOrderKey = "575", statOrder = { 575 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500, }, tags = { "mace", "specific_weapon", "melee_mod", }, }, - ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrderKey = "571", statOrder = { 571 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "axe", "specific_weapon", "melee_mod", }, }, - ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrderKey = "577", statOrder = { 577 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "sword", "specific_weapon", "melee_mod", }, }, - ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrderKey = "576", statOrder = { 576 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrderKey = "573", statOrder = { 573 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrderKey = "574", statOrder = { 574 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrderKey = "578", statOrder = { 578 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrderKey = "572", statOrder = { 572 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, - ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, - ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrderKey = "569", statOrder = { 569 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrderKey = "566", statOrder = { 566 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, - ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrderKey = "598", statOrder = { 598 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, - ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrderKey = "568", statOrder = { 568 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400, }, tags = { "shield_mod", }, }, - ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "shield_mod", }, }, - ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrderKey = "600", statOrder = { 600 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Attack Speed with Unarmed Attacks", statOrderKey = "580", statOrder = { 580 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 500, }, }, - ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "ProjectileSpeed", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, - ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrderKey = "996", statOrder = { 996 }, level = 1, group = "TrapThrowSpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0, }, }, - ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Laying Speed", statOrderKey = "997", statOrder = { 997 }, level = 1, group = "MineLaySpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0, }, }, - ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrderKey = "1119", statOrder = { 1119 }, level = 1, group = "AttackCastSpeed", weightKey = { "default", }, weightVal = { 350, }, }, - ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Melee Physical Damage while holding a Shield", statOrderKey = "1058", statOrder = { 1058 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, }, tags = { "shield_mod", "melee_mod", }, }, - ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrderKey = "522", statOrder = { 522 }, level = 1, group = "FireCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "ColdCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrderKey = "537", statOrder = { 537 }, level = 1, group = "LightningCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrderKey = "543", statOrder = { 543 }, level = 1, group = "ChaosCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrderKey = "1286", statOrder = { 1286 }, level = 1, group = "CurseCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrderKey = "540", statOrder = { 540 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 200, }, }, + ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrderKey = "1111", statOrder = { 1111 }, level = 1, group = "AreaDamage", weightKey = { "default", }, weightVal = { 500, }, }, + ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces", statOrderKey = "577", statOrder = { 577 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500, }, tags = { "mace", "specific_weapon", "melee_mod", }, }, + ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrderKey = "573", statOrder = { 573 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "axe", "specific_weapon", "melee_mod", }, }, + ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrderKey = "579", statOrder = { 579 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "sword", "specific_weapon", "melee_mod", }, }, + ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrderKey = "578", statOrder = { 578 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrderKey = "575", statOrder = { 575 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrderKey = "576", statOrder = { 576 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrderKey = "580", statOrder = { 580 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrderKey = "574", statOrder = { 574 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, + ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrderKey = "572", statOrder = { 572 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, + ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrderKey = "571", statOrder = { 571 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrderKey = "568", statOrder = { 568 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, + ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrderKey = "600", statOrder = { 600 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, + ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400, }, tags = { "shield_mod", }, }, + ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrderKey = "601", statOrder = { 601 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "shield_mod", }, }, + ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrderKey = "602", statOrder = { 602 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Attack Speed with Unarmed Attacks", statOrderKey = "582", statOrder = { 582 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, + ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 500, }, }, + ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrderKey = "878", statOrder = { 878 }, level = 1, group = "ProjectileSpeed", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, + ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrderKey = "1000", statOrder = { 1000 }, level = 1, group = "TrapThrowSpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0, }, }, + ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Laying Speed", statOrderKey = "1001", statOrder = { 1001 }, level = 1, group = "MineLaySpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0, }, }, + ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrderKey = "1123", statOrder = { 1123 }, level = 1, group = "AttackCastSpeed", weightKey = { "default", }, weightVal = { 350, }, }, + ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Melee Physical Damage while holding a Shield", statOrderKey = "1062", statOrder = { 1062 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, }, tags = { "shield_mod", "melee_mod", }, }, + ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrderKey = "524", statOrder = { 524 }, level = 1, group = "FireCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrderKey = "533", statOrder = { 533 }, level = 1, group = "ColdCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrderKey = "539", statOrder = { 539 }, level = 1, group = "LightningCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrderKey = "545", statOrder = { 545 }, level = 1, group = "ChaosCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrderKey = "1290", statOrder = { 1290 }, level = 1, group = "CurseCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrderKey = "425", statOrder = { 425 }, level = 1, group = "Strength", weightKey = { "not_str", "default", }, weightVal = { 300, 500, }, }, ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrderKey = "426", statOrder = { 426 }, level = 1, group = "Dexterity", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrderKey = "427", statOrder = { 427 }, level = 1, group = "Intelligence", weightKey = { "not_int", "default", }, weightVal = { 300, 500, }, }, - ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "1596", statOrder = { 1596 }, level = 1, group = "StrengthDexterity", weightKey = { "not_int", "default", }, weightVal = { 450, 250, }, }, - ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "1595", statOrder = { 1595 }, level = 1, group = "StrengthIntelligence", weightKey = { "not_dex", "default", }, weightVal = { 450, 250, }, }, - ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "1597", statOrder = { 1597 }, level = 1, group = "DexterityIntelligence", weightKey = { "not_str", "default", }, weightVal = { 450, 250, }, }, + ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "1600", statOrder = { 1600 }, level = 1, group = "StrengthDexterity", weightKey = { "not_int", "default", }, weightVal = { 450, 250, }, }, + ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "1599", statOrder = { 1599 }, level = 1, group = "StrengthIntelligence", weightKey = { "not_dex", "default", }, weightVal = { 450, 250, }, }, + ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "1601", statOrder = { 1601 }, level = 1, group = "DexterityIntelligence", weightKey = { "not_str", "default", }, weightVal = { 450, 250, }, }, ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrderKey = "424", statOrder = { 424 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 300, }, }, - ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrderKey = "704", statOrder = { 704 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 350, 500, }, }, - ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(6-8)% increased maximum Mana", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 500, 250, }, }, - ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrderKey = "713", statOrder = { 713 }, level = 1, group = "ManaRegeneration", weightKey = { "not_int", "default", }, weightVal = { 250, 500, }, }, - ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrderKey = "697", statOrder = { 697 }, level = 1, group = "EnergyShieldPercent", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrderKey = "703,709", statOrder = { 703, 709 }, level = 1, group = "IncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrderKey = "704,710", statOrder = { 704, 710 }, level = 1, group = "PercentageIncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrderKey = "697,710", statOrder = { 697, 710 }, level = 1, group = "IncreasedEnergyShieldAndMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrderKey = "697,704", statOrder = { 697, 704 }, level = 1, group = "IncreasedLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "753", statOrder = { 753 }, level = 1, group = "LifeLeech", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, - ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "789", statOrder = { 789 }, level = 1, group = "ManaLeech", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrderKey = "766", statOrder = { 766 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrderKey = "794", statOrder = { 794 }, level = 1, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "+(2-3) Life gained for each Enemy hit by your Attacks", statOrderKey = "824", statOrder = { 824 }, level = 1, group = "LifeGainPerTarget", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, - ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 1, group = "ManaGainPerTarget", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "+(2-3) Energy Shield gained for each Enemy hit by your Attacks", statOrderKey = "831", statOrder = { 831 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrderKey = "677", statOrder = { 677 }, level = 1, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, - ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrderKey = "686", statOrder = { 686 }, level = 1, group = "EvasionRatingPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrderKey = "677,686", statOrder = { 677, 686 }, level = 1, group = "ArmourEvasion", weightKey = { "default", }, weightVal = { 0, }, }, - ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrderKey = "677,697", statOrder = { 677, 697 }, level = 1, group = "ArmourEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrderKey = "686,697", statOrder = { 686, 697 }, level = 1, group = "EvasionEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrderKey = "1803", statOrder = { 1803 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrderKey = "721", statOrder = { 721 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "default", }, weightVal = { 150, }, }, - ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 1, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrderKey = "585", statOrder = { 585 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrderKey = "585,609", statOrder = { 585, 609 }, level = 1, group = "AccuracyAndCrits", weightKey = { "not_dex", "default", }, weightVal = { 0, 150, }, }, - ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 250, }, }, - ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 250, }, }, - ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces", statOrderKey = "618", statOrder = { 618 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "mace", "specific_weapon", }, }, - ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrderKey = "621", statOrder = { 621 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "axe", "specific_weapon", }, }, - ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrderKey = "617", statOrder = { 617 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "sword", "specific_weapon", }, }, - ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrderKey = "614", statOrder = { 614 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrderKey = "615", statOrder = { 615 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrderKey = "616", statOrder = { 616 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrderKey = "620", statOrder = { 620 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrderKey = "619", statOrder = { 619 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces", statOrderKey = "642", statOrder = { 642 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "mace", "specific_weapon", }, }, - ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrderKey = "643", statOrder = { 643 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "axe", "specific_weapon", }, }, - ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrderKey = "645", statOrder = { 645 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "sword", "specific_weapon", }, }, - ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrderKey = "644", statOrder = { 644 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrderKey = "647", statOrder = { 647 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrderKey = "641", statOrder = { 641 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrderKey = "646", statOrder = { 646 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrderKey = "648", statOrder = { 648 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrderKey = "627", statOrder = { 627 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, - ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrderKey = "625", statOrder = { 625 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Weapon Critical Strike Chance while Dual Wielding", statOrderKey = "629", statOrder = { 629 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "dual_wielding_mod", }, }, - ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrderKey = "622", statOrder = { 622 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "default", }, weightVal = { 0, }, tags = { "shield_mod", }, }, - ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrderKey = "628", statOrder = { 628 }, level = 1, group = "FormCritChance", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", }, }, - ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Critical Strike Chance for Spells", statOrderKey = "608", statOrder = { 608 }, level = 1, group = "FormCritChance", weightKey = { "not_int", "default", }, weightVal = { 0, 250, }, }, - ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrderKey = "623", statOrder = { 623 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrderKey = "624", statOrder = { 624 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrderKey = "630", statOrder = { 630 }, level = 1, group = "FireCritChance", weightKey = { "not_str", "default", }, weightVal = { 200, 250, }, }, - ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrderKey = "632", statOrder = { 632 }, level = 1, group = "ColdCritChance", weightKey = { "not_dex", "default", }, weightVal = { 200, 250, }, }, - ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrderKey = "631", statOrder = { 631 }, level = 1, group = "LightningCritChance", weightKey = { "not_int", "default", }, weightVal = { 200, 250, }, }, - ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrderKey = "633", statOrder = { 633 }, level = 1, group = "ElementalCritChance", weightKey = { "default", }, weightVal = { 100, }, }, - ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrderKey = "634", statOrder = { 634 }, level = 1, group = "ChaosCritChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrderKey = "649", statOrder = { 649 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", "one_handed_mod", }, }, - ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrderKey = "626", statOrder = { 626 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrderKey = "3194", statOrder = { 3194 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "dual_wielding_mod", }, }, - ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrderKey = "652", statOrder = { 652 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, tags = { "shield_mod", }, }, - ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrderKey = "650", statOrder = { 650 }, level = 1, group = "FormCritMultiplier", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", }, }, - ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spells", statOrderKey = "640", statOrder = { 640 }, level = 1, group = "FormCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 0, 250, }, }, - ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrderKey = "653", statOrder = { 653 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrderKey = "654", statOrder = { 654 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrderKey = "655", statOrder = { 655 }, level = 1, group = "FireCritMultiplier", weightKey = { "not_str", "default", }, weightVal = { 200, 250, }, }, - ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrderKey = "657", statOrder = { 657 }, level = 1, group = "ColdCritMultiplier", weightKey = { "not_dex", "default", }, weightVal = { 200, 250, }, }, - ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrderKey = "656", statOrder = { 656 }, level = 1, group = "LightningCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 200, 250, }, }, - ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrderKey = "658", statOrder = { 658 }, level = 1, group = "ElementalCritMultiplier", weightKey = { "default", }, weightVal = { 100, }, }, - ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrderKey = "659", statOrder = { 659 }, level = 1, group = "ChaosCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 1, group = "FireResistance", weightKey = { "not_str", "default", }, weightVal = { 300, 500, }, }, - ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 1, group = "ColdResistance", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, - ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 1, group = "LightningResistance", weightKey = { "not_int", "default", }, weightVal = { 300, 500, }, }, - ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1767", statOrder = { 1767 }, level = 1, group = "FireAndColdResistance", weightKey = { "not_int", "default", }, weightVal = { 450, 250, }, }, - ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1768", statOrder = { 1768 }, level = 1, group = "FireAndLightningResistance", weightKey = { "not_dex", "default", }, weightVal = { 450, 250, }, }, - ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1769", statOrder = { 1769 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "not_str", "default", }, weightVal = { 450, 250, }, }, - ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 300, }, }, - ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100, }, }, - ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 200, 400, }, }, - ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(10-14)% increased Stun and Block Recovery", statOrderKey = "958", statOrder = { 958 }, level = 1, group = "StunRecovery", weightKey = { "not_str", "default", }, weightVal = { 200, 400, }, }, - ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrderKey = "946", statOrder = { 946 }, level = 1, group = "ManaCostReduction", weightKey = { "default", }, weightVal = { 500, }, }, - ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrderKey = "1290", statOrder = { 1290 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curse Skills", statOrderKey = "1291", statOrder = { 1291 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrderKey = "911", statOrder = { 911 }, level = 1, group = "AvoidFreeze", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrderKey = "910", statOrder = { 910 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrderKey = "1101", statOrder = { 1101 }, level = 1, group = "ChanceToFreeze", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrderKey = "1099", statOrder = { 1099 }, level = 1, group = "ChanceToIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrderKey = "1105", statOrder = { 1105 }, level = 1, group = "ChanceToShock", weightKey = { "default", }, weightVal = { 0, }, }, - ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrderKey = "1192", statOrder = { 1192 }, level = 1, group = "EnduranceChargeDuration", weightKey = { "not_str", "default", }, weightVal = { 0, 0, }, }, - ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrderKey = "1194", statOrder = { 1194 }, level = 1, group = "FrenzyChargeDuration", weightKey = { "not_dex", "default", }, weightVal = { 0, 0, }, }, - ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrderKey = "1208", statOrder = { 1208 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrderKey = "1068", statOrder = { 1068 }, level = 1, group = "Knockback", weightKey = { "default", }, weightVal = { 250, }, }, + ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, + ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrderKey = "706", statOrder = { 706 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 350, 500, }, }, + ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(6-8)% increased maximum Mana", statOrderKey = "712", statOrder = { 712 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 500, 250, }, }, + ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrderKey = "715", statOrder = { 715 }, level = 1, group = "ManaRegeneration", weightKey = { "not_int", "default", }, weightVal = { 250, 500, }, }, + ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrderKey = "699", statOrder = { 699 }, level = 1, group = "EnergyShieldPercent", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrderKey = "705,711", statOrder = { 705, 711 }, level = 1, group = "IncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrderKey = "706,712", statOrder = { 706, 712 }, level = 1, group = "PercentageIncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrderKey = "699,712", statOrder = { 699, 712 }, level = 1, group = "IncreasedEnergyShieldAndMana", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrderKey = "699,706", statOrder = { 699, 706 }, level = 1, group = "IncreasedLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "755", statOrder = { 755 }, level = 1, group = "LifeLeech", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, + ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "791", statOrder = { 791 }, level = 1, group = "ManaLeech", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, + ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrderKey = "768", statOrder = { 768 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrderKey = "796", statOrder = { 796 }, level = 1, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "+(2-3) Life gained for each Enemy hit by your Attacks", statOrderKey = "828", statOrder = { 828 }, level = 1, group = "LifeGainPerTarget", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, + ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "832", statOrder = { 832 }, level = 1, group = "ManaGainPerTarget", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, + ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "+(2-3) Energy Shield gained for each Enemy hit by your Attacks", statOrderKey = "835", statOrder = { 835 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrderKey = "679", statOrder = { 679 }, level = 1, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, + ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrderKey = "688", statOrder = { 688 }, level = 1, group = "EvasionRatingPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, + ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrderKey = "679,688", statOrder = { 679, 688 }, level = 1, group = "ArmourEvasion", weightKey = { "default", }, weightVal = { 0, }, }, + ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrderKey = "679,699", statOrder = { 679, 699 }, level = 1, group = "ArmourEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrderKey = "688,699", statOrder = { 688, 699 }, level = 1, group = "EvasionEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrderKey = "1807", statOrder = { 1807 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0, }, }, + ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrderKey = "723", statOrder = { 723 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "default", }, weightVal = { 150, }, }, + ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 1, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, }, + ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrderKey = "587", statOrder = { 587 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, + ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrderKey = "587,611", statOrder = { 587, 611 }, level = 1, group = "AccuracyAndCrits", weightKey = { "not_dex", "default", }, weightVal = { 0, 150, }, }, + ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 250, }, }, + ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 250, }, }, + ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces", statOrderKey = "620", statOrder = { 620 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "mace", "specific_weapon", }, }, + ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrderKey = "623", statOrder = { 623 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "axe", "specific_weapon", }, }, + ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrderKey = "619", statOrder = { 619 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "sword", "specific_weapon", }, }, + ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrderKey = "616", statOrder = { 616 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrderKey = "617", statOrder = { 617 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrderKey = "618", statOrder = { 618 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrderKey = "622", statOrder = { 622 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrderKey = "621", statOrder = { 621 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces", statOrderKey = "644", statOrder = { 644 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "mace", "specific_weapon", }, }, + ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrderKey = "645", statOrder = { 645 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "axe", "specific_weapon", }, }, + ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrderKey = "647", statOrder = { 647 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "sword", "specific_weapon", }, }, + ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrderKey = "646", statOrder = { 646 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrderKey = "649", statOrder = { 649 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrderKey = "643", statOrder = { 643 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrderKey = "648", statOrder = { 648 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrderKey = "650", statOrder = { 650 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrderKey = "629", statOrder = { 629 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, + ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrderKey = "627", statOrder = { 627 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Weapon Critical Strike Chance while Dual Wielding", statOrderKey = "631", statOrder = { 631 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "dual_wielding_mod", }, }, + ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrderKey = "624", statOrder = { 624 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "default", }, weightVal = { 0, }, tags = { "shield_mod", }, }, + ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrderKey = "630", statOrder = { 630 }, level = 1, group = "FormCritChance", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", }, }, + ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Critical Strike Chance for Spells", statOrderKey = "610", statOrder = { 610 }, level = 1, group = "FormCritChance", weightKey = { "not_int", "default", }, weightVal = { 0, 250, }, }, + ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrderKey = "625", statOrder = { 625 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrderKey = "626", statOrder = { 626 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrderKey = "632", statOrder = { 632 }, level = 1, group = "FireCritChance", weightKey = { "not_str", "default", }, weightVal = { 200, 250, }, }, + ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrderKey = "634", statOrder = { 634 }, level = 1, group = "ColdCritChance", weightKey = { "not_dex", "default", }, weightVal = { 200, 250, }, }, + ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrderKey = "633", statOrder = { 633 }, level = 1, group = "LightningCritChance", weightKey = { "not_int", "default", }, weightVal = { 200, 250, }, }, + ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrderKey = "635", statOrder = { 635 }, level = 1, group = "ElementalCritChance", weightKey = { "default", }, weightVal = { 100, }, }, + ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrderKey = "636", statOrder = { 636 }, level = 1, group = "ChaosCritChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrderKey = "651", statOrder = { 651 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", "one_handed_mod", }, }, + ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrderKey = "628", statOrder = { 628 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrderKey = "3199", statOrder = { 3199 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "dual_wielding_mod", }, }, + ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrderKey = "654", statOrder = { 654 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, tags = { "shield_mod", }, }, + ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrderKey = "652", statOrder = { 652 }, level = 1, group = "FormCritMultiplier", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", }, }, + ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spells", statOrderKey = "642", statOrder = { 642 }, level = 1, group = "FormCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 0, 250, }, }, + ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrderKey = "655", statOrder = { 655 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrderKey = "656", statOrder = { 656 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrderKey = "657", statOrder = { 657 }, level = 1, group = "FireCritMultiplier", weightKey = { "not_str", "default", }, weightVal = { 200, 250, }, }, + ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrderKey = "659", statOrder = { 659 }, level = 1, group = "ColdCritMultiplier", weightKey = { "not_dex", "default", }, weightVal = { 200, 250, }, }, + ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrderKey = "658", statOrder = { 658 }, level = 1, group = "LightningCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 200, 250, }, }, + ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrderKey = "660", statOrder = { 660 }, level = 1, group = "ElementalCritMultiplier", weightKey = { "default", }, weightVal = { 100, }, }, + ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrderKey = "661", statOrder = { 661 }, level = 1, group = "ChaosCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, + ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 1, group = "FireResistance", weightKey = { "not_str", "default", }, weightVal = { 300, 500, }, }, + ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 1, group = "ColdResistance", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, + ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 1, group = "LightningResistance", weightKey = { "not_int", "default", }, weightVal = { 300, 500, }, }, + ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1771", statOrder = { 1771 }, level = 1, group = "FireAndColdResistance", weightKey = { "not_int", "default", }, weightVal = { 450, 250, }, }, + ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1772", statOrder = { 1772 }, level = 1, group = "FireAndLightningResistance", weightKey = { "not_dex", "default", }, weightVal = { 450, 250, }, }, + ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1773", statOrder = { 1773 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "not_str", "default", }, weightVal = { 450, 250, }, }, + ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 300, }, }, + ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100, }, }, + ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrderKey = "932", statOrder = { 932 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 200, 400, }, }, + ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(10-14)% increased Stun and Block Recovery", statOrderKey = "962", statOrder = { 962 }, level = 1, group = "StunRecovery", weightKey = { "not_str", "default", }, weightVal = { 200, 400, }, }, + ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrderKey = "950", statOrder = { 950 }, level = 1, group = "ManaCostReduction", weightKey = { "default", }, weightVal = { 500, }, }, + ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrderKey = "1294", statOrder = { 1294 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curse Skills", statOrderKey = "1295", statOrder = { 1295 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, + ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, + ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, + ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrderKey = "915", statOrder = { 915 }, level = 1, group = "AvoidFreeze", weightKey = { "default", }, weightVal = { 0, }, }, + ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrderKey = "914", statOrder = { 914 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0, }, }, + ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrderKey = "1105", statOrder = { 1105 }, level = 1, group = "ChanceToFreeze", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrderKey = "1103", statOrder = { 1103 }, level = 1, group = "ChanceToIgnite", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ChanceToShock", weightKey = { "default", }, weightVal = { 0, }, }, + ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrderKey = "1196", statOrder = { 1196 }, level = 1, group = "EnduranceChargeDuration", weightKey = { "not_str", "default", }, weightVal = { 0, 0, }, }, + ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrderKey = "1198", statOrder = { 1198 }, level = 1, group = "FrenzyChargeDuration", weightKey = { "not_dex", "default", }, weightVal = { 0, 0, }, }, + ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrderKey = "1212", statOrder = { 1212 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, + ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrderKey = "1072", statOrder = { 1072 }, level = 1, group = "Knockback", weightKey = { "default", }, weightVal = { 250, }, }, ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "415", statOrder = { 415 }, level = 1, group = "FormBlock", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350, }, tags = { "dual_wielding_mod", }, }, ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrderKey = "401", statOrder = { 401 }, level = 1, group = "FormBlock", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350, }, tags = { "shield_mod", }, }, ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrderKey = "409", statOrder = { 409 }, level = 1, group = "FormBlock", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+1% Chance to Block Spell Damage while Dual Wielding", statOrderKey = "403", statOrder = { 403 }, level = 1, group = "FormSpellBlock", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350, }, tags = { "dual_wielding_mod", }, }, ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+1% Chance to Block Spell Damage while holding a Shield", statOrderKey = "402", statOrder = { 402 }, level = 1, group = "FormSpellBlock", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350, }, tags = { "shield_mod", }, }, ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+1% Chance to Block Spell Damage while wielding a Staff", statOrderKey = "406", statOrder = { 406 }, level = 1, group = "FormSpellBlock", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrderKey = "3592", statOrder = { 3592 }, level = 1, group = "FreezeDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrderKey = "922", statOrder = { 922 }, level = 1, group = "ShockDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrderKey = "924", statOrder = { 924 }, level = 1, group = "BurnDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrderKey = "923,1101", statOrder = { 923, 1101 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350, }, }, - ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrderKey = "922,1105", statOrder = { 922, 1105 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_int", "default", }, weightVal = { 250, 350, }, }, - ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrderKey = "924,1099", statOrder = { 924, 1099 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrderKey = "2134,2137", statOrder = { 2134, 2137 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350, }, }, - ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrderKey = "1490,3447", statOrder = { 1490, 3447 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrderKey = "2132", statOrder = { 2132 }, level = 1, group = "PoisonDamage", weightKey = { "not_dex", "default", }, weightVal = { 250, 500, }, }, - ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrderKey = "2133", statOrder = { 2133 }, level = 1, group = "BleedingDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 500, }, }, - ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrderKey = "942", statOrder = { 942 }, level = 1, group = "BurnDamage", weightKey = { "default", }, weightVal = { 500, }, }, - ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrderKey = "698", statOrder = { 698 }, level = 1, group = "EnergyShieldDelay", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrderKey = "701", statOrder = { 701 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrderKey = "1871", statOrder = { 1871 }, level = 1, group = "MinionBlockChance", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, - ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 1, group = "MinionLife", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, - ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(6-10)% to all Elemental Resistances", statOrderKey = "1879", statOrder = { 1879 }, level = 1, group = "MinionElementalResistances", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, + ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrderKey = "3597", statOrder = { 3597 }, level = 1, group = "FreezeDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrderKey = "926", statOrder = { 926 }, level = 1, group = "ShockDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrderKey = "928", statOrder = { 928 }, level = 1, group = "BurnDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrderKey = "927,1105", statOrder = { 927, 1105 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350, }, }, + ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrderKey = "926,1109", statOrder = { 926, 1109 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_int", "default", }, weightVal = { 250, 350, }, }, + ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrderKey = "928,1103", statOrder = { 928, 1103 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, + ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrderKey = "2139,2142", statOrder = { 2139, 2142 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350, }, }, + ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrderKey = "1494,3452", statOrder = { 1494, 3452 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, + ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrderKey = "2137", statOrder = { 2137 }, level = 1, group = "PoisonDamage", weightKey = { "not_dex", "default", }, weightVal = { 250, 500, }, }, + ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrderKey = "2138", statOrder = { 2138 }, level = 1, group = "BleedingDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 500, }, }, + ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrderKey = "946", statOrder = { 946 }, level = 1, group = "BurnDamage", weightKey = { "default", }, weightVal = { 500, }, }, + ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrderKey = "700", statOrder = { 700 }, level = 1, group = "EnergyShieldDelay", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrderKey = "703", statOrder = { 703 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, + ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrderKey = "1875", statOrder = { 1875 }, level = 1, group = "MinionBlockChance", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, + ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 1, group = "MinionLife", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, + ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(6-10)% to all Elemental Resistances", statOrderKey = "1883", statOrder = { 1883 }, level = 1, group = "MinionElementalResistances", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrderKey = "430", statOrder = { 430 }, level = 1, group = "TotemDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrderKey = "854", statOrder = { 854 }, level = 1, group = "IncreasedTotemLife", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrderKey = "1758", statOrder = { 1758 }, level = 1, group = "TotemElementalResistances", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(3-4)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3580", statOrder = { 3580 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0, }, }, - ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(3-4)% to Cold Damage over Time Multiplier", statOrderKey = "3618", statOrder = { 3618 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "not_str", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, + ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrderKey = "858", statOrder = { 858 }, level = 1, group = "IncreasedTotemLife", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, + ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrderKey = "1762", statOrder = { 1762 }, level = 1, group = "TotemElementalResistances", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, + ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(3-4)% to Non-Ailment Chaos Damage over Time Multiplier", statOrderKey = "3585", statOrder = { 3585 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0, }, }, + ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(3-4)% to Cold Damage over Time Multiplier", statOrderKey = "3623", statOrder = { 3623 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "not_str", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, } \ No newline at end of file diff --git a/Data/3_0/ModJewelAbyss.lua b/Data/3_0/ModJewelAbyss.lua index c96ff08c1..e422e4121 100644 --- a/Data/3_0/ModJewelAbyss.lua +++ b/Data/3_0/ModJewelAbyss.lua @@ -2,490 +2,490 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1129", statOrder = { 1129 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "937", statOrder = { 937 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "939", statOrder = { 939 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "940", statOrder = { 940 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "1994", statOrder = { 1994 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have +(3-5)% additional Critical Stike Chance against you", statOrderKey = "2095", statOrder = { 2095 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0, }, }, - ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2065", statOrder = { 2065 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0, }, }, - ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2064", statOrder = { 2064 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2066", statOrder = { 2066 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2067", statOrder = { 2067 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0, }, }, - ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2068", statOrder = { 2068 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0, }, }, - ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2063", statOrder = { 2063 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 0, }, }, - ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3502", statOrder = { 3502 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "5082", statOrder = { 5082 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of non-Damaging Ailments on Enemies", statOrderKey = "4755", statOrder = { 4755 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "945", statOrder = { 945 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 1000, }, }, + ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1133", statOrder = { 1133 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "941", statOrder = { 941 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "943", statOrder = { 943 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "944", statOrder = { 944 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "942", statOrder = { 942 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "1998", statOrder = { 1998 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0, }, }, + ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (3-5)% increased Critical Strike Chance against you", statOrderKey = "2100", statOrder = { 2100 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0, }, }, + ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2069", statOrder = { 2069 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0, }, }, + ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2068", statOrder = { 2068 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0, }, }, + ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2070", statOrder = { 2070 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0, }, }, + ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2071", statOrder = { 2071 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0, }, }, + ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2072", statOrder = { 2072 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0, }, }, + ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2067", statOrder = { 2067 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 0, }, }, + ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3507", statOrder = { 3507 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "5094", statOrder = { 5094 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of non-Damaging Ailments on Enemies", statOrderKey = "4767", statOrder = { 4767 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "949", statOrder = { 949 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 1000, }, }, ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrderKey = "428", statOrder = { 428 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3435", statOrder = { 3435 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1047", statOrder = { 1047 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1292", statOrder = { 1292 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2063", statOrder = { 2063 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(25-30) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000, }, }, - ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(31-35) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000, }, }, - ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(36-45) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(46-50) to maximum Life", statOrderKey = "703", statOrder = { 703 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(25-30) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(31-35) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(36-45) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(46-50) to maximum Mana", statOrderKey = "709", statOrder = { 709 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(6-10)% increased Effect of Chill", statOrderKey = "3595", statOrder = { 3595 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500, }, }, - ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(6-10)% increased Effect of Shock", statOrderKey = "4900", statOrder = { 4900 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500, }, }, + ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3440", statOrder = { 3440 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1051", statOrder = { 1051 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1296", statOrder = { 1296 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 1000, }, }, + ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2067", statOrder = { 2067 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(25-30) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000, }, }, + ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(31-35) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000, }, }, + ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(36-45) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(46-50) to maximum Life", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(25-30) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(31-35) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(36-45) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(46-50) to maximum Mana", statOrderKey = "711", statOrder = { 711 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(6-10)% increased Effect of Chill", statOrderKey = "3600", statOrder = { 3600 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500, }, }, + ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(6-10)% increased Effect of Shock", statOrderKey = "4912", statOrder = { 4912 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500, }, }, ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrderKey = "425", statOrder = { 425 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 500, }, }, ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrderKey = "426", statOrder = { 426 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 500, }, }, ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrderKey = "427", statOrder = { 427 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "1596", statOrder = { 1596 }, level = 1, group = "StrengthDexterity", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "1595", statOrder = { 1595 }, level = 1, group = "StrengthIntelligence", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "1597", statOrder = { 1597 }, level = 1, group = "DexterityIntelligence", weightKey = { "default", }, weightVal = { 500, }, }, + ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "1600", statOrder = { 1600 }, level = 1, group = "StrengthDexterity", weightKey = { "default", }, weightVal = { 500, }, }, + ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "1599", statOrder = { 1599 }, level = 1, group = "StrengthIntelligence", weightKey = { "default", }, weightVal = { 500, }, }, + ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "1601", statOrder = { 1601 }, level = 1, group = "DexterityIntelligence", weightKey = { "default", }, weightVal = { 500, }, }, ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrderKey = "424", statOrder = { 424 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "737", statOrder = { 737 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 400, }, }, - ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "741", statOrder = { 741 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 400, }, }, - ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "744", statOrder = { 744 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 400, }, }, - ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1767", statOrder = { 1767 }, level = 1, group = "FireAndColdResistance", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1768", statOrder = { 1768 }, level = 1, group = "FireAndLightningResistance", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1769", statOrder = { 1769 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "732", statOrder = { 732 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 200, }, }, - ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100, }, }, - ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "561", statOrder = { 561 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "597", statOrder = { 597 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "609", statOrder = { 609 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1400, }, }, - ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "637", statOrder = { 637 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900, }, }, - ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrderKey = "1201", statOrder = { 1201 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400, }, tags = { "dual_wielding_mod", "one_handed_mod", }, }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrderKey = "1203", statOrder = { 1203 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 1200, 600, }, tags = { "two_handed_mod", }, }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrderKey = "1202", statOrder = { 1202 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400, }, tags = { "shield_mod", "one_handed_mod", }, }, - ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (1-2) to (3-5) additional Fire Damage", statOrderKey = "2719", statOrder = { 2719 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (3-5) to (7-9) additional Fire Damage", statOrderKey = "2719", statOrder = { 2719 }, level = 40, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (6-8) to (10-12) additional Fire Damage", statOrderKey = "2719", statOrder = { 2719 }, level = 52, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (9-11) to (13-15) additional Fire Damage", statOrderKey = "2719", statOrder = { 2719 }, level = 62, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (12-14) to (16-18) additional Fire Damage", statOrderKey = "2719", statOrder = { 2719 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (15-17) to (22-26) additional Fire Damage", statOrderKey = "2719", statOrder = { 2719 }, level = 81, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (1-2) to (3-5) additional Cold Damage", statOrderKey = "2718", statOrder = { 2718 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (3-5) to (7-9) additional Cold Damage", statOrderKey = "2718", statOrder = { 2718 }, level = 38, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (6-8) to (10-12) additional Cold Damage", statOrderKey = "2718", statOrder = { 2718 }, level = 47, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (9-11) to (13-15) additional Cold Damage", statOrderKey = "2718", statOrder = { 2718 }, level = 56, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (12-14) to (16-18) additional Cold Damage", statOrderKey = "2718", statOrder = { 2718 }, level = 68, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (15-17) to (22-26) additional Cold Damage", statOrderKey = "2718", statOrder = { 2718 }, level = 80, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (3-5) additional Lightning Damage", statOrderKey = "2720", statOrder = { 2720 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (8-12) additional Lightning Damage", statOrderKey = "2720", statOrder = { 2720 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (13-17) additional Lightning Damage", statOrderKey = "2720", statOrder = { 2720 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (2-5) to (18-22) additional Lightning Damage", statOrderKey = "2720", statOrder = { 2720 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (2-6) to (23-29) additional Lightning Damage", statOrderKey = "2720", statOrder = { 2720 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (3-9) to (30-36) additional Lightning Damage", statOrderKey = "2720", statOrder = { 2720 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (1-2) to (3-5) additional Physical Damage", statOrderKey = "2721", statOrder = { 2721 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (3-5) to (7-9) additional Physical Damage", statOrderKey = "2721", statOrder = { 2721 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (6-8) to (10-12) additional Physical Damage", statOrderKey = "2721", statOrder = { 2721 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (9-11) to (13-15) additional Physical Damage", statOrderKey = "2721", statOrder = { 2721 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (12-14) to (16-18) additional Physical Damage", statOrderKey = "2721", statOrder = { 2721 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (15-17) to (22-26) additional Physical Damage", statOrderKey = "2721", statOrder = { 2721 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (1-2) to (3-5) additional Chaos Damage", statOrderKey = "2717", statOrder = { 2717 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (3-5) to (7-9) additional Chaos Damage", statOrderKey = "2717", statOrder = { 2717 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (6-8) to (10-12) additional Chaos Damage", statOrderKey = "2717", statOrder = { 2717 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (9-11) to (13-15) additional Chaos Damage", statOrderKey = "2717", statOrder = { 2717 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (12-14) to (16-18) additional Chaos Damage", statOrderKey = "2717", statOrder = { 2717 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (15-17) to (22-26) additional Chaos Damage", statOrderKey = "2717", statOrder = { 2717 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while Dual Wielding", statOrderKey = "1180", statOrder = { 1180 }, level = 1, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while Dual Wielding", statOrderKey = "1180", statOrder = { 1180 }, level = 40, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while Dual Wielding", statOrderKey = "1180", statOrder = { 1180 }, level = 52, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while Dual Wielding", statOrderKey = "1180", statOrder = { 1180 }, level = 62, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while Dual Wielding", statOrderKey = "1180", statOrder = { 1180 }, level = 70, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while Dual Wielding", statOrderKey = "1180", statOrder = { 1180 }, level = 81, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while Dual Wielding", statOrderKey = "1177", statOrder = { 1177 }, level = 1, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while Dual Wielding", statOrderKey = "1177", statOrder = { 1177 }, level = 38, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while Dual Wielding", statOrderKey = "1177", statOrder = { 1177 }, level = 47, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while Dual Wielding", statOrderKey = "1177", statOrder = { 1177 }, level = 56, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while Dual Wielding", statOrderKey = "1177", statOrder = { 1177 }, level = 68, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while Dual Wielding", statOrderKey = "1177", statOrder = { 1177 }, level = 80, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1183", statOrder = { 1183 }, level = 1, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1183", statOrder = { 1183 }, level = 39, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1183", statOrder = { 1183 }, level = 48, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1183", statOrder = { 1183 }, level = 58, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1183", statOrder = { 1183 }, level = 70, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1183", statOrder = { 1183 }, level = 82, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while Dual Wielding", statOrderKey = "1186", statOrder = { 1186 }, level = 1, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while Dual Wielding", statOrderKey = "1186", statOrder = { 1186 }, level = 42, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while Dual Wielding", statOrderKey = "1186", statOrder = { 1186 }, level = 54, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while Dual Wielding", statOrderKey = "1186", statOrder = { 1186 }, level = 63, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while Dual Wielding", statOrderKey = "1186", statOrder = { 1186 }, level = 72, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while Dual Wielding", statOrderKey = "1186", statOrder = { 1186 }, level = 83, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1174", statOrder = { 1174 }, level = 1, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1174", statOrder = { 1174 }, level = 42, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1174", statOrder = { 1174 }, level = 54, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1174", statOrder = { 1174 }, level = 65, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1174", statOrder = { 1174 }, level = 75, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1174", statOrder = { 1174 }, level = 84, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1182", statOrder = { 1182 }, level = 1, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1182", statOrder = { 1182 }, level = 40, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1182", statOrder = { 1182 }, level = 52, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1182", statOrder = { 1182 }, level = 62, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1182", statOrder = { 1182 }, level = 70, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1182", statOrder = { 1182 }, level = 81, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1179", statOrder = { 1179 }, level = 1, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1179", statOrder = { 1179 }, level = 38, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1179", statOrder = { 1179 }, level = 47, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1179", statOrder = { 1179 }, level = 56, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1179", statOrder = { 1179 }, level = 68, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1179", statOrder = { 1179 }, level = 80, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1185", statOrder = { 1185 }, level = 1, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1185", statOrder = { 1185 }, level = 39, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1185", statOrder = { 1185 }, level = 48, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1185", statOrder = { 1185 }, level = 58, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1185", statOrder = { 1185 }, level = 70, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1185", statOrder = { 1185 }, level = 82, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1188", statOrder = { 1188 }, level = 1, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1188", statOrder = { 1188 }, level = 42, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1188", statOrder = { 1188 }, level = 54, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1188", statOrder = { 1188 }, level = 63, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1188", statOrder = { 1188 }, level = 72, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1188", statOrder = { 1188 }, level = 83, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1176", statOrder = { 1176 }, level = 1, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1176", statOrder = { 1176 }, level = 42, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1176", statOrder = { 1176 }, level = 54, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1176", statOrder = { 1176 }, level = 65, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1176", statOrder = { 1176 }, level = 75, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1176", statOrder = { 1176 }, level = 84, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while holding a Shield", statOrderKey = "1181", statOrder = { 1181 }, level = 1, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while holding a Shield", statOrderKey = "1181", statOrder = { 1181 }, level = 40, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while holding a Shield", statOrderKey = "1181", statOrder = { 1181 }, level = 52, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while holding a Shield", statOrderKey = "1181", statOrder = { 1181 }, level = 62, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while holding a Shield", statOrderKey = "1181", statOrder = { 1181 }, level = 70, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while holding a Shield", statOrderKey = "1181", statOrder = { 1181 }, level = 81, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while holding a Shield", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while holding a Shield", statOrderKey = "1178", statOrder = { 1178 }, level = 38, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while holding a Shield", statOrderKey = "1178", statOrder = { 1178 }, level = 47, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while holding a Shield", statOrderKey = "1178", statOrder = { 1178 }, level = 56, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while holding a Shield", statOrderKey = "1178", statOrder = { 1178 }, level = 68, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while holding a Shield", statOrderKey = "1178", statOrder = { 1178 }, level = 80, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while holding a Shield", statOrderKey = "1184", statOrder = { 1184 }, level = 1, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while holding a Shield", statOrderKey = "1184", statOrder = { 1184 }, level = 39, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while holding a Shield", statOrderKey = "1184", statOrder = { 1184 }, level = 48, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while holding a Shield", statOrderKey = "1184", statOrder = { 1184 }, level = 58, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while holding a Shield", statOrderKey = "1184", statOrder = { 1184 }, level = 70, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while holding a Shield", statOrderKey = "1184", statOrder = { 1184 }, level = 82, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while holding a Shield", statOrderKey = "1187", statOrder = { 1187 }, level = 1, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while holding a Shield", statOrderKey = "1187", statOrder = { 1187 }, level = 42, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while holding a Shield", statOrderKey = "1187", statOrder = { 1187 }, level = 54, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while holding a Shield", statOrderKey = "1187", statOrder = { 1187 }, level = 63, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while holding a Shield", statOrderKey = "1187", statOrder = { 1187 }, level = 72, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while holding a Shield", statOrderKey = "1187", statOrder = { 1187 }, level = 83, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while holding a Shield", statOrderKey = "1175", statOrder = { 1175 }, level = 1, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while holding a Shield", statOrderKey = "1175", statOrder = { 1175 }, level = 42, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while holding a Shield", statOrderKey = "1175", statOrder = { 1175 }, level = 54, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while holding a Shield", statOrderKey = "1175", statOrder = { 1175 }, level = 65, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while holding a Shield", statOrderKey = "1175", statOrder = { 1175 }, level = 75, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while holding a Shield", statOrderKey = "1175", statOrder = { 1175 }, level = 84, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrderKey = "555", statOrder = { 555 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 29, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 52, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 63, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 76, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 28, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 44, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 54, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 65, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 75, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrderKey = "554", statOrder = { 554 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Wand Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Wand Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Wand Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Wand Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Dagger Attacks", statOrderKey = "1169", statOrder = { 1169 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Dagger Attacks", statOrderKey = "1169", statOrder = { 1169 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Dagger Attacks", statOrderKey = "1169", statOrder = { 1169 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Dagger Attacks", statOrderKey = "1169", statOrder = { 1169 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Claw Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Claw Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Claw Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Claw Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Sword Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Sword Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Sword Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Sword Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Axe Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Axe Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Axe Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Axe Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Mace Attacks", statOrderKey = "1170", statOrder = { 1170 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Mace Attacks", statOrderKey = "1170", statOrder = { 1170 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Mace Attacks", statOrderKey = "1170", statOrder = { 1170 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Mace Attacks", statOrderKey = "1170", statOrder = { 1170 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Staff Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Staff Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Staff Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Staff Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Bow Attacks", statOrderKey = "1143", statOrder = { 1143 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Bow Attacks", statOrderKey = "1143", statOrder = { 1143 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Bow Attacks", statOrderKey = "1143", statOrder = { 1143 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Bow Attacks", statOrderKey = "1143", statOrder = { 1143 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Wand Attacks", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Wand Attacks", statOrderKey = "1140", statOrder = { 1140 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Wand Attacks", statOrderKey = "1140", statOrder = { 1140 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Wand Attacks", statOrderKey = "1140", statOrder = { 1140 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Wand Attacks", statOrderKey = "1140", statOrder = { 1140 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Wand Attacks", statOrderKey = "1140", statOrder = { 1140 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Dagger Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Dagger Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Dagger Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Dagger Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Dagger Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Dagger Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Claw Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Claw Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Claw Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Claw Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Claw Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Claw Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Bow Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Sword Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Sword Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Sword Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Sword Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Sword Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Sword Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Axe Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Axe Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Axe Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Axe Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Axe Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Axe Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Mace Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Mace Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Mace Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Mace Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Mace Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Mace Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Staff Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Staff Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Staff Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Staff Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Staff Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Staff Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Wand Attacks", statOrderKey = "1141", statOrder = { 1141 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Wand Attacks", statOrderKey = "1141", statOrder = { 1141 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Wand Attacks", statOrderKey = "1141", statOrder = { 1141 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Wand Attacks", statOrderKey = "1141", statOrder = { 1141 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Wand Attacks", statOrderKey = "1141", statOrder = { 1141 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Wand Attacks", statOrderKey = "1141", statOrder = { 1141 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Dagger Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Dagger Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Dagger Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Dagger Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Dagger Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Dagger Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Claw Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Claw Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Claw Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Claw Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Claw Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Claw Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Bow Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Sword Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Sword Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Sword Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Sword Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Sword Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Sword Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Axe Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Axe Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Axe Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Axe Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Axe Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Axe Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Mace Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Mace Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Mace Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Mace Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Mace Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Mace Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Staff Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Staff Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Staff Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Staff Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Staff Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Staff Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Wand Attacks", statOrderKey = "1142", statOrder = { 1142 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Wand Attacks", statOrderKey = "1142", statOrder = { 1142 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Wand Attacks", statOrderKey = "1142", statOrder = { 1142 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Wand Attacks", statOrderKey = "1142", statOrder = { 1142 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Wand Attacks", statOrderKey = "1142", statOrder = { 1142 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Wand Attacks", statOrderKey = "1142", statOrder = { 1142 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Dagger Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Dagger Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Dagger Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Dagger Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Dagger Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Dagger Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Claw Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Claw Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Claw Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Claw Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Claw Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Claw Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Bow Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Sword Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Sword Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Sword Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Sword Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Sword Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Sword Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Axe Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Axe Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Axe Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Axe Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Axe Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Axe Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Mace Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Mace Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Mace Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Mace Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Mace Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Mace Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Staff Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Staff Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Staff Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Staff Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Staff Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Staff Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-10) to (14-18) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (9-12) to (19-23) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (11-15) to (24-28) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (13-19) to (28-34) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (15-21) to (34-40) Fire Damage to Attacks", statOrderKey = "518", statOrder = { 518 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-9) to (12-15) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (8-11) to (15-19) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (10-14) to (20-24) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (12-16) to (25-30) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (14-19) to (31-37) Cold Damage to Attacks", statOrderKey = "525", statOrder = { 525 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (27-29) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (35-38) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (42-45) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (2-5) to (51-55) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (2-6) to (62-68) Lightning Damage to Attacks", statOrderKey = "534", statOrder = { 534 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to (3-4) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (7-8) Physical Damage to Attacks", statOrderKey = "469", statOrder = { 469 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds 1 to (3-4) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (2-3) to (5-6) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (4-5) to (7-8) Chaos Damage to Attacks", statOrderKey = "540", statOrder = { 540 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (2-4) Life per second", statOrderKey = "4724", statOrder = { 4724 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, - ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (5-8) Life per second", statOrderKey = "4724", statOrder = { 4724 }, level = 30, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, - ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (9-12) Life per second", statOrderKey = "4724", statOrder = { 4724 }, level = 60, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, - ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "(2-4) Energy Shield Regenerated per second", statOrderKey = "3806", statOrder = { 3806 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, - ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "(5-8) Energy Shield Regenerated per second", statOrderKey = "3806", statOrder = { 3806 }, level = 30, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, - ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "(9-12) Energy Shield Regenerated per second", statOrderKey = "3806", statOrder = { 3806 }, level = 60, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, - ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "(2-4) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, - ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "(5-8) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, - ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "(9-12) Life Regenerated per second", statOrderKey = "707", statOrder = { 707 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, - ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "(0.5-1) Mana Regenerated per second", statOrderKey = "712", statOrder = { 712 }, level = 1, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, - ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "(1.1-2) Mana Regenerated per second", statOrderKey = "712", statOrder = { 712 }, level = 40, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, - ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "(2.1-3) Mana Regenerated per second", statOrderKey = "712", statOrder = { 712 }, level = 75, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, - ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3421", statOrder = { 3421 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3422", statOrder = { 3422 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0, }, }, - ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3422", statOrder = { 3422 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0, }, }, - ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4969", statOrder = { 4969 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0, }, }, - ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4969", statOrder = { 4969 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0, }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrderKey = "4716", statOrder = { 4716 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrderKey = "4716", statOrder = { 4716 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrderKey = "4717", statOrder = { 4717 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrderKey = "4717", statOrder = { 4717 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4727", statOrder = { 4727 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4727", statOrder = { 4727 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, - ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage against Abyssal Monsters", statOrderKey = "3698", statOrder = { 3698 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1000, }, }, - ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage against Abyssal Monsters", statOrderKey = "4720", statOrder = { 4720 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrderKey = "3323", statOrder = { 3323 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Extinguishing", "(6-8)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Extinguishing", "(9-10)% chance to Avoid being Ignited", statOrderKey = "912", statOrder = { 912 }, level = 30, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(6-8)% chance to Avoid being Chilled", "(6-8)% chance to Avoid being Frozen", statOrderKey = "910,911", statOrder = { 910, 911 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Warming", "(9-10)% chance to Avoid being Chilled", "(9-10)% chance to Avoid being Frozen", statOrderKey = "910,911", statOrder = { 910, 911 }, level = 30, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(6-8)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of Insulating", "(9-10)% chance to Avoid being Shocked", statOrderKey = "914", statOrder = { 914 }, level = 30, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(6-8)% chance to Avoid being Poisoned", statOrderKey = "915", statOrder = { 915 }, level = 20, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Tolerance", "(9-10)% chance to Avoid being Poisoned", statOrderKey = "915", statOrder = { 915 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Mending", "(6-8)% chance to avoid Bleeding", statOrderKey = "3145", statOrder = { 3145 }, level = 20, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of Mending", "(9-10)% chance to avoid Bleeding", statOrderKey = "3145", statOrder = { 3145 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Unwavering", "(6-8)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Unwavering", "(9-10)% chance to Avoid being Stunned", statOrderKey = "917", statOrder = { 917 }, level = 20, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrderKey = "584", statOrder = { 584 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrderKey = "1874,1875", statOrder = { 1874, 1875 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% Life per second", statOrderKey = "1878", statOrder = { 1878 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrderKey = "1877", statOrder = { 1877 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrderKey = "849", statOrder = { 849 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrderKey = "846", statOrder = { 846 }, level = 1, group = "MinionLife", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrderKey = "1879", statOrder = { 1879 }, level = 1, group = "MinionElementalResistances", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrderKey = "1880", statOrder = { 1880 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 40, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrderKey = "675", statOrder = { 675 }, level = 75, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 40, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrderKey = "681", statOrder = { 681 }, level = 75, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(25-30) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(31-35) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 40, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(36-45) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 75, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(46-50) to maximum Energy Shield", statOrderKey = "694", statOrder = { 694 }, level = 83, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3533", statOrder = { 3533 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0, }, }, - ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrderKey = "3321", statOrder = { 3321 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, - ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrderKey = "4740", statOrder = { 4740 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, - ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrderKey = "3684", statOrder = { 3684 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0, }, }, - ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "3659", statOrder = { 3659 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrderKey = "3361", statOrder = { 3361 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0, }, }, - ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrderKey = "3295", statOrder = { 3295 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 0, 0, 0, }, }, - ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistance if you haven't Killed Recently", statOrderKey = "3679", statOrder = { 3679 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrderKey = "3525", statOrder = { 3525 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "(15-20)% increased Minion Damage if you've used a Minion Skill Recently", statOrderKey = "4719", statOrder = { 4719 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrderKey = "3819", statOrder = { 3819 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, - ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrderKey = "4278", statOrder = { 4278 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0, }, }, - ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "(0.5-1)% of Life Regenerated per second while moving", statOrderKey = "4068", statOrder = { 4068 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, - ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrderKey = "4792", statOrder = { 4792 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 600, 300, 300, 0, 0, }, }, - ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrderKey = "3413", statOrder = { 3413 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 1000, 500, 0, 0, }, }, - ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrderKey = "3524", statOrder = { 3524 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrderKey = "3648", statOrder = { 3648 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrderKey = "4714", statOrder = { 4714 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "2% chance to Dodge Attack and Spell Hits if you've", "been Hit Recently", statOrderKey = "3742,3742.1", statOrder = { 3742, 3742.1 }, level = 1, group = "SpellDodgeAndDodgeChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, - ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrderKey = "3191", statOrder = { 3191 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 0, 0, }, }, - ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+2% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2178", statOrder = { 2178 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1962", statOrder = { 1962 }, level = 10, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1962", statOrder = { 1962 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0, }, }, - ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2416", statOrder = { 2416 }, level = 10, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2416", statOrder = { 2416 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0, }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2051", statOrder = { 2051 }, level = 40, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2051", statOrder = { 2051 }, level = 80, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0, }, }, + ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "739", statOrder = { 739 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 400, }, }, + ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "743", statOrder = { 743 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 400, }, }, + ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "746", statOrder = { 746 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 400, }, }, + ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1771", statOrder = { 1771 }, level = 1, group = "FireAndColdResistance", weightKey = { "default", }, weightVal = { 250, }, }, + ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1772", statOrder = { 1772 }, level = 1, group = "FireAndLightningResistance", weightKey = { "default", }, weightVal = { 250, }, }, + ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1773", statOrder = { 1773 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "default", }, weightVal = { 250, }, }, + ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 200, }, }, + ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "749", statOrder = { 749 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100, }, }, + ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "563", statOrder = { 563 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "599", statOrder = { 599 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "611", statOrder = { 611 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1400, }, }, + ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "639", statOrder = { 639 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900, }, }, + ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrderKey = "1205", statOrder = { 1205 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400, }, tags = { "dual_wielding_mod", "one_handed_mod", }, }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrderKey = "1207", statOrder = { 1207 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 1200, 600, }, tags = { "two_handed_mod", }, }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrderKey = "1206", statOrder = { 1206 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400, }, tags = { "shield_mod", "one_handed_mod", }, }, + ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (1-2) to (3-5) additional Fire Damage", statOrderKey = "2724", statOrder = { 2724 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (3-5) to (7-9) additional Fire Damage", statOrderKey = "2724", statOrder = { 2724 }, level = 40, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (6-8) to (10-12) additional Fire Damage", statOrderKey = "2724", statOrder = { 2724 }, level = 52, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (9-11) to (13-15) additional Fire Damage", statOrderKey = "2724", statOrder = { 2724 }, level = 62, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (12-14) to (16-18) additional Fire Damage", statOrderKey = "2724", statOrder = { 2724 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (15-17) to (22-26) additional Fire Damage", statOrderKey = "2724", statOrder = { 2724 }, level = 81, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (1-2) to (3-5) additional Cold Damage", statOrderKey = "2723", statOrder = { 2723 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (3-5) to (7-9) additional Cold Damage", statOrderKey = "2723", statOrder = { 2723 }, level = 38, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (6-8) to (10-12) additional Cold Damage", statOrderKey = "2723", statOrder = { 2723 }, level = 47, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (9-11) to (13-15) additional Cold Damage", statOrderKey = "2723", statOrder = { 2723 }, level = 56, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (12-14) to (16-18) additional Cold Damage", statOrderKey = "2723", statOrder = { 2723 }, level = 68, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (15-17) to (22-26) additional Cold Damage", statOrderKey = "2723", statOrder = { 2723 }, level = 80, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (3-5) additional Lightning Damage", statOrderKey = "2725", statOrder = { 2725 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (8-12) additional Lightning Damage", statOrderKey = "2725", statOrder = { 2725 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (13-17) additional Lightning Damage", statOrderKey = "2725", statOrder = { 2725 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (2-5) to (18-22) additional Lightning Damage", statOrderKey = "2725", statOrder = { 2725 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (2-6) to (23-29) additional Lightning Damage", statOrderKey = "2725", statOrder = { 2725 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (3-9) to (30-36) additional Lightning Damage", statOrderKey = "2725", statOrder = { 2725 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (1-2) to (3-5) additional Physical Damage", statOrderKey = "2726", statOrder = { 2726 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (3-5) to (7-9) additional Physical Damage", statOrderKey = "2726", statOrder = { 2726 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (6-8) to (10-12) additional Physical Damage", statOrderKey = "2726", statOrder = { 2726 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (9-11) to (13-15) additional Physical Damage", statOrderKey = "2726", statOrder = { 2726 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (12-14) to (16-18) additional Physical Damage", statOrderKey = "2726", statOrder = { 2726 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (15-17) to (22-26) additional Physical Damage", statOrderKey = "2726", statOrder = { 2726 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (1-2) to (3-5) additional Chaos Damage", statOrderKey = "2722", statOrder = { 2722 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (3-5) to (7-9) additional Chaos Damage", statOrderKey = "2722", statOrder = { 2722 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (6-8) to (10-12) additional Chaos Damage", statOrderKey = "2722", statOrder = { 2722 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (9-11) to (13-15) additional Chaos Damage", statOrderKey = "2722", statOrder = { 2722 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (12-14) to (16-18) additional Chaos Damage", statOrderKey = "2722", statOrder = { 2722 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (15-17) to (22-26) additional Chaos Damage", statOrderKey = "2722", statOrder = { 2722 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while Dual Wielding", statOrderKey = "1184", statOrder = { 1184 }, level = 1, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while Dual Wielding", statOrderKey = "1184", statOrder = { 1184 }, level = 40, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while Dual Wielding", statOrderKey = "1184", statOrder = { 1184 }, level = 52, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while Dual Wielding", statOrderKey = "1184", statOrder = { 1184 }, level = 62, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while Dual Wielding", statOrderKey = "1184", statOrder = { 1184 }, level = 70, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while Dual Wielding", statOrderKey = "1184", statOrder = { 1184 }, level = 81, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while Dual Wielding", statOrderKey = "1181", statOrder = { 1181 }, level = 1, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while Dual Wielding", statOrderKey = "1181", statOrder = { 1181 }, level = 38, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while Dual Wielding", statOrderKey = "1181", statOrder = { 1181 }, level = 47, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while Dual Wielding", statOrderKey = "1181", statOrder = { 1181 }, level = 56, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while Dual Wielding", statOrderKey = "1181", statOrder = { 1181 }, level = 68, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while Dual Wielding", statOrderKey = "1181", statOrder = { 1181 }, level = 80, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1187", statOrder = { 1187 }, level = 1, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1187", statOrder = { 1187 }, level = 39, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1187", statOrder = { 1187 }, level = 48, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1187", statOrder = { 1187 }, level = 58, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1187", statOrder = { 1187 }, level = 70, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1187", statOrder = { 1187 }, level = 82, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while Dual Wielding", statOrderKey = "1190", statOrder = { 1190 }, level = 1, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while Dual Wielding", statOrderKey = "1190", statOrder = { 1190 }, level = 42, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while Dual Wielding", statOrderKey = "1190", statOrder = { 1190 }, level = 54, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while Dual Wielding", statOrderKey = "1190", statOrder = { 1190 }, level = 63, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while Dual Wielding", statOrderKey = "1190", statOrder = { 1190 }, level = 72, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while Dual Wielding", statOrderKey = "1190", statOrder = { 1190 }, level = 83, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1178", statOrder = { 1178 }, level = 42, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1178", statOrder = { 1178 }, level = 54, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1178", statOrder = { 1178 }, level = 65, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1178", statOrder = { 1178 }, level = 75, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1178", statOrder = { 1178 }, level = 84, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1186", statOrder = { 1186 }, level = 1, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1186", statOrder = { 1186 }, level = 40, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1186", statOrder = { 1186 }, level = 52, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1186", statOrder = { 1186 }, level = 62, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1186", statOrder = { 1186 }, level = 70, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1186", statOrder = { 1186 }, level = 81, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1183", statOrder = { 1183 }, level = 1, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1183", statOrder = { 1183 }, level = 38, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1183", statOrder = { 1183 }, level = 47, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1183", statOrder = { 1183 }, level = 56, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1183", statOrder = { 1183 }, level = 80, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1189", statOrder = { 1189 }, level = 1, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1189", statOrder = { 1189 }, level = 39, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1189", statOrder = { 1189 }, level = 48, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1189", statOrder = { 1189 }, level = 58, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1189", statOrder = { 1189 }, level = 70, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1189", statOrder = { 1189 }, level = 82, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1192", statOrder = { 1192 }, level = 1, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1192", statOrder = { 1192 }, level = 42, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1192", statOrder = { 1192 }, level = 54, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1192", statOrder = { 1192 }, level = 63, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1192", statOrder = { 1192 }, level = 72, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1192", statOrder = { 1192 }, level = 83, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1180", statOrder = { 1180 }, level = 1, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1180", statOrder = { 1180 }, level = 42, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1180", statOrder = { 1180 }, level = 54, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1180", statOrder = { 1180 }, level = 65, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1180", statOrder = { 1180 }, level = 75, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1180", statOrder = { 1180 }, level = 84, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0, }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while holding a Shield", statOrderKey = "1185", statOrder = { 1185 }, level = 1, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while holding a Shield", statOrderKey = "1185", statOrder = { 1185 }, level = 40, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while holding a Shield", statOrderKey = "1185", statOrder = { 1185 }, level = 52, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while holding a Shield", statOrderKey = "1185", statOrder = { 1185 }, level = 62, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while holding a Shield", statOrderKey = "1185", statOrder = { 1185 }, level = 70, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while holding a Shield", statOrderKey = "1185", statOrder = { 1185 }, level = 81, group = "WeaponClassFireDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while holding a Shield", statOrderKey = "1182", statOrder = { 1182 }, level = 1, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while holding a Shield", statOrderKey = "1182", statOrder = { 1182 }, level = 38, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while holding a Shield", statOrderKey = "1182", statOrder = { 1182 }, level = 47, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while holding a Shield", statOrderKey = "1182", statOrder = { 1182 }, level = 56, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while holding a Shield", statOrderKey = "1182", statOrder = { 1182 }, level = 68, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while holding a Shield", statOrderKey = "1182", statOrder = { 1182 }, level = 80, group = "WeaponClassColdDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while holding a Shield", statOrderKey = "1188", statOrder = { 1188 }, level = 1, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while holding a Shield", statOrderKey = "1188", statOrder = { 1188 }, level = 39, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while holding a Shield", statOrderKey = "1188", statOrder = { 1188 }, level = 48, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while holding a Shield", statOrderKey = "1188", statOrder = { 1188 }, level = 58, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while holding a Shield", statOrderKey = "1188", statOrder = { 1188 }, level = 70, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while holding a Shield", statOrderKey = "1188", statOrder = { 1188 }, level = 82, group = "WeaponClassLightningDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while holding a Shield", statOrderKey = "1191", statOrder = { 1191 }, level = 1, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while holding a Shield", statOrderKey = "1191", statOrder = { 1191 }, level = 42, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while holding a Shield", statOrderKey = "1191", statOrder = { 1191 }, level = 54, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while holding a Shield", statOrderKey = "1191", statOrder = { 1191 }, level = 63, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while holding a Shield", statOrderKey = "1191", statOrder = { 1191 }, level = 72, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while holding a Shield", statOrderKey = "1191", statOrder = { 1191 }, level = 83, group = "WeaponClassPhysicalDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while holding a Shield", statOrderKey = "1179", statOrder = { 1179 }, level = 1, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while holding a Shield", statOrderKey = "1179", statOrder = { 1179 }, level = 42, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while holding a Shield", statOrderKey = "1179", statOrder = { 1179 }, level = 54, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while holding a Shield", statOrderKey = "1179", statOrder = { 1179 }, level = 65, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while holding a Shield", statOrderKey = "1179", statOrder = { 1179 }, level = 75, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while holding a Shield", statOrderKey = "1179", statOrder = { 1179 }, level = 84, group = "WeaponClassChaosDamage", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0, }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrderKey = "557", statOrder = { 557 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 29, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 52, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 63, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrderKey = "558", statOrder = { 558 }, level = 76, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 28, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 44, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 54, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 65, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrderKey = "559", statOrder = { 559 }, level = 75, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrderKey = "556", statOrder = { 556 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrderKey = "560", statOrder = { 560 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Wand Attacks", statOrderKey = "1177", statOrder = { 1177 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Wand Attacks", statOrderKey = "1177", statOrder = { 1177 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Wand Attacks", statOrderKey = "1177", statOrder = { 1177 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Wand Attacks", statOrderKey = "1177", statOrder = { 1177 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Dagger Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Dagger Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Dagger Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Dagger Attacks", statOrderKey = "1173", statOrder = { 1173 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Claw Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Claw Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Claw Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Claw Attacks", statOrderKey = "1172", statOrder = { 1172 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Sword Attacks", statOrderKey = "1176", statOrder = { 1176 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Sword Attacks", statOrderKey = "1176", statOrder = { 1176 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Sword Attacks", statOrderKey = "1176", statOrder = { 1176 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Sword Attacks", statOrderKey = "1176", statOrder = { 1176 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Axe Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Axe Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Axe Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Axe Attacks", statOrderKey = "1171", statOrder = { 1171 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Mace Attacks", statOrderKey = "1174", statOrder = { 1174 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Mace Attacks", statOrderKey = "1174", statOrder = { 1174 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Mace Attacks", statOrderKey = "1174", statOrder = { 1174 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Mace Attacks", statOrderKey = "1174", statOrder = { 1174 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Staff Attacks", statOrderKey = "1175", statOrder = { 1175 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Staff Attacks", statOrderKey = "1175", statOrder = { 1175 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Staff Attacks", statOrderKey = "1175", statOrder = { 1175 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Staff Attacks", statOrderKey = "1175", statOrder = { 1175 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-4) Physical Damage to Bow Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "Adds (3-4) to (5-6) Physical Damage to Bow Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds (5-6) to (7-9) Physical Damage to Bow Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (7-8) to (10-12) Physical Damage to Bow Attacks", statOrderKey = "1147", statOrder = { 1147 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Wand Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Wand Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Wand Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Wand Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Wand Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Wand Attacks", statOrderKey = "1144", statOrder = { 1144 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Dagger Attacks", statOrderKey = "1165", statOrder = { 1165 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Dagger Attacks", statOrderKey = "1165", statOrder = { 1165 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Dagger Attacks", statOrderKey = "1165", statOrder = { 1165 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Dagger Attacks", statOrderKey = "1165", statOrder = { 1165 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Dagger Attacks", statOrderKey = "1165", statOrder = { 1165 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Dagger Attacks", statOrderKey = "1165", statOrder = { 1165 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Claw Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Claw Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Claw Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Claw Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Claw Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Claw Attacks", statOrderKey = "1164", statOrder = { 1164 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Bow Attacks", statOrderKey = "1163", statOrder = { 1163 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Sword Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Sword Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Sword Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Sword Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Sword Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Sword Attacks", statOrderKey = "1168", statOrder = { 1168 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Axe Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Axe Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Axe Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Axe Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Axe Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Axe Attacks", statOrderKey = "1162", statOrder = { 1162 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Mace Attacks", statOrderKey = "1166", statOrder = { 1166 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Mace Attacks", statOrderKey = "1166", statOrder = { 1166 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Mace Attacks", statOrderKey = "1166", statOrder = { 1166 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Mace Attacks", statOrderKey = "1166", statOrder = { 1166 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Mace Attacks", statOrderKey = "1166", statOrder = { 1166 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Mace Attacks", statOrderKey = "1166", statOrder = { 1166 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "Adds (1-2) to (27-28) Lightning Damage to Staff Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Staff Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Staff Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Staff Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Staff Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Staff Attacks", statOrderKey = "1167", statOrder = { 1167 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Wand Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Wand Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Wand Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Wand Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Wand Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Wand Attacks", statOrderKey = "1145", statOrder = { 1145 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Dagger Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Dagger Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Dagger Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Dagger Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Dagger Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Dagger Attacks", statOrderKey = "1158", statOrder = { 1158 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Claw Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Claw Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Claw Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Claw Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Claw Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Claw Attacks", statOrderKey = "1157", statOrder = { 1157 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Bow Attacks", statOrderKey = "1156", statOrder = { 1156 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Sword Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Sword Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Sword Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Sword Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Sword Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Sword Attacks", statOrderKey = "1161", statOrder = { 1161 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Axe Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Axe Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Axe Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Axe Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Axe Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Axe Attacks", statOrderKey = "1155", statOrder = { 1155 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Mace Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Mace Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Mace Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Mace Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Mace Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Mace Attacks", statOrderKey = "1159", statOrder = { 1159 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (7-10) to (15-18) Fire Damage to Staff Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Staff Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Staff Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Staff Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Staff Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Staff Attacks", statOrderKey = "1160", statOrder = { 1160 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Wand Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Wand Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Wand Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Wand Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Wand Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Wand Attacks", statOrderKey = "1146", statOrder = { 1146 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Dagger Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Dagger Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Dagger Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Dagger Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Dagger Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Dagger Attacks", statOrderKey = "1151", statOrder = { 1151 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Claw Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Claw Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Claw Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Claw Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Claw Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Claw Attacks", statOrderKey = "1150", statOrder = { 1150 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Bow Attacks", statOrderKey = "1149", statOrder = { 1149 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Sword Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Sword Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Sword Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Sword Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Sword Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Sword Attacks", statOrderKey = "1154", statOrder = { 1154 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Axe Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Axe Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Axe Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Axe Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Axe Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Axe Attacks", statOrderKey = "1148", statOrder = { 1148 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Mace Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Mace Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Mace Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Mace Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Mace Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Mace Attacks", statOrderKey = "1152", statOrder = { 1152 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (6-9) to (13-16) Cold Damage to Staff Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Staff Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Staff Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Staff Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Staff Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Staff Attacks", statOrderKey = "1153", statOrder = { 1153 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-10) to (14-18) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (9-12) to (19-23) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (11-15) to (24-28) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (13-19) to (28-34) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (15-21) to (34-40) Fire Damage to Attacks", statOrderKey = "520", statOrder = { 520 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-9) to (12-15) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (8-11) to (15-19) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (10-14) to (20-24) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (12-16) to (25-30) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (14-19) to (31-37) Cold Damage to Attacks", statOrderKey = "527", statOrder = { 527 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (27-29) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (35-38) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (42-45) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (2-5) to (51-55) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (2-6) to (62-68) Lightning Damage to Attacks", statOrderKey = "536", statOrder = { 536 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to (3-4) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (7-8) Physical Damage to Attacks", statOrderKey = "471", statOrder = { 471 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds 1 to (3-4) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (2-3) to (5-6) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (4-5) to (7-8) Chaos Damage to Attacks", statOrderKey = "542", statOrder = { 542 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, + ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (2-4) Life per second", statOrderKey = "4736", statOrder = { 4736 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, + ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (5-8) Life per second", statOrderKey = "4736", statOrder = { 4736 }, level = 30, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, + ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (9-12) Life per second", statOrderKey = "4736", statOrder = { 4736 }, level = 60, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, + ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "(2-4) Energy Shield Regenerated per second", statOrderKey = "3811", statOrder = { 3811 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, + ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "(5-8) Energy Shield Regenerated per second", statOrderKey = "3811", statOrder = { 3811 }, level = 30, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, + ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "(9-12) Energy Shield Regenerated per second", statOrderKey = "3811", statOrder = { 3811 }, level = 60, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, + ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "(2-4) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, + ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "(5-8) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, + ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "(9-12) Life Regenerated per second", statOrderKey = "709", statOrder = { 709 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, + ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "(0.5-1) Mana Regenerated per second", statOrderKey = "714", statOrder = { 714 }, level = 1, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, + ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "(1.1-2) Mana Regenerated per second", statOrderKey = "714", statOrder = { 714 }, level = 40, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, + ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "(2.1-3) Mana Regenerated per second", statOrderKey = "714", statOrder = { 714 }, level = 75, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, + ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0, }, tags = { "has_attack_mod", }, }, + ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3426", statOrder = { 3426 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0, }, tags = { "has_attack_mod", }, }, + ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3427", statOrder = { 3427 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0, }, }, + ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3427", statOrder = { 3427 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0, }, }, + ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4981", statOrder = { 4981 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0, }, }, + ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4981", statOrder = { 4981 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0, }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrderKey = "4728", statOrder = { 4728 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrderKey = "4728", statOrder = { 4728 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrderKey = "4729", statOrder = { 4729 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrderKey = "4729", statOrder = { 4729 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4739", statOrder = { 4739 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "4739", statOrder = { 4739 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, + ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage against Abyssal Monsters", statOrderKey = "3703", statOrder = { 3703 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1000, }, }, + ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage against Abyssal Monsters", statOrderKey = "4732", statOrder = { 4732 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, + ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrderKey = "3328", statOrder = { 3328 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "default", }, weightVal = { 1000, }, }, + ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Extinguishing", "(6-8)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300, }, }, + ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Extinguishing", "(9-10)% chance to Avoid being Ignited", statOrderKey = "916", statOrder = { 916 }, level = 30, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150, }, }, + ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(6-8)% chance to Avoid being Chilled", "(6-8)% chance to Avoid being Frozen", statOrderKey = "914,915", statOrder = { 914, 915 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300, }, }, + ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Warming", "(9-10)% chance to Avoid being Chilled", "(9-10)% chance to Avoid being Frozen", statOrderKey = "914,915", statOrder = { 914, 915 }, level = 30, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150, }, }, + ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(6-8)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 300, }, }, + ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of Insulating", "(9-10)% chance to Avoid being Shocked", statOrderKey = "918", statOrder = { 918 }, level = 30, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 150, }, }, + ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(6-8)% chance to Avoid being Poisoned", statOrderKey = "919", statOrder = { 919 }, level = 20, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300, }, }, + ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Tolerance", "(9-10)% chance to Avoid being Poisoned", statOrderKey = "919", statOrder = { 919 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150, }, }, + ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Mending", "(6-8)% chance to avoid Bleeding", statOrderKey = "3150", statOrder = { 3150 }, level = 20, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300, }, }, + ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of Mending", "(9-10)% chance to avoid Bleeding", statOrderKey = "3150", statOrder = { 3150 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150, }, }, + ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Unwavering", "(6-8)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300, }, }, + ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Unwavering", "(9-10)% chance to Avoid being Stunned", statOrderKey = "921", statOrder = { 921 }, level = 20, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150, }, }, + ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, + ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrderKey = "586", statOrder = { 586 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, + ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrderKey = "1878,1879", statOrder = { 1878, 1879 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% Life per second", statOrderKey = "1882", statOrder = { 1882 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrderKey = "1881", statOrder = { 1881 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrderKey = "853", statOrder = { 853 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrderKey = "850", statOrder = { 850 }, level = 1, group = "MinionLife", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrderKey = "1883", statOrder = { 1883 }, level = 1, group = "MinionElementalResistances", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrderKey = "1884", statOrder = { 1884 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, + ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 40, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrderKey = "677", statOrder = { 677 }, level = 75, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 40, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrderKey = "683", statOrder = { 683 }, level = 75, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(25-30) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(31-35) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 40, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(36-45) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(46-50) to maximum Energy Shield", statOrderKey = "696", statOrder = { 696 }, level = 83, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, + ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3538", statOrder = { 3538 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0, }, }, + ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrderKey = "3326", statOrder = { 3326 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, + ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrderKey = "4752", statOrder = { 4752 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, + ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrderKey = "3689", statOrder = { 3689 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0, }, }, + ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "3664", statOrder = { 3664 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, + ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrderKey = "3366", statOrder = { 3366 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0, }, }, + ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrderKey = "3300", statOrder = { 3300 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 0, 0, 0, }, }, + ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistance if you haven't Killed Recently", statOrderKey = "3684", statOrder = { 3684 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, + ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrderKey = "3530", statOrder = { 3530 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, + ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "(15-20)% increased Minion Damage if you've used a Minion Skill Recently", statOrderKey = "4731", statOrder = { 4731 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, + ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrderKey = "3824", statOrder = { 3824 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, + ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrderKey = "4283", statOrder = { 4283 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0, }, }, + ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "(0.5-1)% of Life Regenerated per second while moving", statOrderKey = "4073", statOrder = { 4073 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, + ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrderKey = "4804", statOrder = { 4804 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 600, 300, 300, 0, 0, }, }, + ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrderKey = "3418", statOrder = { 3418 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 1000, 500, 0, 0, }, }, + ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrderKey = "3529", statOrder = { 3529 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, + ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrderKey = "3653", statOrder = { 3653 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, + ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrderKey = "4726", statOrder = { 4726 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, + ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "2% chance to Dodge Attack and Spell Hits if you've", "been Hit Recently", statOrderKey = "3747,3747.1", statOrder = { 3747, 3747.1 }, level = 1, group = "SpellDodgeAndDodgeChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, + ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrderKey = "3196", statOrder = { 3196 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 0, 0, }, }, + ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+2% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2183", statOrder = { 2183 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1966", statOrder = { 1966 }, level = 10, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "1966", statOrder = { 1966 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0, }, }, + ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2421", statOrder = { 2421 }, level = 10, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0, }, }, + ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2421", statOrder = { 2421 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0, }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2055", statOrder = { 2055 }, level = 40, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2055", statOrder = { 2055 }, level = 80, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0, }, }, } \ No newline at end of file diff --git a/Data/3_0/SkillStatMap.lua b/Data/3_0/SkillStatMap.lua index 7bac8cff3..53f5ef999 100644 --- a/Data/3_0/SkillStatMap.lua +++ b/Data/3_0/SkillStatMap.lua @@ -144,13 +144,13 @@ return { skill("totemLevel", nil), }, ["spell_uncastable_if_triggerable"] = { - skill("triggered", true, { type = "SkillType", skillType = SkillType.TriggerableSpell }), + skill("triggered", true, { type = "SkillType", skillType = SkillType.Triggerable }), }, ["unique_mjolner_lightning_spells_triggered"] = { - skill("triggered", true, { type = "SkillType", skillType = SkillType.TriggerableSpell }), + skill("triggered", true, { type = "SkillType", skillType = SkillType.Triggerable }), }, ["unique_cospris_malice_cold_spells_triggered"] = { - skill("triggered", true, { type = "SkillType", skillType = SkillType.TriggerableSpell }), + skill("triggered", true, { type = "SkillType", skillType = SkillType.Triggerable }), }, ["skill_double_hits_when_dual_wielding"] = { skill("doubleHitsWhenDualWielding", true), diff --git a/Data/3_0/Skills/act_dex.lua b/Data/3_0/Skills/act_dex.lua index 01f8c0a3b..03c29a8f7 100644 --- a/Data/3_0/Skills/act_dex.lua +++ b/Data/3_0/Skills/act_dex.lua @@ -10,8 +10,8 @@ skills["AnimateWeapon"] = { name = "Animate Weapon", color = 2, description = "Animates a melee weapon to fight by your side. You cannot animate unidentified weapons.", - skillTypes = { [36] = true, [12] = true, [9] = true, [21] = true, [2] = true, [18] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [54] = true, [68] = true, [56] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Type54] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type56] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.8, minionHasItemSet = true, @@ -108,7 +108,7 @@ skills["ArcticArmour"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.029999999329448, description = "Conjures an icy barrier that chills enemies when they hit you. You drop chilled ground while moving, and take less Fire and Physical damage while stationary.", - skillTypes = { [2] = true, [5] = true, [18] = true, [12] = true, [15] = true, [27] = true, [34] = true, [16] = true, [20] = true, [75] = true, [78] = true, [79] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ColdSkill] = true, [SkillType.ManaCostPercent] = true, [SkillType.CauseElementalStatus] = true, [SkillType.Instant] = true, [SkillType.NonHitChill] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -182,7 +182,7 @@ skills["Barrage"] = { name = "Barrage", color = 2, description = "After a short preparation time, you attack repeatedly with a ranged weapon. These attacks have a small randomised spread. Only works with Bows and Wands.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, }, weaponTypes = { ["Wand"] = true, ["Bow"] = true, @@ -266,7 +266,7 @@ skills["BearTrap"] = { baseEffectiveness = 2.8499999046326, incrementalEffectiveness = 0.042500000447035, description = "Throws a trap that damages and immobilises a single enemy for a duration based on how much damage was dealt. After the immobilise expires, a debuff remains on the enemy for a duration, lowering their movement speed by an amount which lessens over time. The affected enemy will take increased damage from traps and mines until the debuff expires. Modifiers to spell damage do not affect this skill's damage.", - skillTypes = { [2] = true, [12] = true, [19] = true, [37] = true, [10] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Trap] = true, [SkillType.Hit] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 1, statMap = { @@ -347,7 +347,7 @@ skills["ChargedAttack"] = { name = "Blade Flurry", color = 2, description = "Repeatedly strike at enemies in a circle in front of you while channelling, dealing damage to and around the struck enemy. The damage is continually boosted while channelling. You unleash an additional strike for each stage reached once the channelling ends. Requires a Dagger, Claw or One-Handed Sword.", - skillTypes = { [1] = true, [11] = true, [58] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Channelled] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["One Handed Sword"] = true, @@ -441,7 +441,7 @@ skills["BladeVortex"] = { baseEffectiveness = 0.32150000333786, incrementalEffectiveness = 0.038600001484156, description = "This spell creates ethereal blades which orbit in an area around you, dealing damage every 0.6 seconds to all enemies in their radius. As more blades are added, the damage becomes greater and more frequent.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [26] = true, [36] = true, [27] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Type27] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, parts = { @@ -548,7 +548,7 @@ skills["VaalBladeVortex"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.033300001174212, description = "Creates an independently-moving vortex of ethereal blades which lasts for a duration. The vortex moves toward nearby enemies, repeatedly damaging enemies that it passes through.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [27] = true, [43] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Vaal] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -625,7 +625,7 @@ skills["Bladefall"] = { baseEffectiveness = 1.5471999645233, incrementalEffectiveness = 0.036100000143051, description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys, each wider but less damaging than the last. Enemies can be hit multiple times where these overlap.", - skillTypes = { [2] = true, [11] = true, [17] = true, [19] = true, [18] = true, [10] = true, [36] = true, [26] = true, [67] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -694,7 +694,7 @@ skills["BlastRain"] = { name = "Blast Rain", color = 2, description = "Fires an arrow up in the air, which splits and rains down in a series of explosions over an area. The explosions will always overlap on the targeted area.", - skillTypes = { [1] = true, [11] = true, [14] = true, [22] = true, [17] = true, [19] = true, [33] = true, [48] = true, [69] = true, [57] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.FireSkill] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Triggerable] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -777,8 +777,8 @@ skills["BlinkArrow"] = { name = "Blink Arrow", color = 2, description = "Fires an arrow at the target destination. When the arrow lands, you are teleported to it and a clone is summoned at your old location. The clone is a minion that uses your bow and quiver.", - skillTypes = { [14] = true, [1] = true, [9] = true, [48] = true, [21] = true, [12] = true, [22] = true, [17] = true, [19] = true, [38] = true, [57] = true, }, - minionSkillTypes = { [1] = true, [3] = true, [48] = true, }, + skillTypes = { [SkillType.ProjectileDamage] = true, [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.ProjectileAttack] = true, [SkillType.CreateMinion] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MovementSkill] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -858,7 +858,7 @@ skills["BloodRage"] = { name = "Blood Rage", color = 2, description = "Adds a buff that deals Physical Damage over time, while increasing Attack Speed and Life Leech. Killing an enemy while this buff is active refreshes the buff duration, and can grant a Frenzy Charge.", - skillTypes = { [2] = true, [5] = true, [12] = true, [18] = true, [36] = true, [75] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -947,7 +947,7 @@ skills["BurningArrow"] = { baseEffectiveness = 2.7778000831604, incrementalEffectiveness = 0.050000000745058, description = "Fires an arrow that deals fire damage to its target and has an increased chance of igniting it.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [33] = true, [53] = true, [55] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.FireSkill] = true, [SkillType.Type53] = true, [SkillType.Type55] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1019,7 +1019,7 @@ skills["VaalBurningArrow"] = { baseEffectiveness = 2.9667000770569, incrementalEffectiveness = 0.050000000745058, description = "Fires an arrow that explodes, dealing fire damage to its target and other nearby enemies, with an increased chance of igniting them.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [11] = true, [43] = true, [33] = true, [55] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Vaal] = true, [SkillType.FireSkill] = true, [SkillType.Type55] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1096,7 +1096,7 @@ skills["PoisonArrow"] = { baseEffectiveness = 6.5, incrementalEffectiveness = 0.052000001072884, description = "Fires an arrow which deals chaos damage in an area on impact, and spreads caustic ground. Enemies standing on the caustic ground take chaos damage over time.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [11] = true, [12] = true, [17] = true, [19] = true, [22] = true, [40] = true, [50] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1174,7 +1174,7 @@ skills["ChargedDash"] = { name = "Charged Dash", color = 2, description = "Channel to project an illusion which you steer. You gain stages while it moves, until it stops at a maximum total distance. Waves of area damage frequently pulse along its path, based on your attack speed. Stop channelling to teleport to the illusion, dealing a final wave of damage.", - skillTypes = { [38] = true, [11] = true, [10] = true, [58] = true, [1] = true, [24] = true, [35] = true, }, + skillTypes = { [SkillType.MovementSkill] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Channelled] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.LightningSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1268,7 +1268,7 @@ skills["CorpseEruption"] = { baseEffectiveness = 1.8178999423981, incrementalEffectiveness = 0.034499999135733, description = "A targeted corpse explodes, dealing area damage and turning into a volcanic geyser, which will repeatedly unleash projectiles sequentially over the surrounding area for a duration. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected.", - skillTypes = { [2] = true, [11] = true, [33] = true, [12] = true, [3] = true, [26] = true, [17] = true, [18] = true, [19] = true, [36] = true, [10] = true, [67] = true, [3] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.Hit] = true, [SkillType.SpellCanCascade] = true, [SkillType.Projectile] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, parts = { @@ -1355,7 +1355,7 @@ skills["Cyclone"] = { name = "Cyclone", color = 2, description = "Damage enemies around you, then perform a spinning series of attacks as you travel to a target location. Cannot be supported by Ruthless or Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, [65] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, [SkillType.Type65] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -1445,7 +1445,7 @@ skills["VaalCyclone"] = { name = "Vaal Cyclone", color = 2, description = "Spin and attack in place, damaging nearby enemies and pulling others towards you. Cannot be supported by Ruthless.", - skillTypes = { [1] = true, [11] = true, [24] = true, [12] = true, [43] = true, [65] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Type65] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -1534,7 +1534,7 @@ skills["Desecrate"] = { baseEffectiveness = 1.6000000238419, incrementalEffectiveness = 0.046500001102686, description = "Desecrates the ground, summoning corpses and dealing chaos damage to all enemies in the area. The corpses will be chosen from the monsters in the current area and any Spectres that have existed in this instance.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [36] = true, [40] = true, [26] = true, [50] = true, [67] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.DamageOverTime] = true, [SkillType.SpellCanRepeat] = true, [SkillType.ChaosSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -1607,7 +1607,7 @@ skills["DetonateDead"] = { baseEffectiveness = 4.0300002098083, incrementalEffectiveness = 0.031700000166893, description = "Targets a corpse, and deals spell damage to enemies around the corpse, as well as causing the corpse to explode, dealing fire damage. The explosion is not affected by modifiers to spell damage and cannot be reflected.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [67] = true, [77] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.DestroysCorpse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, parts = { @@ -1690,7 +1690,7 @@ skills["VaalDetonateDead"] = { baseEffectiveness = 6.039999961853, incrementalEffectiveness = 0.034000001847744, description = "Targets a corpse, and deals spell damage to enemies around the corpse, as well as causing the corpse to explode, dealing fire damage. The explosion is not affected by modifiers to spell damage and cannot be reflected. This will continue to target other corpses in the area, with an increasing delay between each one, until it runs out of corpses or has destroyed 22 corpses.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [43] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, parts = { @@ -1771,7 +1771,7 @@ skills["DoubleStrike"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.023299999535084, description = "Performs two fast attacks on target enemy with a melee weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1853,7 +1853,7 @@ skills["VaalDoubleStrike"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.023299999535084, description = "Performs two fast attacks on target enemy with a melee weapon, each of which summons a double of you for a duration to continuously attack monsters in this fashion.", - skillTypes = { [1] = true, [25] = true, [24] = true, [12] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1939,7 +1939,7 @@ skills["DualStrike"] = { name = "Dual Strike", color = 2, description = "Attacks with both weapons, dealing the damage of both in one strike. Dual wield only. Does not work with wands.", - skillTypes = { [1] = true, [4] = true, [25] = true, [28] = true, [24] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.DualWield] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Claw"] = true, @@ -2015,7 +2015,7 @@ skills["ElementalHit"] = { baseEffectiveness = 2.9000000953674, incrementalEffectiveness = 0.034099999815226, description = "Each attack with this skill will choose an element at random, and will only be able to deal damage of that element. If the attack hits an enemy, it will also deal damage in an area around them, with the radius being larger if that enemy is suffering from an ailment of the chosen element. It will avoid choosing the same element twice in a row.", - skillTypes = { [1] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [25] = true, [28] = true, [24] = true, [33] = true, [34] = true, [35] = true, [48] = true, [69] = true, [11] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.FireSkill] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, parts = { @@ -2121,7 +2121,7 @@ skills["EtherealKnives"] = { baseEffectiveness = 2.184700012207, incrementalEffectiveness = 0.037399999797344, description = "Fires an arc of knives in front of the caster which deals physical damage.", - skillTypes = { [2] = true, [10] = true, [3] = true, [68] = true, [18] = true, [17] = true, [19] = true, [26] = true, [36] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -2190,7 +2190,7 @@ skills["ExplosiveArrow"] = { baseEffectiveness = 1.2222000360489, incrementalEffectiveness = 0.045000001788139, description = "Fires an arrow which acts as a short duration fuse. Applying additional arrows to an enemy extends the duration. When the target dies or the fuses expire, the arrows explode, dealing fire AoE damage to nearby enemies. The AoE radius is proportional to the number of arrows upon death.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [11] = true, [12] = true, [22] = true, [17] = true, [19] = true, [33] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -2302,7 +2302,7 @@ skills["ShrapnelTrap"] = { baseEffectiveness = 1.7621999979019, incrementalEffectiveness = 0.028400000184774, description = "Throws a trap that creates a large explosion when triggered, dealing spell damage in an area. A number of smaller explosions occur around this area in quick succession after the first.", - skillTypes = { [2] = true, [10] = true, [19] = true, [11] = true, [37] = true, [33] = true, [52] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2377,7 +2377,7 @@ skills["FireTrap"] = { baseEffectiveness = 2.4110999107361, incrementalEffectiveness = 0.048300001770258, description = "Throws a trap that explodes when triggered, dealing fire damage to surrounding enemies and leaving an area of burning ground that damages enemies who walk through it.", - skillTypes = { [2] = true, [12] = true, [10] = true, [19] = true, [11] = true, [29] = true, [37] = true, [40] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.Trap] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2458,7 +2458,7 @@ skills["FlamethrowerTrap"] = { baseEffectiveness = 0.10270000249147, incrementalEffectiveness = 0.058899998664856, description = "Throws a trap that releases a number of flames in different directions around it when triggered. The flames last for a duration, rotating around the trap and repeatedly dealing damage. Burning enemies are dealt more damage.", - skillTypes = { [2] = true, [12] = true, [10] = true, [19] = true, [11] = true, [37] = true, [33] = true, [52] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, statMap = { @@ -2538,7 +2538,7 @@ skills["FlickerStrike"] = { name = "Flicker Strike", color = 2, description = "Teleports the character to a nearby monster and attacks it with a melee weapon. If no specific monster is chosen, one is picked at random. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2626,7 +2626,7 @@ skills["FreezeMine"] = { baseEffectiveness = 0.90909999608994, incrementalEffectiveness = 0.031750001013279, description = "Lays a remote mine that you can detonate to freeze all enemies in the area.", - skillTypes = { [2] = true, [10] = true, [11] = true, [41] = true, [34] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Mine] = true, [SkillType.ColdSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -2699,7 +2699,7 @@ skills["Frenzy"] = { name = "Frenzy", color = 2, description = "Performs an attack that gives the character a frenzy charge if it hits. Frenzy charges increase your attack speed.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [25] = true, [28] = true, [24] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2767,7 +2767,7 @@ skills["FrostBlades"] = { name = "Frost Blades", color = 2, description = "Attack an enemy with increased range, releasing icy blades from the targeted enemy which fly at other enemies. Requires a Melee Weapon.", - skillTypes = { [1] = true, [3] = true, [25] = true, [28] = true, [24] = true, [34] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.ColdSkill] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2861,7 +2861,7 @@ skills["Grace"] = { name = "Grace", color = 2, description = "Casts an aura that grants evasion to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -2933,7 +2933,7 @@ skills["VaalGrace"] = { name = "Vaal Grace", color = 2, description = "Casts a temporary aura that grants you and your allies the ability to dodge attacks and spells.", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3013,7 +3013,7 @@ skills["Haste"] = { name = "Haste", color = 2, description = "Casts an aura that increases the movement speed, attack speed and cast speed of you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3093,7 +3093,7 @@ skills["VaalHaste"] = { name = "Vaal Haste", color = 2, description = "Casts a temporary aura that increases the movement speed, attack speed and cast speed of you and your allies.", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3179,7 +3179,7 @@ skills["Hatred"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.025000000372529, description = "Casts an aura that grants extra cold damage based on physical damage to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [34] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3257,8 +3257,8 @@ skills["HeraldOfAgony"] = { baseEffectiveness = 0.10999999940395, incrementalEffectiveness = 0.044700000435114, description = "Grants a buff giving more poison damage and a chance to inflict poison. When you poison an enemy while you have this buff, you gain Virulence, and summon an Agony Crawler minion that uses projectile and area attacks. You will lose Virulence over time, at a rate which increases the more Virulence you have. The minion will die when you have no Virulence.", - skillTypes = { [2] = true, [5] = true, [15] = true, [16] = true, [63] = true, [9] = true, [75] = true, [50] = true, }, - minionSkillTypes = { [10] = true, [1] = true, [50] = true, [3] = true, [48] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Herald] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.ChaosSkill] = true, }, + minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Attack] = true, [SkillType.ChaosSkill] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, }, statDescriptionScope = "minion_skill_stat_descriptions", castTime = 0, minionList = { @@ -3354,7 +3354,7 @@ skills["HeraldOfIce"] = { baseEffectiveness = 1.3636000156403, incrementalEffectiveness = 0.023000000044703, description = "Channel ice through your hands, adding cold damage to spells and attacks. If you shatter an enemy, they explode and deal AoE cold damage to enemies near them. The AoE cold damage inflicted by this skill is not affected by modifiers to spell damage.", - skillTypes = { [2] = true, [5] = true, [15] = true, [16] = true, [10] = true, [11] = true, [34] = true, [27] = true, [63] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.ColdSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -3444,7 +3444,7 @@ skills["IceShot"] = { name = "Ice Shot", color = 2, description = "Fires an arrow that converts some physical damage to cold on its target and converts all physical damage to cold in a cone behind that target. Creates a patch of ground ice under the target.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [11] = true, [12] = true, [22] = true, [17] = true, [19] = true, [34] = true, [79] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -3528,7 +3528,7 @@ skills["IceTrap"] = { baseEffectiveness = 2.9586999416351, incrementalEffectiveness = 0.038100000470877, description = "Throws a trap that creates a series of icy runic explosions when triggered, dealing cold damage to all enemies caught in the blasts.", - skillTypes = { [2] = true, [10] = true, [19] = true, [11] = true, [37] = true, [34] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.ColdSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -3598,7 +3598,7 @@ skills["DoubleSlash"] = { name = "Lacerate", color = 2, description = "Slashes twice, releasing waves of force that damage enemies they hit. Enemies in the middle of the slashes can be hit by both. If you are dual wielding, you attack with your Main Hand, then your Off Hand. Can be used with Axes and Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -3687,7 +3687,7 @@ skills["LancingSteel"] = { name = "Lancing Steel", color = 2, description = "Thrust an Axe or Sword forward, releasing a primary projectile that impales enemies it hits. Additional projectiles appear nearby as smaller metal shards that fly forward after a short delay.", - skillTypes = { [1] = true, [3] = true, [10] = true, [14] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Hit] = true, [SkillType.ProjectileDamage] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -3763,7 +3763,7 @@ skills["LightningArrow"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.025000000372529, description = "Fires a charged arrow at the target, causing them to be struck by a bolt of lightning which damages nearby enemies.", - skillTypes = { [1] = true, [48] = true, [69] = true, [11] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [35] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.LightningSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -3831,7 +3831,7 @@ skills["LightningStrike"] = { name = "Lightning Strike", color = 2, description = "Infuses your melee weapon with electrical energies as you swing. In addition to converting some of your physical damage to lightning damage, the stored energy is released from the weapon as projectiles as you strike, flying out behind your target to hit farther-away enemies. The projectiles cannot miss if the melee attack hit its target.", - skillTypes = { [1] = true, [48] = true, [3] = true, [25] = true, [28] = true, [24] = true, [35] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.LightningSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -3930,7 +3930,7 @@ skills["VaalLightningStrike"] = { name = "Vaal Lightning Strike", color = 2, description = "Infuses your melee weapon with electrical energies as you swing. In addition to converting some of your physical damage to lightning damage, the stored energy becomes an orb attached to the enemy you hit, or the ground if you don't hit an enemy. The orb will periodically fire projectiles at other nearby enemies for a duration, which will also damage the enemy the orb is attached to.", - skillTypes = { [1] = true, [25] = true, [24] = true, [12] = true, [43] = true, [35] = true, [3] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.LightningSkill] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -4027,8 +4027,8 @@ skills["MirrorArrow"] = { name = "Mirror Arrow", color = 2, description = "Fires an arrow at the target destination. When the arrow lands, a clone is summoned. The clone is a minion that uses your bow and quiver.", - skillTypes = { [14] = true, [1] = true, [9] = true, [48] = true, [69] = true, [21] = true, [12] = true, [22] = true, [17] = true, [19] = true, [57] = true, }, - minionSkillTypes = { [1] = true, [3] = true, [48] = true, }, + skillTypes = { [SkillType.ProjectileDamage] = true, [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.CreateMinion] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4108,7 +4108,7 @@ skills["NewPhaseRun"] = { name = "Phase Run", color = 2, description = "Gain a buff that makes you faster, harder to detect, and grants Phasing, letting you pass through enemies. Performing any skill replaces this buff with one that boosts melee damage of skills you use yourself (it will not apply to your melee skills used by totems). Consumes Frenzy Charges to increase duration.", - skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [38] = true, [75] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.MovementSkill] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -4185,7 +4185,7 @@ skills["PoachersMark"] = { name = "Poacher's Mark", color = 2, description = "Curses all targets in an area, making them less evasive. Hitting the cursed targets will grant life and mana, and killing them will result in more flask charges and a chance to gain a frenzy charge.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -4270,7 +4270,7 @@ skills["ProjectileWeakness"] = { name = "Projectile Weakness", color = 2, description = "Curses all targets in an area, making them easier to pierce and to knock back, and increasing the damage they take from projectiles.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -4353,7 +4353,7 @@ skills["Puncture"] = { name = "Puncture", color = 2, description = "Punctures the target, causing a bleeding debuff, which will be affected by modifiers to skill duration. Puncture works with bows, daggers, claws or swords.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [12] = true, [17] = true, [19] = true, [22] = true, [25] = true, [28] = true, [24] = true, [40] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.DamageOverTime] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -4431,7 +4431,7 @@ skills["ColdResistAura"] = { name = "Purity of Ice", color = 2, description = "Casts an aura that grants cold resistance to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [34] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4507,7 +4507,7 @@ skills["ColdImpurity"] = { name = "Vaal Impurity of Ice", color = 2, description = "Casts an aura that reduces cold damage taken and provides freeze and chill immunity to you and nearby allies, and makes hits against nearby enemies ignore their cold resistance. ", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4588,7 +4588,7 @@ skills["RainOfArrows"] = { name = "Rain of Arrows", color = 2, description = "Fires multiple arrows into the air, to land in sequence after a delay, starting at the targeted location and spreading outwards in all directions. Each arrow deals damage in an area around it. Half of the arrows will land directly on targets if there are targets in their range.", - skillTypes = { [1] = true, [48] = true, [69] = true, [11] = true, [14] = true, [73] = true, [22] = true, [17] = true, [19] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4661,7 +4661,7 @@ skills["VaalRainOfArrows"] = { name = "Vaal Rain of Arrows", color = 2, description = "Fires multiple arrows into the air, to land in multiple sequences after a delay, each starting at the targeted location and spreading outwards in all directions. Each arrow deals damage in an area around it. Half of the arrows will land directly on targets if there are targets in their range.", - skillTypes = { [1] = true, [48] = true, [11] = true, [14] = true, [73] = true, [22] = true, [17] = true, [19] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4739,7 +4739,7 @@ skills["Reave"] = { name = "Reave", color = 2, description = "Attacks a small area in front of you. Each Reave that hits an enemy increases the area of effect. The area is reset after a short period without hitting anything. Only works with Daggers, Claws, and One-Handed Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["One Handed Sword"] = true, @@ -4830,7 +4830,7 @@ skills["VaalReave"] = { name = "Vaal Reave", color = 2, description = "Repeatedly attacks a large area in different directions. Each Vaal Reave that hits an enemy increases the area of effect. The area is reset after a short period without hitting anything. Only works with Daggers, Claws, and One-Handed Swords.", - skillTypes = { [1] = true, [11] = true, [24] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["One Handed Sword"] = true, @@ -4928,7 +4928,7 @@ skills["Riposte"] = { name = "Riposte", color = 2, description = "Perform a deadly counter-attack when you block. Uses both weapons while you're dual wielding.", - skillTypes = { [1] = true, [24] = true, [25] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -5009,7 +5009,7 @@ skills["ScourgeArrow"] = { name = "Scourge Arrow", color = 2, description = "Channel to infuse an arrow with chaos, gaining stages while it is held. Release to fire this piercing arrow, which leaves spore pods in its wake. Each spore pod blooms, firing a nova of thorn arrows. Modifiers that cause additional projectiles to be fired will only apply to the initial arrows, and the spore pods will be split between those arrows.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [22] = true, [10] = true, [58] = true, [50] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.Hit] = true, [SkillType.Channelled] = true, [SkillType.ChaosSkill] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5103,7 +5103,7 @@ skills["ShatteringSteel"] = { name = "Shattering Steel", color = 2, description = "Swing an Axe or Sword, releasing projectiles in sequence. The projectiles shatter when colliding with an enemy or travelling a short distance. The shattered pieces deal damage in an area in front of the impact location.", - skillTypes = { [1] = true, [3] = true, [10] = true, [14] = true, [48] = true, [11] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Hit] = true, [SkillType.ProjectileDamage] = true, [SkillType.ProjectileAttack] = true, [SkillType.Area] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -5192,7 +5192,7 @@ skills["PhysCascadeTrap"] = { baseEffectiveness = 1.452299952507, incrementalEffectiveness = 0.040899999439716, description = "Throws a trap which, once triggered, repeatedly releases a number of waves for a duration. Each wave deals damage in a series of small bursts in a line, ending with a larger burst. Modifiers to cast speed affects how frequently it releases waves.", - skillTypes = { [2] = true, [12] = true, [10] = true, [19] = true, [11] = true, [37] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -5266,7 +5266,7 @@ skills["ShrapnelShot"] = { name = "Shrapnel Shot", color = 2, description = "Fires an arrow that pierces through enemies. Arrows are fired with such force that they create a burst of lightning, damaging all enemies in a cone in front of the archer.", - skillTypes = { [1] = true, [3] = true, [68] = true, [11] = true, [22] = true, [17] = true, [19] = true, [35] = true, [48] = true, [69] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.LightningSkill] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5347,7 +5347,7 @@ skills["SiegeBallista"] = { name = "Siege Ballista", color = 2, description = "Summons a totem that attacks with piercing arrows. It attacks slowly, but deals increased damage.", - skillTypes = { [1] = true, [3] = true, [68] = true, [48] = true, [17] = true, [19] = true, [30] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5424,7 +5424,7 @@ skills["SmokeMine"] = { name = "Smoke Mine", color = 2, description = "Places a mine that will teleport you to it when detonated. It covers both your escape and arrival with a cloud of smoke that blinds enemies, and gives you a temporary buff to movement speed.", - skillTypes = { [2] = true, [11] = true, [12] = true, [38] = true, [41] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.MovementSkill] = true, [SkillType.Mine] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, statMap = { @@ -5501,7 +5501,7 @@ skills["ThrownShield"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.017799999564886, description = "Throws a spectral copy of your shield as a projectile which cannot pierce, and deals off-hand damage augmented by the defences of the shield. When it collides with something it will shatter, launching a number of smaller shards as projectiles in all directions. Modifiers that cause additional projectiles to be fired will add more shards, not more copies of the shield.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, [71] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type71] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, parts = { @@ -5610,7 +5610,7 @@ skills["ThrownWeapon"] = { name = "Spectral Throw", color = 2, description = "Throws a spectral copy of your melee weapon. It flies out and then returns to you, in a spinning attack that strikes enemies in its path.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -5687,7 +5687,7 @@ skills["VaalThrownWeapon"] = { name = "Vaal Spectral Throw", color = 2, description = "Throws a spectral copy of your melee weapon. It spirals out in a spinning attack that strikes enemies in its path.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -5770,7 +5770,7 @@ skills["RainOfSpores"] = { baseEffectiveness = 1.6000000238419, incrementalEffectiveness = 0.043200001120567, description = "Fire arrows into the air that rain down around the targeted area, dealing damage to enemies they hit and creating spore pods where they land. Each spore pod deals chaos damage over time to nearby enemies and slows their movement speed. The pods last for a duration before bursting, dealing area damage.", - skillTypes = { [1] = true, [48] = true, [69] = true, [11] = true, [14] = true, [22] = true, [17] = true, [19] = true, [10] = true, [50] = true, [12] = true, [40] = true, [73] = true, [50] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Hit] = true, [SkillType.ChaosSkill] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Type73] = true, [SkillType.ChaosSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5848,7 +5848,7 @@ skills["SplitArrow"] = { name = "Split Arrow", color = 2, description = "Fires multiple arrows at different targets.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5915,8 +5915,8 @@ skills["SummonIceGolem"] = { name = "Summon Ice Golem", color = 2, description = "Summons an Ice Golem that grants you increased Critical Strike Chance and Accuracy. The Ice Golem can use an icy barrage spell and a chilling spinning dash in addition to its melee attack.", - skillTypes = { [36] = true, [34] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, [60] = true, [62] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [3] = true, [68] = true, [2] = true, [10] = true, [38] = true, [28] = true, [79] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.MovementSkill] = true, [SkillType.AttackCanRepeat] = true, [SkillType.ChillingArea] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, minionList = { @@ -6000,7 +6000,7 @@ skills["TemporalChains"] = { name = "Temporal Chains", color = 2, description = "Curses all targets in an area, Slowing them, and making effects on them expire more slowly.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -6087,7 +6087,7 @@ skills["TornadoShot"] = { name = "Tornado Shot", color = 2, description = "Fires a piercing shot that travels until it reaches the targeted location. It will then fire projectiles out in all directions from that point.", - skillTypes = { [1] = true, [3] = true, [68] = true, [17] = true, [19] = true, [22] = true, [48] = true, [69] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -6157,7 +6157,7 @@ skills["BoneLance"] = { baseEffectiveness = 3.2646999359131, incrementalEffectiveness = 0.032499998807907, description = "Fires a projectile that will pierce through enemies to impact the ground at the targeted location, creating a Bone Archer corpse where it lands.", - skillTypes = { [2] = true, [3] = true, [68] = true, [18] = true, [19] = true, [17] = true, [36] = true, [10] = true, [26] = true, [81] = true, [11] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTrap] = true, [SkillType.Triggerable] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -6228,7 +6228,7 @@ skills["ViperStrike"] = { baseEffectiveness = 1.4800000190735, incrementalEffectiveness = 0.044799998402596, description = "Hits the enemy, adding some of your physical damage as chaos damage and applying poison. Requires a claw, dagger or sword.", - skillTypes = { [1] = true, [12] = true, [28] = true, [24] = true, [25] = true, [40] = true, [50] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, }, weaponTypes = { ["Claw"] = true, ["Thrusting One Handed Sword"] = true, @@ -6307,7 +6307,7 @@ skills["VolatileDead"] = { baseEffectiveness = 2.2228999137878, incrementalEffectiveness = 0.0337999984622, description = "Corpses near the targeted location explode, dealing damage in a small area and creating an orb which moves towards nearby enemies before dealing spell damage in a larger area. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [67] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, parts = { @@ -6388,7 +6388,7 @@ skills["WhirlingBlades"] = { name = "Whirling Blades", color = 2, description = "Dive through enemies, dealing weapon damage. Only works with daggers, claws and one handed swords. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["Claw"] = true, @@ -6459,7 +6459,7 @@ skills["WildStrike"] = { name = "Wild Strike", color = 2, description = "Your melee weapon strikes an enemy, converting physical damage to a random element. Then, depending on the element chosen, it releases a fiery explosion, an arcing bolt of lightning, or an icy wave.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [35] = true, [34] = true, [33] = true, [3] = true, [11] = true, [23] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.LightningSkill] = true, [SkillType.ColdSkill] = true, [SkillType.FireSkill] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Chaining] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, diff --git a/Data/3_0/Skills/act_int.lua b/Data/3_0/Skills/act_int.lua index 0b2ed6499..f698db04e 100644 --- a/Data/3_0/Skills/act_int.lua +++ b/Data/3_0/Skills/act_int.lua @@ -12,7 +12,7 @@ skills["Arc"] = { baseEffectiveness = 1.722000002861, incrementalEffectiveness = 0.032299999147654, description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", - skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Chaining] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.7, statMap = { @@ -89,7 +89,7 @@ skills["VaalArcChain"] = { baseEffectiveness = 4.5599999427795, incrementalEffectiveness = 0.032999999821186, description = "A shocking arc of lightning stretches from the caster to a targeted enemy and chains to other nearby enemies. Each time the beam chains it will also chain simultaneously to a second enemy, but no enemy can be hit twice by the beams. Also grants a buff making you lucky when damaging enemies with Arc for a short duration.", - skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [43] = true, [35] = true, [12] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Chaining] = true, [SkillType.Vaal] = true, [SkillType.LightningSkill] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, statMap = { @@ -167,7 +167,7 @@ skills["ArcticBreath"] = { baseEffectiveness = 1.360200047493, incrementalEffectiveness = 0.035599999129772, description = "Fire an icy projectile that bursts on impact or when reaching the targeted area, dealing area damage and creating a chilling area that deals cold damage over time. This area will creep across the ground towards nearby enemies until its duration expires.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [12] = true, [11] = true, [26] = true, [36] = true, [34] = true, [60] = true, [79] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -242,7 +242,7 @@ skills["CataclysmSigil"] = { baseEffectiveness = 0.87849998474121, incrementalEffectiveness = 0.041400000452995, description = "Creates a magical brand which can attach to a nearby enemy. It periodically activates while attached, causing a fiery meteor to fall from the sky. The brand will detach if the enemy dies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [33] = true, [12] = true, [18] = true, [17] = true, [19] = true, [36] = true, [26] = true, [76] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Brand] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "brand_skill_stat_descriptions", castTime = 0.4, setupFunc = function(activeSkill, output) @@ -329,7 +329,7 @@ skills["AssassinsMark"] = { name = "Assassin's Mark", color = 3, description = "Curses all targets in an area, making them more vulnerable to Critical Strikes. Killing the cursed targets will grant life and mana, and a chance to gain a power charge.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -420,7 +420,7 @@ skills["BallLightning"] = { baseEffectiveness = 0.74070000648499, incrementalEffectiveness = 0.034699998795986, description = "Fires a slow-moving projectile that periodically damages enemies in an area around it with bolts of lightning.", - skillTypes = { [2] = true, [10] = true, [3] = true, [68] = true, [11] = true, [18] = true, [17] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, baseFlags = { @@ -489,7 +489,7 @@ skills["DarkRitual"] = { baseEffectiveness = 7.6178002357483, incrementalEffectiveness = 0.042300000786781, description = "Applies a debuff to enemies in an area, which deals Chaos Damage over Time. Linked curses are also applied to those enemies. The debuff deals more damage and lasts longer for each curse applied this way. This skill cannot be used by Totems, Traps, or Mines.", - skillTypes = { [2] = true, [11] = true, [12] = true, [40] = true, [52] = true, [50] = true, [26] = true, [67] = true, [36] = true, [32] = true, [59] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SpellCanCascade] = true, [SkillType.Triggerable] = true, [SkillType.Curse] = true, [SkillType.Type59] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.6, setupFunc = function(activeSkill, output) @@ -581,9 +581,9 @@ skills["SupportDarkRitual"] = { hidden = true, color = 3, support = true, - requireSkillTypes = { 80, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 64, 61, }, + requireSkillTypes = { SkillType.AppliesCurse, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.AuraDebuff, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["apply_linked_curses_with_dark_ritual"] = { @@ -650,7 +650,7 @@ skills["Blight"] = { baseEffectiveness = 2.9040999412537, incrementalEffectiveness = 0.035500001162291, description = "Apply a debuff to enemies in front of you which deals chaos damage over time. Enemies who aren't already debuffed by Blight are also hindered for a shorter secondary duration, slowing their movement. Continued channelling adds layers of damage to the debuff, each with their own duration.", - skillTypes = { [2] = true, [50] = true, [11] = true, [18] = true, [58] = true, [12] = true, [40] = true, [59] = true, [52] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Channelled] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Type59] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.3, baseFlags = { @@ -726,7 +726,7 @@ skills["VaalBlight"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.041400000452995, description = "Apply a powerful debuff to enemies around you which deals chaos damage over time. Then applies two additional layers in a larger area, growing greatly in size each time. Enemies are also substantially hindered for a shorter secondary duration, slowing their movement.", - skillTypes = { [2] = true, [50] = true, [11] = true, [18] = true, [12] = true, [40] = true, [59] = true, [52] = true, [43] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Type59] = true, [SkillType.Vaal] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.6, statMap = { @@ -806,7 +806,7 @@ skills["CorpseWarp"] = { baseEffectiveness = 1.5556000471115, incrementalEffectiveness = 0.039000000804663, description = "Your body explodes, dealing spell damage in an area around you, and a targeted corpse also explodes, dealing damage around it. Your body is recreated at the location of the corpse. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected. This spell cannot be repeated.", - skillTypes = { [38] = true, [2] = true, [10] = true, [11] = true, [18] = true, [19] = true, [17] = true, [36] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.MovementSkill] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTrap] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, parts = { @@ -906,7 +906,7 @@ skills["BoneOffering"] = { name = "Bone Offering", color = 3, description = "Consumes a corpse, granting all of your minions the power to block both attacks and spells. The skill consumes other nearby corpses, increasing the duration for each corpse consumed.", - skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [9] = true, [49] = true, [17] = true, [19] = true, [18] = true, [67] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanCascade] = true, }, statDescriptionScope = "offering_skill_stat_descriptions", castTime = 1, statMap = { @@ -984,7 +984,7 @@ skills["SigilRecall"] = { name = "Brand Recall", color = 3, description = "Recall your brands to you, detaching them from enemies, then cause them to activate. The brands will have increased attachment range until they next attach to an enemy.", - skillTypes = { [2] = true, [36] = true, [75] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -1035,7 +1035,7 @@ skills["Clarity"] = { name = "Clarity", color = 3, description = "Casts an aura that grants mana regeneration to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1108,7 +1108,7 @@ skills["VaalClarity"] = { name = "Vaal Clarity", color = 3, description = "Casts a temporary aura that lets you and your allies cast skills without paying their mana costs.", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1185,7 +1185,7 @@ skills["ColdSnap"] = { baseEffectiveness = 2.4902000427246, incrementalEffectiveness = 0.036200001835823, description = "Creates a sudden burst of cold in a targeted area, damaging enemies. This also creates an expanding area which is filled with chilled ground, and deals cold damage over time to enemies. Enemies that die while in the area have a chance to grant Frenzy Charges. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [67] = true, [12] = true, [79] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -1261,7 +1261,7 @@ skills["VaalColdSnap"] = { baseEffectiveness = 2.5650000572205, incrementalEffectiveness = 0.041900001466274, description = "Creates a sudden burst of cold around you, damaging enemies. This also creates a chilling area around you which expands and deals cold damage over time to surrounding enemies in addition to chilling them. Enemies that die while in the area grant Frenzy Charges, and you will passively gain Frenzy Charges while there are enemies in the area.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [12] = true, [43] = true, [34] = true, [79] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -1337,7 +1337,7 @@ skills["Conductivity"] = { name = "Conductivity", color = 3, description = "Curses all targets in an area, making them less resistant to lightning damage and giving them a chance to be shocked by lightning damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [45] = true, [35] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1422,7 +1422,7 @@ skills["Contagion"] = { baseEffectiveness = 2.2532999515533, incrementalEffectiveness = 0.037999998778105, description = "Unleashes a vile contagion on enemies, dealing chaos damage over time. If an enemy dies while affected by Contagion, it spreads to other enemies.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [40] = true, [50] = true, [26] = true, [36] = true, [19] = true, [52] = true, [59] = true, [67] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Type59] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -1493,7 +1493,7 @@ skills["ConversionTrap"] = { name = "Conversion Trap", color = 3, description = "Throws a trap that, when triggered by an enemy, converts that enemy to your side for a short duration. Does not affect unique monsters or players.", - skillTypes = { [2] = true, [12] = true, [19] = true, [37] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Trap] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1562,7 +1562,7 @@ skills["Convocation"] = { name = "Convocation", color = 3, description = "Recalls all minions that are following you to your location, and grants them a temporary life regeneration effect.", - skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [9] = true, [49] = true, [75] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -1638,7 +1638,7 @@ skills["DarkPact"] = { baseEffectiveness = 0.80000001192093, incrementalEffectiveness = 0.037999998778105, description = "This spell removes some life from one of your Skeleton minions near you or the targeted location to deal chaos damage in an area around it. This effect will chain to your other nearby skeletons. If you have no skeletons near you or the targeted location, it will sacrifice your own life to deal damage instead.", - skillTypes = { [2] = true, [10] = true, [19] = true, [18] = true, [11] = true, [17] = true, [49] = true, [36] = true, [26] = true, [23] = true, [50] = true, [9] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Chaining] = true, [SkillType.ChaosSkill] = true, [SkillType.Minion] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, parts = { @@ -1744,7 +1744,7 @@ skills["Despair"] = { baseEffectiveness = 0.66670000553131, incrementalEffectiveness = 0.016000000759959, description = "Curse all targets in an area, making them less resistant to chaos damage and causing them to take increased damage over time. Cursed enemies also take additional chaos damage when hit.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [50] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.ChaosSkill] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1827,7 +1827,7 @@ skills["Discharge"] = { baseEffectiveness = 1.4837000370026, incrementalEffectiveness = 0.028899999335408, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", - skillTypes = { [2] = true, [10] = true, [11] = true, [26] = true, [36] = true, [45] = true, [33] = true, [34] = true, [35] = true, [60] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, statMap = { @@ -1905,7 +1905,7 @@ skills["Discipline"] = { name = "Discipline", color = 3, description = "Casts an aura that grants additional energy shield and increased energy shield recharge rate to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1981,7 +1981,7 @@ skills["VaalDiscipline"] = { name = "Vaal Discipline", color = 3, description = "Casts a temporary aura that prevents energy shield recharge being delayed by damage taken for you and your allies.", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -2059,7 +2059,7 @@ skills["DivineTempest"] = { baseEffectiveness = 0.63160002231598, incrementalEffectiveness = 0.033399999141693, description = "Channelling draws in energy around you to repeatedly build up stages, damaging a number of nearby enemies when you do so. Release to unleash a powerful burst of energy in a beam in front of you.", - skillTypes = { [2] = true, [11] = true, [10] = true, [58] = true, [35] = true, [18] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Channelled] = true, [SkillType.LightningSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.22, parts = { @@ -2112,6 +2112,7 @@ skills["DivineTempest"] = { "divine_tempest_damage_+%_final_while_channelling", "divine_tempest_stage_on_hitting_rare_unique", "visual_hit_effect_elemental_is_holy", + "skill_can_add_multiple_charges_per_action", }, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, levels = { @@ -2161,7 +2162,7 @@ skills["ElementalWeakness"] = { name = "Elemental Weakness", color = 3, description = "Curses all targets in an area, making them less resistant to elemental damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2236,7 +2237,7 @@ skills["Enfeeble"] = { name = "Enfeeble", color = 3, description = "Curses all targets in an area, making their attacks and spells less effective.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2330,7 +2331,7 @@ skills["EssenceDrain"] = { baseEffectiveness = 4.398099899292, incrementalEffectiveness = 0.045400001108646, description = "Fires a projectile that applies a damage over time debuff when it hits. You are healed for a portion of the debuff damage. The debuff is spread by Contagion. This skill cannot be used by Traps or Mines.", - skillTypes = { [2] = true, [3] = true, [68] = true, [12] = true, [18] = true, [26] = true, [40] = true, [50] = true, [10] = true, [36] = true, [81] = true, [11] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -2405,7 +2406,7 @@ skills["FireNovaMine"] = { baseEffectiveness = 0.81950002908707, incrementalEffectiveness = 0.031500000506639, description = "Lay a remote mine that you can detonate to create a series of fire novas. Each sequential nova from the same mine will do higher damage than the previous.", - skillTypes = { [2] = true, [10] = true, [36] = true, [11] = true, [33] = true, [26] = true, [41] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Mine] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.4, baseFlags = { @@ -2480,7 +2481,7 @@ skills["Fireball"] = { baseEffectiveness = 2.9384000301361, incrementalEffectiveness = 0.041200000792742, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, parts = { @@ -2561,7 +2562,7 @@ skills["VaalFireballSpiralNova"] = { baseEffectiveness = 2.9384000301361, incrementalEffectiveness = 0.041200000792742, description = "Launches a series of fireballs in all directions around the caster.", - skillTypes = { [3] = true, [68] = true, [70] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [43] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type70] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, parts = { @@ -2644,7 +2645,7 @@ skills["Firestorm"] = { baseEffectiveness = 0.31940001249313, incrementalEffectiveness = 0.035199999809265, description = "Flaming bolts rain down over the targeted area. They explode when landing, dealing damage to nearby enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [67] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, baseFlags = { @@ -2718,7 +2719,7 @@ skills["FlameDash"] = { baseEffectiveness = 0.68889999389648, incrementalEffectiveness = 0.04450000077486, description = "Teleport to a location, damaging enemies and leaving a trail of burning ground in your wake.", - skillTypes = { [2] = true, [38] = true, [10] = true, [40] = true, [12] = true, [18] = true, [36] = true, [33] = true, [17] = true, [19] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Hit] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -2790,7 +2791,7 @@ skills["FlameWhip"] = { baseEffectiveness = 3.0369000434875, incrementalEffectiveness = 0.03070000000298, description = "Strikes enemies in front of you with a surge of flame. Burning enemies are dealt more damage.", - skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [11] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2866,7 +2867,7 @@ skills["Flameblast"] = { baseEffectiveness = 1.1175999641418, incrementalEffectiveness = 0.035199999809265, description = "Channels to build up a large explosion, which is released when you stop using the skill. The longer you channel, the larger the area of effect and damage of the explosion, up to 10 stages.", - skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [33] = true, [58] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.FireSkill] = true, [SkillType.Channelled] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.2, parts = { @@ -2960,7 +2961,7 @@ skills["VaalFlameblast"] = { baseEffectiveness = 1.1175999641418, incrementalEffectiveness = 0.035199999809265, description = "Targets an area and builds up stages in that area based on cast speed. It explodes every 5 stages, until it reaches a maximum of 15. As it gains more stages, the area gets smaller but the damage gets higher.", - skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [43] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3036,7 +3037,7 @@ skills["Flammability"] = { name = "Flammability", color = 3, description = "Curses all targets in an area, making them less resistant to fire damage and giving them a chance to be ignited by fire damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [33] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3119,7 +3120,7 @@ skills["FleshOffering"] = { name = "Flesh Offering", color = 3, description = "Consumes a corpse, which temporarily empowers your minions with swiftness. The skill consumes other nearby corpses, increasing the duration for each corpse consumed.", - skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [9] = true, [49] = true, [17] = true, [19] = true, [18] = true, [67] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanCascade] = true, }, statDescriptionScope = "offering_skill_stat_descriptions", castTime = 1, statMap = { @@ -3202,7 +3203,7 @@ skills["FreezingPulse"] = { baseEffectiveness = 2.8691000938416, incrementalEffectiveness = 0.038400001823902, description = "An icy projectile which has a chance to freeze enemies it passes through. The projectile fades quickly, reducing damage and freezing chance until it dissipates.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, setupFunc = function(activeSkill, output) @@ -3275,7 +3276,7 @@ skills["FrostBomb"] = { baseEffectiveness = 3.1817998886108, incrementalEffectiveness = 0.037999998778105, description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies for a secondary duration which reduces life and energy shield regeneration rate, and reduces energy shield recharge rate, and also inflicts Cold Exposure. When the crystal's duration ends, it explodes, dealing heavy cold damage to enemies around it.", - skillTypes = { [2] = true, [11] = true, [12] = true, [34] = true, [10] = true, [26] = true, [18] = true, [17] = true, [19] = true, [36] = true, [60] = true, [67] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.ColdSkill] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3359,7 +3360,7 @@ skills["FrostWall"] = { baseEffectiveness = 2, incrementalEffectiveness = 0.034000001847744, description = "Creates a wall of ice which holds back enemies. Targets under the wall are damaged and pushed back.", - skillTypes = { [2] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [67] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -3427,7 +3428,7 @@ skills["Frostbite"] = { name = "Frostbite", color = 3, description = "Curses all targets in an area, making them less resistant to cold damage and giving them a chance to be frozen by cold damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [34] = true, [60] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3512,7 +3513,7 @@ skills["FrostBolt"] = { baseEffectiveness = 2.8794000148773, incrementalEffectiveness = 0.039700001478195, description = "Fires a slow-moving projectile that pierces through enemies, dealing cold damage.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [34] = true, [36] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, baseFlags = { @@ -3580,7 +3581,7 @@ skills["GlacialCascade"] = { baseEffectiveness = 1.2977999448776, incrementalEffectiveness = 0.036499999463558, description = "Icicles emerge from the ground in a series of small bursts, each damaging enemies caught in the area.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -3651,7 +3652,7 @@ skills["HeraldOfThunder"] = { baseEffectiveness = 1.375, incrementalEffectiveness = 0.023000000044703, description = "Channel lightning through your hands, adding lightning damage to spells and attacks. If you kill a shocked enemy, lightning bolts will strike enemies around you for a short duration. The lightning bolt damage inflicted by this skill is not affected by modifiers to spell damage.", - skillTypes = { [2] = true, [5] = true, [15] = true, [16] = true, [10] = true, [11] = true, [12] = true, [35] = true, [27] = true, [63] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.LightningSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -3744,7 +3745,7 @@ skills["IceNova"] = { baseEffectiveness = 1.7986999750137, incrementalEffectiveness = 0.036400001496077, description = "A chilling circle of ice expands from the caster. If the caster targets near their Frostbolt projectiles, it will expand from a number of those projectiles instead. If this skill would repeat when cast this way, it will instead expand again from the same projectiles after a short delay.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -3817,7 +3818,7 @@ skills["VaalIceNova"] = { baseEffectiveness = 1.2273000478745, incrementalEffectiveness = 0.033500000834465, description = "A chilling circle of ice expands from the caster, repeating from every enemy it hits. If the caster targets near one of their Frostbolt projectiles, it will expand from the projectile instead.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [43] = true, [34] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.ColdSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -3886,7 +3887,7 @@ skills["IceSpear"] = { baseEffectiveness = 2.6526999473572, incrementalEffectiveness = 0.027000000700355, description = "Launches shards of ice in rapid succession. After travelling a short distance they change to a second form, which moves much faster and pierces through enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, parts = { @@ -3986,7 +3987,7 @@ skills["ExpandingFireCone"] = { baseEffectiveness = 0.3100999891758, incrementalEffectiveness = 0.044100001454353, description = "Continuously launches a torrent of fire from your hand, repeatedly damaging enemies. As you channel this spell longer, the flames spread wider close to you and spread longer directly in front of you. When you stop channelling you release a wave of fire damage over a wide and long area that will apply a powerful Ignite.", - skillTypes = { [2] = true, [10] = true, [18] = true, [33] = true, [58] = true, [11] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTotem] = true, [SkillType.FireSkill] = true, [SkillType.Channelled] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.2, parts = { @@ -4094,7 +4095,7 @@ skills["ClusterBurst"] = { name = "Kinetic Blast", color = 3, description = "Fires a projectile from a Wand that causes a series of small explosions surrounding its point of impact, each damaging enemies caught in the area.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, [11] = true, [17] = true, [19] = true, [22] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -4178,7 +4179,7 @@ skills["LightningTowerTrap"] = { baseEffectiveness = 0.63410001993179, incrementalEffectiveness = 0.045400001108646, description = "Throws a trap which, once triggered, will repeatedly strike multiple areas around it for a duration, dealing lightning damage. Modifiers to cast speed will affect how frequently it strikes. Has a higher chance to critically strike Shocked enemies.", - skillTypes = { [2] = true, [12] = true, [10] = true, [19] = true, [11] = true, [37] = true, [35] = true, [52] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4255,7 +4256,7 @@ skills["LightningTendrilsChannelled"] = { baseEffectiveness = 0.62199997901917, incrementalEffectiveness = 0.044900000095367, description = "While you channel this skill, it releases pulses of electrical energy, dealing lightning damage in a semicircular area in front of you.", - skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [35] = true, [58] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.LightningSkill] = true, [SkillType.Channelled] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.23, baseFlags = { @@ -4275,6 +4276,7 @@ skills["LightningTendrilsChannelled"] = { "lightning_tendrils_channelled_larger_pulse_damage_+%_final", "lightning_tendrils_channelled_larger_pulse_interval", "is_area_damage", + "skill_can_add_multiple_charges_per_action", }, statInterpolation = { 3, 3, 1, 1, 1, }, levels = { @@ -4326,7 +4328,7 @@ skills["LightningTrap"] = { baseEffectiveness = 3.146399974823, incrementalEffectiveness = 0.034400001168251, description = "Throws a trap that launches a ring of projectiles through the enemy that set it off, dealing lightning damage to them and subsequent targets.", - skillTypes = { [2] = true, [10] = true, [3] = true, [68] = true, [37] = true, [19] = true, [35] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Trap] = true, [SkillType.SkillCanMine] = true, [SkillType.LightningSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4404,7 +4406,7 @@ skills["VaalLightningTrap"] = { baseEffectiveness = 3.146399974823, incrementalEffectiveness = 0.034400001168251, description = "Throws a trap that launches a ring of projectiles through the enemy that set it off, dealing lightning damage to them and subsequent targets and leaving a trail of shocking ground.", - skillTypes = { [2] = true, [10] = true, [3] = true, [68] = true, [37] = true, [19] = true, [12] = true, [43] = true, [35] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Trap] = true, [SkillType.SkillCanMine] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.LightningSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4486,7 +4488,7 @@ skills["LightningWarp"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.037799999117851, description = "Casts a delayed teleport to a target destination. When the teleport occurs, lightning damage is dealt to the area around both where the player was and where they teleported to.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [36] = true, [38] = true, [45] = true, [35] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.MovementSkill] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "variable_duration_skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -4558,7 +4560,7 @@ skills["VaalLightningWarpInstant"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Casts a delayed teleport for nearby enemies to a target destination. When the teleport occurs, lightning damage is dealt to the enemies both before and after they teleport.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [43] = true, [35] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "variable_duration_skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4629,7 +4631,7 @@ skills["MagmaOrb"] = { baseEffectiveness = 2.605299949646, incrementalEffectiveness = 0.03660000115633, description = "Lob a fiery orb that explodes as it strikes the ground. The skill chains, releasing another fiery orb that repeats this effect.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [19] = true, [18] = true, [36] = true, [33] = true, [3] = true, [68] = true, [26] = true, [23] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Chaining] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -4701,7 +4703,7 @@ skills["DamageOverTimeAura"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.025000000372529, description = "Casts an aura that multiplies damage over time and increases skill effect duration of you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4779,7 +4781,7 @@ skills["OrbOfStorms"] = { baseEffectiveness = 1.040099978447, incrementalEffectiveness = 0.037900000810623, description = "Creates a stationary electrical orb that frequently unleashes a splitting bolt of lightning at a nearby enemy. Modifiers to cast speed will increase how frequently it does this. Using a lightning skill while inside the orb's cloud unleashes additional bolts. Casting this skill again will replace the previous orb.", - skillTypes = { [2] = true, [10] = true, [35] = true, [12] = true, [11] = true, [23] = true, [36] = true, [17] = true, [19] = true, [18] = true, [45] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.LightningSkill] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Chaining] = true, [SkillType.Triggerable] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -4850,7 +4852,7 @@ skills["PowerSiphon"] = { name = "Power Siphon", color = 3, description = "Fires your wand to unleash projectiles that fire toward enemies in front of you or to your sides, dealing increased damage and granting you a power charge if an enemy is killed by, or soon after, the hit.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -4921,7 +4923,7 @@ skills["VaalPowerSiphon"] = { name = "Vaal Power Siphon", color = 3, description = "Fires your wand simultaneously at all nearby enemies, culling those close to death and granting you a power charge for each. Cannot be supported by Volley.", - skillTypes = { [1] = true, [48] = true, [3] = true, [22] = true, [17] = true, [19] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -4996,7 +4998,7 @@ skills["Sanctify"] = { baseEffectiveness = 2.2427999973297, incrementalEffectiveness = 0.040600001811981, description = "A wave of divine fire deals damage in a line, then creates Consecrated Ground and deals damage in an area around the targeted location. A larger shockwave then expands outwards, damaging enemies standing on Consecrated Ground that were not already hit.", - skillTypes = { [2] = true, [11] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [36] = true, [26] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, parts = { @@ -5083,7 +5085,7 @@ skills["Purity"] = { name = "Purity of Elements", color = 3, description = "Casts an aura that grants elemental resistances to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5167,7 +5169,7 @@ skills["LightningResistAura"] = { name = "Purity of Lightning", color = 3, description = "Casts an aura that grants lightning resistance to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [35] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5243,7 +5245,7 @@ skills["LightningImpurity"] = { name = "Vaal Impurity of Lightning", color = 3, description = "Casts an aura that reduces lightning damage taken and provides shock immunity to you and nearby allies, and makes hits against nearby enemies ignore their lightning resistance. ", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5323,8 +5325,8 @@ skills["RaiseSpectre"] = { name = "Raise Spectre", color = 3, description = "Raises a spectral version of a defeated foe as a minion to fight for you in battle.", - skillTypes = { [2] = true, [9] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [2] = true, [10] = true, [11] = true, [3] = true, [23] = true, [12] = true, [30] = true, [37] = true, [41] = true, [40] = true, [58] = true, [32] = true, [48] = true, [68] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Chaining] = true, [SkillType.Duration] = true, [SkillType.Totem] = true, [SkillType.Trap] = true, [SkillType.Mine] = true, [SkillType.DamageOverTime] = true, [SkillType.Channelled] = true, [SkillType.Curse] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.85, minionList = { @@ -5404,8 +5406,8 @@ skills["RaiseZombie"] = { name = "Raise Zombie", color = 3, description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee attack and an area of effect slam which cannot be evaded.", - skillTypes = { [2] = true, [9] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [11] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Area] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.85, minionList = { @@ -5477,7 +5479,7 @@ skills["RighteousFire"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.035000000149012, description = "Engulfs you in magical fire that rapidly burns you and nearby enemies. Your spell damage is substantially increased while under this effect. The effect ends when you have 1 life remaining.", - skillTypes = { [2] = true, [5] = true, [11] = true, [29] = true, [40] = true, [33] = true, [18] = true, [36] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, setupFunc = function(activeSkill, output) @@ -5570,7 +5572,7 @@ skills["VaalRighteousFire"] = { name = "Vaal Righteous Fire", color = 3, description = "Sacrifices a portion of your Life and Energy Shield to engulf you in magical fire that rapidly burns nearby enemies for a duration. Your spell damage is substantially increased while under this effect.", - skillTypes = { [2] = true, [5] = true, [11] = true, [29] = true, [40] = true, [33] = true, [18] = true, [43] = true, [12] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -5650,7 +5652,7 @@ skills["FireBeam"] = { baseEffectiveness = 3.8215999603271, incrementalEffectiveness = 0.041000001132488, description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam intensifies the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam can turn.", - skillTypes = { [2] = true, [18] = true, [40] = true, [33] = true, [29] = true, [12] = true, [58] = true, [59] = true, [52] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.CausesBurning] = true, [SkillType.Duration] = true, [SkillType.Channelled] = true, [SkillType.Type59] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.5, parts = { @@ -5739,7 +5741,7 @@ skills["ShockNova"] = { baseEffectiveness = 1.7374999523163, incrementalEffectiveness = 0.039900001138449, description = "Casts a ring of Lightning around you, followed by a larger Lightning nova. Each effect hits enemies caught in their area with Lightning Damage.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, parts = { @@ -5823,7 +5825,7 @@ skills["IceSiphonTrap"] = { baseEffectiveness = 5.8765997886658, incrementalEffectiveness = 0.032499998807907, description = "Throws a trap that applies debuff beams to a number of nearby enemies for a duration. The beams chill enemies and deal cold damage over time. A beam is also applied to you, granting life and mana regeneration based on the number of debuff beams affecting enemies.", - skillTypes = { [2] = true, [12] = true, [19] = true, [11] = true, [37] = true, [34] = true, [40] = true, [59] = true, [78] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.ColdSkill] = true, [SkillType.DamageOverTime] = true, [SkillType.Type59] = true, [SkillType.NonHitChill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 1, statMap = { @@ -5917,7 +5919,7 @@ skills["Soulrend"] = { baseEffectiveness = 4.2604999542236, incrementalEffectiveness = 0.046399999409914, description = "Fires a projectile that turns towards enemies in front of it, damaging and piercing through those it hits, and leeching some of that damage as energy shield. As the projectile travels, it repeatedly applies a short but powerful chaos damage over time debuff to each enemy in an area around it.", - skillTypes = { [2] = true, [11] = true, [12] = true, [3] = true, [40] = true, [10] = true, [50] = true, [26] = true, [36] = true, [17] = true, [19] = true, [18] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.DamageOverTime] = true, [SkillType.Hit] = true, [SkillType.ChaosSkill] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -5993,7 +5995,7 @@ skills["Spark"] = { baseEffectiveness = 2.7592000961304, incrementalEffectiveness = 0.030500000342727, description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, baseFlags = { @@ -6064,7 +6066,7 @@ skills["VaalSparkSpiralNova"] = { baseEffectiveness = 1.4524999856949, incrementalEffectiveness = 0.02559999935329, description = "Continuously launches unpredictable sparks in all directions that move randomly until they hit an enemy or expire.", - skillTypes = { [2] = true, [3] = true, [68] = true, [70] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [43] = true, [35] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type70] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.LightningSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, baseFlags = { @@ -6136,7 +6138,7 @@ skills["SpiritOffering"] = { name = "Spirit Offering", color = 3, description = "Consumes a corpse, granting energy shield, extra chaos damage and elemental resistances to your minions. The new energy shield is recovered as it's granted. The skill consumes other nearby corpses, increasing the duration and amount of energy shield granted for each corpse consumed.", - skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [9] = true, [49] = true, [17] = true, [19] = true, [18] = true, [67] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanCascade] = true, }, statDescriptionScope = "offering_skill_stat_descriptions", castTime = 1, statMap = { @@ -6216,7 +6218,7 @@ skills["ConduitSigil"] = { baseEffectiveness = 0.38749998807907, incrementalEffectiveness = 0.038400001823902, description = "Creates a magical brand which can attach to a nearby enemy. It periodically activates while attached, firing beams which deal damage to nearby enemies and those around them. The brand will detach if the enemy dies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [35] = true, [23] = true, [12] = true, [18] = true, [17] = true, [19] = true, [36] = true, [45] = true, [26] = true, [76] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.LightningSkill] = true, [SkillType.Chaining] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Brand] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "brand_skill_stat_descriptions", castTime = 0.65, setupFunc = function(activeSkill, output) @@ -6303,7 +6305,7 @@ skills["StormBurstNew"] = { baseEffectiveness = 0.63929998874664, incrementalEffectiveness = 0.030099999159575, description = "Unleash orbs of energy while you channel that repeatedly jump towards the targeted location until their duration expires, dealing damage in small area after each jump. When you stop channelling, all remaining orbs explode, dealing higher damage in a larger area.", - skillTypes = { [2] = true, [10] = true, [18] = true, [35] = true, [58] = true, [11] = true, [12] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTotem] = true, [SkillType.LightningSkill] = true, [SkillType.Channelled] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, baseFlags = { @@ -6326,6 +6328,8 @@ skills["StormBurstNew"] = { "shock_art_variation", "active_skill_base_radius_+", "visual_hit_effect_elemental_is_holy", + "is_area_damage", + "skill_can_add_multiple_charges_per_action", }, statInterpolation = { 3, 3, 1, 1, 1, 1, }, levels = { @@ -6377,7 +6381,7 @@ skills["StormCall"] = { baseEffectiveness = 2.0878000259399, incrementalEffectiveness = 0.033500000834465, description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it. When this happens, it will also set off the lightning at any other markers you've cast.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [36] = true, [26] = true, [45] = true, [35] = true, [67] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, statMap = { @@ -6454,7 +6458,7 @@ skills["VaalStormCall"] = { baseEffectiveness = 1.7699999809265, incrementalEffectiveness = 0.034499999135733, description = "Sets a marker at a location. Lightning strikes random enemies around the marker repeatedly over the skill's duration, dealing damage in an area around the strike. Modifiers to the skill's duration will also affect the delay between these strikes. When the duration ends, a large bolt of lightning strikes the marker, dealing damage around it.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [43] = true, [35] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -6526,8 +6530,8 @@ skills["SummonChaosGolem"] = { name = "Summon Chaos Golem", color = 3, description = "Summons a Chaos Golem that grants you Physical Damage Reduction. The Chaos Golem can use a damage over time Chaos aura and a cascade of Chaos spikes in addition to its melee attack.", - skillTypes = { [36] = true, [50] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, [62] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [12] = true, [2] = true, [10] = true, [11] = true, [28] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.ChaosSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, minionList = { @@ -6608,8 +6612,8 @@ skills["SummonRelic"] = { name = "Summon Holy Relic", color = 3, description = "Summon a Holy Relic that stays near you. When you hit an enemy with an attack, the Holy Relic triggers a nova spell, with a very short cooldown, that deals physical damage to enemies and grants life regeneration to allies. This life regeneration is higher when applied to minions.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, - minionSkillTypes = { [10] = true, [2] = true, [11] = true, [42] = true, [52] = true, [12] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, + minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, minionList = { @@ -6682,8 +6686,8 @@ skills["SummonLightningGolem"] = { name = "Summon Lightning Golem", color = 3, description = "Summons a Lightning Golem that grants you increased Attack and Cast speed. The Lightning Golem fires a projectile spell, creates orbs of Lightning that zap nearby enemies, and casts a temporary aura that grants added Lightning Damage to spells and attacks used by the Golem and its nearby allies.", - skillTypes = { [36] = true, [35] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, [45] = true, [62] = true, }, - minionSkillTypes = { [10] = true, [11] = true, [44] = true, [3] = true, [68] = true, [12] = true, [2] = true, [5] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, }, + minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Aura] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Duration] = true, [SkillType.Spell] = true, [SkillType.Buff] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, minionList = { @@ -6763,8 +6767,8 @@ skills["SummonRagingSpirit"] = { name = "Summon Raging Spirit", color = 3, description = "Summons a short-lived flaming skull that rushes at nearby enemies and attacks them rapidly. Enemies will not directly engage these spirits, and can pass through them.", - skillTypes = { [2] = true, [9] = true, [12] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, [33] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.5, minionList = { @@ -6834,8 +6838,8 @@ skills["SummonSkeletons"] = { name = "Summon Skeleton", color = 3, description = "Summons a slow moving skeletal minion that dies after a duration. Does not require a corpse to be consumed.", - skillTypes = { [2] = true, [9] = true, [12] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [54] = true, [28] = true, [66] = true, [68] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Type54] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Type66] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.5, minionList = { @@ -6913,8 +6917,8 @@ skills["VaalSummonSkeletons"] = { name = "Vaal Summon Skeletons", color = 3, description = "Summons an army of skeletal warriors, archers and mages, led by a powerful general.", - skillTypes = { [2] = true, [9] = true, [12] = true, [21] = true, [17] = true, [18] = true, [19] = true, [43] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [3] = true, [48] = true, [68] = true, [28] = true, [2] = true, [11] = true, [66] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type66] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.8, minionList = { @@ -6997,7 +7001,7 @@ skills["TempestShield"] = { baseEffectiveness = 2.25, incrementalEffectiveness = 0.025000000372529, description = "Enchants your shield with the power of storms, which lashes out to deal arcing lightning damage to attackers when you block them. Blocking refreshes the duration of Tempest Shield.", - skillTypes = { [2] = true, [10] = true, [13] = true, [27] = true, [35] = true, [23] = true, [45] = true, [36] = true, [12] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Shield] = true, [SkillType.Type27] = true, [SkillType.LightningSkill] = true, [SkillType.Chaining] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -7079,7 +7083,7 @@ skills["FrostBoltNova"] = { baseEffectiveness = 2.117399930954, incrementalEffectiveness = 0.045499999076128, description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex which deals cold damage over time and chills enemies caught in it. If the caster targets near their Frostbolt projectiles, it will explode from a number of those projectiles instead, destroying them.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [34] = true, [36] = true, [12] = true, [60] = true, [79] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -7157,7 +7161,7 @@ skills["Purge"] = { baseEffectiveness = 2.2999999523163, incrementalEffectiveness = 0.043099999427795, description = "An expanding wave of energy surges forward, damaging enemies in a cone-shaped area over a duration. Each enemy hit is inflicted with Exposure matching the element of which they took the highest damage. Only one Wave of Conviction can be active at a time", - skillTypes = { [2] = true, [11] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [36] = true, [33] = true, [35] = true, [81] = true, [26] = true, [83] = true, [45] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.SpellCanRepeat] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.7, statMap = { @@ -7240,7 +7244,7 @@ skills["FrostFury"] = { baseEffectiveness = 0.88910001516342, incrementalEffectiveness = 0.035799998790026, description = "Channel to conjure an orb above you, which pelts nearby enemies with projectiles that impact the ground and explode. Channelling for longer builds up stages on the skill. When you stop channelling, the stages decay over a duration.", - skillTypes = { [2] = true, [58] = true, [34] = true, [10] = true, [11] = true, [12] = true, [3] = true, [18] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Channelled] = true, [SkillType.ColdSkill] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.SkillCanTotem] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, setupFunc = function(activeSkill, output) @@ -7337,7 +7341,7 @@ skills["Wither"] = { name = "Wither", color = 3, description = "Casts a debilitating debuff on enemies in an area, hindering their movement and also inflicts the Withered debuff, which increases the Chaos Damage they take and can stack up to 15 times.", - skillTypes = { [2] = true, [11] = true, [12] = true, [18] = true, [50] = true, [58] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.ChaosSkill] = true, [SkillType.Channelled] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.28, parts = { @@ -7442,7 +7446,7 @@ skills["Wrath"] = { baseEffectiveness = 2.25, incrementalEffectiveness = 0.023000000044703, description = "Casts an aura that adds lightning damage to the attacks of you and your allies, and makes your spells deal more lightning damage.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [35] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -7524,7 +7528,7 @@ skills["SpellDamageAura"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.025000000372529, description = "Casts an aura that grants bonuses to damage and critical strike chance of spells to you and your allies, and gives a chance to create Consecrated Ground against stronger enemies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { diff --git a/Data/3_0/Skills/act_str.lua b/Data/3_0/Skills/act_str.lua index af82eace3..eff7ac755 100644 --- a/Data/3_0/Skills/act_str.lua +++ b/Data/3_0/Skills/act_str.lua @@ -10,7 +10,7 @@ skills["AbyssalCry"] = { name = "Abyssal Cry", color = 1, description = "Performs a warcry, Hindering nearby enemies and causing them to explode when killed. The Hinder effect is proportional to the number of surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [11] = true, [12] = true, [50] = true, [10] = true, [74] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.ChaosSkill] = true, [SkillType.Hit] = true, [SkillType.Warcry] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -85,7 +85,7 @@ skills["TotemMelee"] = { name = "Ancestral Protector", color = 1, description = "Summons an Ancestor Totem which attacks enemies with melee strikes while you're near it. Being near it grants you more attack speed.", - skillTypes = { [1] = true, [30] = true, [25] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Totem] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -180,7 +180,7 @@ skills["AncestorTotemSlam"] = { name = "Ancestral Warchief", color = 1, description = "Summons an Ancestor Totem which attacks enemies with a powerful slam while you're near it. Being near it grants you more melee damage.", - skillTypes = { [1] = true, [30] = true, [24] = true, [11] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Totem] = true, [SkillType.Melee] = true, [SkillType.Area] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -278,7 +278,7 @@ skills["VaalAncestralWarchief"] = { name = "Vaal Ancestral Warchief", color = 1, description = "Summons an Ancestor Totem which attacks enemies with a powerful cascading slam while you're near it. If the enemies are far away, it will leap toward them as it slams. Being near it grants you more melee damage.", - skillTypes = { [1] = true, [30] = true, [24] = true, [11] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Totem] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -380,7 +380,7 @@ skills["Anger"] = { baseEffectiveness = 2.25, incrementalEffectiveness = 0.023000000044703, description = "Casts an aura that adds fire damage to the attacks and spells of you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [33] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -464,8 +464,8 @@ skills["AnimateArmour"] = { name = "Animate Guardian", color = 1, description = "Animates a melee weapon or armour, attaching it to an invisible Guardian that fights by your side. Animating multiple items attaches them to the same Guardian. You cannot animate unidentified items.", - skillTypes = { [2] = true, [9] = true, [21] = true, [18] = true, [36] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.6, minionHasItemSet = true, @@ -564,7 +564,7 @@ skills["Cleave"] = { name = "Cleave", color = 1, description = "The character swings their weapon (or both weapons if dual wielding) in an arc towards the target. Also does damage to other nearby monsters. Only works with Axes and Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -644,7 +644,7 @@ skills["ConsecratedPath"] = { name = "Consecrated Path", color = 1, description = "Slams the ground at a targeted location. If an enemy is near where you target, you'll teleport to it from a short distance away, slam, and create an area of consecrated ground. Can't be supported by Multistrike, and requires a Sword, Axe, Mace, Staff or Unarmed.", - skillTypes = { [24] = true, [1] = true, [11] = true, [38] = true, [57] = true, [10] = true, [12] = true, [33] = true, }, + skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.MovementSkill] = true, [SkillType.Triggerable] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.FireSkill] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -726,7 +726,7 @@ skills["DecoyTotem"] = { name = "Decoy Totem", color = 1, description = "Summons a totem that taunts nearby monsters to attack it.", - skillTypes = { [2] = true, [17] = true, [19] = true, [11] = true, [30] = true, [26] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Totem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 6, castTime = 1, @@ -801,7 +801,7 @@ skills["Determination"] = { name = "Determination", color = 1, description = "Casts an aura that grants armour to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -875,7 +875,7 @@ skills["DevouringTotem"] = { baseEffectiveness = 0.69999998807907, incrementalEffectiveness = 0.029999999329448, description = "Summons a totem that can consume nearby corpses. If you are hurt, it will destroy a corpse to leech life to you.", - skillTypes = { [2] = true, [17] = true, [19] = true, [30] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 7, castTime = 1, @@ -955,8 +955,8 @@ skills["DominatingBlow"] = { name = "Dominating Blow", color = 1, description = "Attacks the enemy with a melee strike, applying a debuff for a short duration. If a non-unique enemy dies while affected by the debuff, the enemy's corpse will be consumed and a Sentinel of Dominance with the same rarity, prefix and suffix modifiers will be summoned for a longer secondary duration.", - skillTypes = { [1] = true, [9] = true, [12] = true, [21] = true, [25] = true, [28] = true, [24] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [11] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Area] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -1045,7 +1045,7 @@ skills["PuresteelBanner"] = { name = "Dread Banner", color = 1, description = "Casting once reserves mana to carry a banner which makes nearby allies inflict impale with attacks, and lessens the accuracy of nearby enemies. Gain stages by impaling enemies while carrying the banner. Casting the skill again places the banner, ending the mana reservation. Once placed, it becomes more powerful for each stage gained. You cannot have multiple banners at the same time.", - skillTypes = { [5] = true, [11] = true, [2] = true, [12] = true, [15] = true, [44] = true, [16] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "banner_aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1122,7 +1122,7 @@ skills["Earthquake"] = { name = "Earthquake", color = 1, description = "Smashes the ground with an Axe, Mace or Staff, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Earthquakes created before the first one has erupted will not generate their own aftershocks.", - skillTypes = { [1] = true, [11] = true, [24] = true, [28] = true, [12] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Duration] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1213,7 +1213,7 @@ skills["VaalEarthquake"] = { name = "Vaal Earthquake", color = 1, description = "Smashes the ground with an Axe, Mace or Staff, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. After using this skill, your steps will deal damage around you, cracking the earth if the previous cracks have erupted. This effect ends after a secondary duration, or after a maximum number of aftershocks.", - skillTypes = { [1] = true, [11] = true, [24] = true, [12] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1305,7 +1305,7 @@ skills["EnduringCry"] = { name = "Enduring Cry", color = 1, description = "Performs a warcry, adding endurance charges proportional to the number of surrounding enemies and granting life regeneration to you for a short time if there are nearby enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [5] = true, [11] = true, [12] = true, [74] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -1379,7 +1379,7 @@ skills["GlacialHammer"] = { name = "Glacial Hammer", color = 1, description = "Hits the enemy, converting some of your physical damage to cold damage. If the enemy is frozen and is on less than one third life, they will shatter when hit by Glacial Hammer. Requires a Mace or Staff.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [34] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.ColdSkill] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Mace"] = true, ["Staff"] = true, @@ -1453,7 +1453,7 @@ skills["VaalGlacialHammer"] = { name = "Vaal Glacial Hammer", color = 1, description = "Hits the enemy, converting some of your physical damage to cold damage. It traps the enemy with you in a circle of ice so that it can't escape. Requires a Mace or Staff.", - skillTypes = { [1] = true, [25] = true, [24] = true, [12] = true, [11] = true, [43] = true, [34] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Vaal] = true, [SkillType.ColdSkill] = true, }, weaponTypes = { ["Two Handed Mace"] = true, ["Staff"] = true, @@ -1530,7 +1530,7 @@ skills["GroundSlam"] = { name = "Ground Slam", color = 1, description = "The character slams the ground in front of them with a Staff, Axe or Mace, creating a wave that travels forward and damages enemies with an increased chance to stun. The wave deals more damage to closer enemies.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1606,7 +1606,7 @@ skills["VaalGroundSlam"] = { name = "Vaal Ground Slam", color = 1, description = "The character slams the ground in front of them with a Staff, Axe or Mace, creating a wave that travels in all directions that damages and stuns enemies. The wave deals more damage to closer enemies.", - skillTypes = { [1] = true, [11] = true, [24] = true, [43] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Vaal] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1683,7 +1683,7 @@ skills["HeavyStrike"] = { name = "Heavy Strike", color = 1, description = "Attacks the enemy with a forceful blow, knocking them back. Requires a Mace, Axe, Sword or Two-Handed Weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1761,7 +1761,7 @@ skills["HeraldOfAsh"] = { baseEffectiveness = 0.5, incrementalEffectiveness = 0.032699998468161, description = "Grants a buff providing fire damage based on your physical damage. While you have this buff, if you kill an enemy, other enemies near them will be burned based on the overkill damage. The burn inflicted by this skill can only be affected by modifiers to damage over time (burning damage is damage over time).", - skillTypes = { [2] = true, [5] = true, [15] = true, [16] = true, [29] = true, [11] = true, [40] = true, [33] = true, [27] = true, [63] = true, [12] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.CausesBurning] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0, statMap = { @@ -1843,8 +1843,8 @@ skills["HeraldOfPurity"] = { baseEffectiveness = 0.31700000166893, incrementalEffectiveness = 0.01799999922514, description = "Grants a buff which adds physical damage to your spells and attacks. When you kill an enemy while you have this buff, this skill will summon a Sentinel of Purity, or refresh the duration and life of an existing one instead if you have the maximum number of them. The Sentinels of Purity have a single-target melee attack and an area melee attack.", - skillTypes = { [2] = true, [5] = true, [15] = true, [16] = true, [63] = true, [9] = true, [75] = true, [12] = true, }, - minionSkillTypes = { [10] = true, [1] = true, [24] = true, [25] = true, [28] = true, [11] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Herald] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Area] = true, }, statDescriptionScope = "minion_skill_stat_descriptions", castTime = 0, minionList = { @@ -1937,7 +1937,7 @@ skills["FlameTotem"] = { baseEffectiveness = 0.81900000572205, incrementalEffectiveness = 0.028899999335408, description = "Summons a totem that channels to fire a stream of flame at nearby enemies, and creates an area of consecrated ground around the totem.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [19] = true, [30] = true, [33] = true, [58] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, [SkillType.FireSkill] = true, [SkillType.Channelled] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 17, castTime = 0.25, @@ -2017,7 +2017,7 @@ skills["IceCrash"] = { name = "Ice Crash", color = 1, description = "Slam the ground, damaging enemies in an area around the impact in three stages. Enemies take slightly less damage on the second and third stage. Works with Swords, Maces, Axes, Staves and Unarmed.", - skillTypes = { [1] = true, [11] = true, [24] = true, [34] = true, [28] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.ColdSkill] = true, [SkillType.AttackCanRepeat] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -2117,7 +2117,7 @@ skills["ImmortalCall"] = { name = "Immortal Call", color = 1, description = "Discharges Endurance Charges, making the character invulnerable to physical damage for a short time, proportional to how many endurance charges were expended.", - skillTypes = { [2] = true, [5] = true, [12] = true, [18] = true, [36] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2182,7 +2182,7 @@ skills["VaalImmortalCall"] = { name = "Vaal Immortal Call", color = 1, description = "Discharges Endurance Charges, making the character unable to die for a short time, proportional to how many endurance charges were expended.", - skillTypes = { [2] = true, [5] = true, [12] = true, [18] = true, [43] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2249,7 +2249,7 @@ skills["InfernalBlow"] = { name = "Infernal Blow", color = 1, description = "Hit the target enemy, applying a charged debuff to it, and an uncharged debuff to any other enemies hit. Upon reaching 6 charges, expiring, or the enemy's death, the charged debuff is removed, and it deals damage to that and other nearby enemies. Enemies with either debuff explode when they die, damaging other nearby enemies. Damage from this explosion cannot be reflected. Requires a Sword, Axe, Mace, Staff or Unarmed.", - skillTypes = { [1] = true, [11] = true, [25] = true, [28] = true, [24] = true, [33] = true, [12] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.FireSkill] = true, [SkillType.Duration] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -2329,7 +2329,7 @@ skills["LeapSlam"] = { name = "Leap Slam", color = 1, description = "Jump into the air, damaging enemies (and knocking back some) with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an axe, mace, sword or staff. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2409,7 +2409,7 @@ skills["MoltenShell"] = { baseEffectiveness = 2.9444000720978, incrementalEffectiveness = 0.050000000745058, description = "Summons fiery elemental shields providing additional armour for a short duration. If cumulative physical damage prevented by your blocking or armour reaches a threshold, the shields explode outwards, dealing fire damage to surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [31] = true, [36] = true, [33] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -2492,7 +2492,7 @@ skills["VaalMoltenShell"] = { baseEffectiveness = 2.0611000061035, incrementalEffectiveness = 0.039700001478195, description = "Summons fiery elemental shields providing additional armour for a short duration. Whenever you prevent any amount of physical damage from a hit, the shields cause a burst of flame, dealing fire damage to surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [31] = true, [43] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.Vaal] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -2573,7 +2573,7 @@ skills["MoltenStrike"] = { name = "Molten Strike", color = 1, description = "Attacks a target with physical and fire damage, causing balls of molten magma to launch forth from your weapon as you swing. These will explode, causing AoE attack damage to enemies where they land.", - skillTypes = { [1] = true, [3] = true, [11] = true, [24] = true, [25] = true, [28] = true, [33] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.FireSkill] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2675,7 +2675,7 @@ skills["Punishment"] = { name = "Punishment", color = 1, description = "Curses all targets in an area, causing them to grant a buff to anyone they hit with melee attacks. The buff grants more Melee Damage and increased Attack Speed.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2754,7 +2754,7 @@ skills["FireResistAura"] = { name = "Purity of Fire", color = 1, description = "Casts an aura that grants fire resistance to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [33] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -2830,7 +2830,7 @@ skills["FireImpurity"] = { name = "Vaal Impurity of Fire", color = 1, description = "Casts an aura that reduces fire damage taken and provides ignite immunity to you and nearby allies, and makes hits against nearby enemies ignore their fire resistance. ", - skillTypes = { [2] = true, [5] = true, [11] = true, [18] = true, [27] = true, [12] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -2910,7 +2910,7 @@ skills["RallyingCry"] = { name = "Rallying Cry", color = 1, description = "Performs a warcry, granting increased damage and mana regeneration to the user and nearby allies if there are nearby enemies. The damage increase is proportional to the number of surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [5] = true, [11] = true, [12] = true, [74] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -2988,7 +2988,7 @@ skills["Reckoning"] = { name = "Reckoning", color = 1, description = "Perform a swift counter-attack against enemies in a cone shape when you block with your shield.", - skillTypes = { [1] = true, [13] = true, [24] = true, [11] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, }, weaponTypes = { ["None"] = true, ["Claw"] = true, @@ -3066,7 +3066,7 @@ skills["RejuvenationTotem"] = { name = "Rejuvenation Totem", color = 1, description = "Summons a totem that has an aura which regenerates life for you and your nearby allies.", - skillTypes = { [2] = true, [5] = true, [11] = true, [15] = true, [27] = true, [17] = true, [19] = true, [30] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 4, castTime = 0.6, @@ -3148,7 +3148,7 @@ skills["SearingBond"] = { baseEffectiveness = 6.1111001968384, incrementalEffectiveness = 0.053300000727177, description = "Summons a totem that casts a beam of fire at you and each other totem you control, dealing burning damage to enemies caught in the beam. Enemies near either end of a beam also suffer burning damage.", - skillTypes = { [2] = true, [40] = true, [17] = true, [19] = true, [27] = true, [29] = true, [30] = true, [36] = true, [33] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.DamageOverTime] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Type27] = true, [SkillType.CausesBurning] = true, [SkillType.Totem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 9, castTime = 1, @@ -3219,7 +3219,7 @@ skills["NewShieldCharge"] = { name = "Shield Charge", color = 1, description = "Charges at a targeted location or enemy, pushing away enemies in your path and repeatedly dealing damage in a small area in front of you. You deal damage in a larger area when you reach the target. The further you travel, the more damage you deal, and the greater your chance of stunning enemies. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [13] = true, [24] = true, [11] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["None"] = true, ["Claw"] = true, @@ -3300,7 +3300,7 @@ skills["ShockwaveTotem"] = { baseEffectiveness = 1.1783000230789, incrementalEffectiveness = 0.040300000458956, description = "Summons a totem that shakes the earth around it, knocking back and damaging nearby enemies", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [19] = true, [30] = true, [26] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 5, castTime = 0.6, @@ -3377,7 +3377,7 @@ skills["Smite"] = { baseEffectiveness = 0.60000002384186, incrementalEffectiveness = 0.028000000864267, description = "Performs a melee attack, and causes lightning to strike a targeted location or nearby enemy, dealing damage in an area. If the melee attack hits its target, that enemy cannot also be hit by the area damage. If this skill hits an enemy, you gain an aura buff, granting you and your allies additional lightning damage for a duration. Requires a Sword, Axe, Mace, Staff or Unarmed.", - skillTypes = { [24] = true, [1] = true, [11] = true, [12] = true, [28] = true, [10] = true, [25] = true, [44] = true, [5] = true, [35] = true, }, + skillTypes = { [SkillType.Melee] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Hit] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Aura] = true, [SkillType.Buff] = true, [SkillType.LightningSkill] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -3473,7 +3473,7 @@ skills["StaticStrike"] = { name = "Static Strike", color = 1, description = "Attack with a melee weapon, gaining a buff if you hit your target. While you have this buff, you'll frequently hit a number of nearby enemies with beams, dealing attack damage, which will be higher if the beams strike while you're moving. You can stack the buff up to three times, each increasing the frequency with which the beams strike.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [11] = true, [12] = true, [35] = true, [23] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.LightningSkill] = true, [SkillType.Chaining] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -3578,8 +3578,8 @@ skills["SummonFireGolem"] = { name = "Summon Flame Golem", color = 1, description = "Summons a Flame Golem that grants you increased Damage. The Flame Golem can use a fire spray, a wave of fire damage, and an explosive arcing projectile.", - skillTypes = { [36] = true, [33] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, [62] = true, }, - minionSkillTypes = { [10] = true, [11] = true, [3] = true, [68] = true, [2] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, }, + minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, minionList = { @@ -3659,8 +3659,8 @@ skills["SummonRockGolem"] = { name = "Summon Stone Golem", color = 1, description = "Summons a Stone Golem that grants you life regeneration. In addition to its melee attack, the Stone Golem uses a rolling charge and a powerful slam that can taunt enemies.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, [62] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [38] = true, [11] = true, [28] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.MovementSkill] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, minionList = { @@ -3741,7 +3741,7 @@ skills["Sunder"] = { name = "Sunder", color = 1, description = "Slams the ground with a Mace, Axe or Staff, creating a wave of broken ground that damages enemies in an area in front of you. Enemies hit by the wave will release a circular shockwave, dealing damage to other enemies around them.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -3829,7 +3829,7 @@ skills["Sweep"] = { name = "Sweep", color = 1, description = "Swings a two handed melee weapon in a circle, knocking back some monsters around the character.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, @@ -3903,7 +3903,7 @@ skills["EnduranceChargeSlam"] = { name = "Tectonic Slam", color = 1, description = "Slam the ground, unleashing a fiery fissure in front of you, dealing area damage and releasing a random number of smaller fissures branching off from it. Can consume an Endurance Charge to perform a Charged Slam, covering a greater area with more branching fissures. Requires a Mace, Sword, Axe, Staff, or Unarmed.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, [33] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.FireSkill] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -3988,7 +3988,7 @@ skills["Vengeance"] = { name = "Vengeance", color = 1, description = "Chance to perform a swift counter-attack against all enemies around you when you are hit. Weapon range increases the area of this attack. Requires a Melee Weapon.", - skillTypes = { [1] = true, [11] = true, [24] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -4068,7 +4068,7 @@ skills["VigilantStrike"] = { name = "Vigilant Strike", color = 1, description = "Attacks the enemy with a powerful melee strike. You gain the Fortify buff, granting damage reduction. The cooldown can be bypassed by expending an Endurance Charge. Requires a Melee Weapon.", - skillTypes = { [1] = true, [5] = true, [24] = true, [28] = true, [25] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Type53] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -4147,7 +4147,7 @@ skills["Vitality"] = { name = "Vitality", color = 1, description = "Casts an aura that grants life regeneration to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4220,7 +4220,7 @@ skills["Vulnerability"] = { name = "Vulnerability", color = 1, description = "Curse all targets in an area, causing them to take increased physical damage and further increased physical damage over time. Attacks against cursed enemies have a chance to inflict bleeding and maim.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -4304,7 +4304,7 @@ skills["WarlordsMark"] = { name = "Warlord's Mark", color = 1, description = "Curses all targets in an area, making them more vulnerable to stuns. Hitting the cursed targets will leech life and mana, and killing them will result in a chance to gain an endurance charge.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -4389,7 +4389,7 @@ skills["BloodstainedBanner"] = { name = "War Banner", color = 1, description = "Casting once reserves mana to carry a banner which increases the accuracy of nearby allies, and physical damage taken by nearby enemies. Gain stages by killing enemies while carrying the banner. Casting the skill again places the banner, ending the mana reservation. Once placed, it becomes more powerful for each stage gained. You cannot have multiple banners at the same time.", - skillTypes = { [5] = true, [11] = true, [2] = true, [12] = true, [15] = true, [44] = true, [16] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "banner_aura_skill_stat_descriptions", castTime = 0, statMap = { diff --git a/Data/3_0/Skills/glove.lua b/Data/3_0/Skills/glove.lua index f94148bb2..e64eb4688 100644 --- a/Data/3_0/Skills/glove.lua +++ b/Data/3_0/Skills/glove.lua @@ -13,9 +13,10 @@ skills["EnchantmentOfBladesOnHit"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -48,9 +49,10 @@ skills["EnchantmentOfBladesOnHit2"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -83,9 +85,10 @@ skills["EnchantmentOfBladesOnHit3"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -118,9 +121,10 @@ skills["EnchantmentOfBladesOnHit4"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -153,9 +157,10 @@ skills["EnchantmentOfFlamesOnHit"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [2] = true, [11] = true, [10] = true, [33] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -185,9 +190,10 @@ skills["EnchantmentOfFlamesOnHit2"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [2] = true, [11] = true, [10] = true, [33] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -217,9 +223,10 @@ skills["EnchantmentOfFlamesOnHit3"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [2] = true, [11] = true, [10] = true, [33] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -249,9 +256,10 @@ skills["EnchantmentOfFlamesOnHit4"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [2] = true, [11] = true, [10] = true, [33] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -279,9 +287,10 @@ skills["EnchantmentOfForceOnHit"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [1] = true, [11] = true, [10] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -306,9 +315,10 @@ skills["EnchantmentOfForceOnHit2"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [1] = true, [11] = true, [10] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -333,9 +343,10 @@ skills["EnchantmentOfForceOnHit3"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [1] = true, [11] = true, [10] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -360,9 +371,10 @@ skills["EnchantmentOfForceOnHit4"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [1] = true, [11] = true, [10] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -389,9 +401,10 @@ skills["EnchantmentOfFrostOnKill"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire a nova of icy projectiles.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -424,9 +437,10 @@ skills["EnchantmentOfFrostOnKill2"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire a nova of icy projectiles.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -459,9 +473,10 @@ skills["EnchantmentOfFrostOnKill3"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire a nova of icy projectiles.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -494,9 +509,10 @@ skills["EnchantmentOfFrostOnKill4"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire a nova of icy projectiles.", - skillTypes = { [2] = true, [3] = true, [36] = true, [42] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -529,7 +545,7 @@ skills["EnchantmentOfFuryOnHit"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -547,6 +563,7 @@ skills["EnchantmentOfFuryOnHit"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -582,7 +599,7 @@ skills["EnchantmentOfFuryOnHit2"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -600,6 +617,7 @@ skills["EnchantmentOfFuryOnHit2"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -635,7 +653,7 @@ skills["EnchantmentOfFuryOnHit3"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -653,6 +671,7 @@ skills["EnchantmentOfFuryOnHit3"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -688,7 +707,7 @@ skills["EnchantmentOfFuryOnHit4"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -706,6 +725,7 @@ skills["EnchantmentOfFuryOnHit4"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -741,9 +761,10 @@ skills["EnchantmentOfInfernoOnKill"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [2] = true, [11] = true, [33] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -777,9 +798,10 @@ skills["EnchantmentOfInfernoOnKill2"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [2] = true, [11] = true, [33] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -813,9 +835,10 @@ skills["EnchantmentOfInfernoOnKill3"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [2] = true, [11] = true, [33] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -849,9 +872,10 @@ skills["EnchantmentOfInfernoOnKill4"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [2] = true, [11] = true, [33] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -885,7 +909,7 @@ skills["EnchantmentOfIreWhenHit"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [1] = true, [10] = true, [11] = true, [12] = true, [18] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -903,6 +927,7 @@ skills["EnchantmentOfIreWhenHit"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -935,7 +960,7 @@ skills["EnchantmentOfIreWhenHit2"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [1] = true, [10] = true, [11] = true, [12] = true, [18] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -953,6 +978,7 @@ skills["EnchantmentOfIreWhenHit2"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -985,7 +1011,7 @@ skills["EnchantmentOfIreWhenHit3"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [1] = true, [10] = true, [11] = true, [12] = true, [18] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1003,6 +1029,7 @@ skills["EnchantmentOfIreWhenHit3"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1035,7 +1062,7 @@ skills["EnchantmentOfIreWhenHit4"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [1] = true, [10] = true, [11] = true, [12] = true, [18] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1053,6 +1080,7 @@ skills["EnchantmentOfIreWhenHit4"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1083,9 +1111,10 @@ skills["EnchantmentOfLightWhenCrit"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [1] = true, [11] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1113,9 +1142,10 @@ skills["EnchantmentOfLightWhenCrit2"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [1] = true, [11] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1143,9 +1173,10 @@ skills["EnchantmentOfLightWhenCrit3"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [1] = true, [11] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1173,9 +1204,10 @@ skills["EnchantmentOfLightWhenCrit4"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [1] = true, [11] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1203,10 +1235,11 @@ skills["EnchantmentOfReflectionWhenHit"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [2] = true, [9] = true, [21] = true, [42] = true, [12] = true, [36] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [3] = true, [68] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "Clone", }, @@ -1243,10 +1276,11 @@ skills["EnchantmentOfReflectionWhenHit2"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [2] = true, [9] = true, [21] = true, [42] = true, [12] = true, [36] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [3] = true, [68] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "Clone", }, @@ -1283,10 +1317,11 @@ skills["EnchantmentOfReflectionWhenHit3"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [2] = true, [9] = true, [21] = true, [42] = true, [12] = true, [36] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [3] = true, [68] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "Clone", }, @@ -1323,10 +1358,11 @@ skills["EnchantmentOfReflectionWhenHit4"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [2] = true, [9] = true, [21] = true, [42] = true, [12] = true, [36] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [3] = true, [68] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "Clone", }, @@ -1365,7 +1401,7 @@ skills["EnchantmentOfSpiteWhenHit"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, [79] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1383,6 +1419,7 @@ skills["EnchantmentOfSpiteWhenHit"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1418,7 +1455,7 @@ skills["EnchantmentOfSpiteWhenHit2"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, [79] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1436,6 +1473,7 @@ skills["EnchantmentOfSpiteWhenHit2"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1471,7 +1509,7 @@ skills["EnchantmentOfSpiteWhenHit3"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, [79] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1489,6 +1527,7 @@ skills["EnchantmentOfSpiteWhenHit3"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1524,7 +1563,7 @@ skills["EnchantmentOfSpiteWhenHit4"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [1] = true, [48] = true, [3] = true, [47] = true, [57] = true, [79] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1542,6 +1581,7 @@ skills["EnchantmentOfSpiteWhenHit4"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -1577,9 +1617,10 @@ skills["EnchantmentOfTempestOnHit"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1612,9 +1653,10 @@ skills["EnchantmentOfTempestOnHit2"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1647,9 +1689,10 @@ skills["EnchantmentOfTempestOnHit3"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1682,9 +1725,10 @@ skills["EnchantmentOfTempestOnHit4"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1715,10 +1759,11 @@ skills["EnchantmentOfTheGraveOnKill"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [2] = true, [9] = true, [21] = true, [34] = true, [36] = true, [42] = true, [12] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "IcyRagingSpirit", }, @@ -1751,10 +1796,11 @@ skills["EnchantmentOfTheGraveOnKill2"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [2] = true, [9] = true, [21] = true, [34] = true, [36] = true, [42] = true, [12] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "IcyRagingSpirit", }, @@ -1787,10 +1833,11 @@ skills["EnchantmentOfTheGraveOnKill3"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [2] = true, [9] = true, [21] = true, [34] = true, [36] = true, [42] = true, [12] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "IcyRagingSpirit", }, @@ -1823,10 +1870,11 @@ skills["EnchantmentOfTheGraveOnKill4"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [2] = true, [9] = true, [21] = true, [34] = true, [36] = true, [42] = true, [12] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, minionList = { "IcyRagingSpirit", }, @@ -1861,9 +1909,10 @@ skills["EnchantmentOfThunderOnKill"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [2] = true, [11] = true, [31] = true, [35] = true, [42] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1893,9 +1942,10 @@ skills["EnchantmentOfThunderOnKill2"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [2] = true, [11] = true, [31] = true, [35] = true, [42] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1925,9 +1975,10 @@ skills["EnchantmentOfThunderOnKill3"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [2] = true, [11] = true, [31] = true, [35] = true, [42] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1957,9 +2008,10 @@ skills["EnchantmentOfThunderOnKill4"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [2] = true, [11] = true, [31] = true, [35] = true, [42] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1987,7 +2039,7 @@ skills["EnchantmentOfWarOnKill"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2005,6 +2057,7 @@ skills["EnchantmentOfWarOnKill"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -2030,7 +2083,7 @@ skills["EnchantmentOfWarOnKill2"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2048,6 +2101,7 @@ skills["EnchantmentOfWarOnKill2"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -2073,7 +2127,7 @@ skills["EnchantmentOfWarOnKill3"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2091,6 +2145,7 @@ skills["EnchantmentOfWarOnKill3"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -2116,7 +2171,7 @@ skills["EnchantmentOfWarOnKill4"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [12] = true, [47] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2134,6 +2189,7 @@ skills["EnchantmentOfWarOnKill4"] = { }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { attack = true, @@ -2161,9 +2217,10 @@ skills["EnchantmentOfWinterWhenHit"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -2195,9 +2252,10 @@ skills["EnchantmentOfWinterWhenHit2"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -2229,9 +2287,10 @@ skills["EnchantmentOfWinterWhenHit3"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -2263,9 +2322,10 @@ skills["EnchantmentOfWinterWhenHit4"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, diff --git a/Data/3_0/Skills/minion.lua b/Data/3_0/Skills/minion.lua index 280433747..15de628d4 100644 --- a/Data/3_0/Skills/minion.lua +++ b/Data/3_0/Skills/minion.lua @@ -13,7 +13,7 @@ skills["ChaosElementalCascadeSummoned"] = { baseEffectiveness = 1.9800000190735, incrementalEffectiveness = 0.037999998778105, description = "Icicles emerge from the ground in a series of small bursts, each damaging enemies caught in the area.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -45,7 +45,7 @@ skills["SandstormChaosElementalSummoned"] = { color = 4, baseEffectiveness = 11, incrementalEffectiveness = 0.016499999910593, - skillTypes = { [2] = true, [11] = true, [12] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -76,7 +76,7 @@ skills["FireElementalFlameRedSummoned"] = { baseEffectiveness = 1.3999999761581, incrementalEffectiveness = 0.041999999433756, description = "Summons a totem that fires a stream of flame at nearby enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [19] = true, [30] = true, [33] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, [SkillType.FireSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 8, castTime = 0.25, @@ -110,7 +110,7 @@ skills["FireElementalMortarSummoned"] = { baseEffectiveness = 4.2666997909546, incrementalEffectiveness = 0.032000001519918, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -141,7 +141,7 @@ skills["FireElementalConeSummoned"] = { color = 3, baseEffectiveness = 2.9867000579834, incrementalEffectiveness = 0.031700000166893, - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.935, baseFlags = { @@ -196,7 +196,7 @@ skills["IceElementalIceCyclone"] = { hidden = true, color = 2, description = "Damage enemies around you, then perform a spinning series of attacks as you travel to a target location. Cannot be supported by Ruthless or Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, [65] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, [SkillType.Type65] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -244,7 +244,7 @@ skills["IceElementalSpearSummoned"] = { color = 3, baseEffectiveness = 2.5455000400543, incrementalEffectiveness = 0.032000001519918, - skillTypes = { [3] = true, [68] = true, [2] = true, [17] = true, [18] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -272,7 +272,7 @@ skills["LightningGolemArcSummoned"] = { color = 3, baseEffectiveness = 1.0937999486923, incrementalEffectiveness = 0.026000000536442, - skillTypes = { [12] = true, [35] = true, [3] = true, [68] = true, [14] = true, [2] = true, }, + skillTypes = { [SkillType.Duration] = true, [SkillType.LightningSkill] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.ProjectileDamage] = true, [SkillType.Spell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -300,7 +300,7 @@ skills["MonsterProjectileSpellLightningGolemSummoned"] = { color = 4, baseEffectiveness = 2.625, incrementalEffectiveness = 0.033500000834465, - skillTypes = { [2] = true, [3] = true, [68] = true, [36] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -330,7 +330,7 @@ skills["LightningGolemWrath"] = { color = 3, baseEffectiveness = 0.16249999403954, incrementalEffectiveness = 0.019999999552965, - skillTypes = { [2] = true, [11] = true, [5] = true, [16] = true, [44] = true, [35] = true, [12] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, statMap = { @@ -375,7 +375,7 @@ skills["SpectralSkullShieldCharge"] = { hidden = true, color = 4, description = "Charges at an enemy, bashing it with the character's shield and striking it. This knocks it back and stuns it. Enemies in the way are pushed to the side. Damage and stun are proportional to distance travelled. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [13] = true, [24] = true, [25] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["None"] = true, ["Claw"] = true, @@ -414,7 +414,7 @@ skills["RagingSpiritMeleeAttack"] = { hidden = true, color = 4, description = "Strike your foes down with a powerful blow.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [25] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -461,7 +461,7 @@ skills["SkeletonProjectileCold"] = { color = 4, baseEffectiveness = 0.68180000782013, incrementalEffectiveness = 0.03940000012517, - skillTypes = { [2] = true, [10] = true, [26] = true, [3] = true, [68] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.95, baseFlags = { @@ -491,7 +491,7 @@ skills["SkeletonProjectileFire"] = { color = 4, baseEffectiveness = 0.83329999446869, incrementalEffectiveness = 0.03940000012517, - skillTypes = { [2] = true, [10] = true, [26] = true, [3] = true, [68] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.95, baseFlags = { @@ -521,7 +521,7 @@ skills["SkeletonProjectileLightning"] = { color = 4, baseEffectiveness = 0.9375, incrementalEffectiveness = 0.03940000012517, - skillTypes = { [2] = true, [10] = true, [26] = true, [3] = true, [68] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.95, baseFlags = { @@ -549,7 +549,7 @@ skills["RockGolemSlam"] = { name = "Slam", hidden = true, color = 1, - skillTypes = { [1] = true, [11] = true, [57] = true, [36] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -578,7 +578,7 @@ skills["RockGolemWhirlingBlades"] = { hidden = true, color = 4, description = "Dive through enemies, dealing weapon damage. Only works with daggers, claws and one handed swords. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["Claw"] = true, @@ -612,7 +612,7 @@ skills["ZombieSlam"] = { name = "Slam", hidden = true, color = 4, - skillTypes = { [1] = true, [11] = true, [57] = true, [36] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -644,7 +644,7 @@ skills["SummonedSpiderViperStrike"] = { baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.025499999523163, description = "Hits the enemy, adding some of your physical damage as chaos damage and applying poison. Requires a claw, dagger or sword.", - skillTypes = { [1] = true, [12] = true, [28] = true, [24] = true, [25] = true, [40] = true, [50] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, }, weaponTypes = { ["Claw"] = true, ["Thrusting One Handed Sword"] = true, @@ -678,7 +678,7 @@ skills["DancingDervishCyclone"] = { hidden = true, color = 2, description = "Damage enemies around you, then perform a spinning series of attacks as you travel to a target location. Cannot be supported by Ruthless or Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, [65] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, [SkillType.Type65] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -726,7 +726,7 @@ skills["SummonPhantasmFadingProjectile"] = { color = 4, baseEffectiveness = 1.0099999904633, incrementalEffectiveness = 0.048500001430511, - skillTypes = { [2] = true, [3] = true, [10] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Hit] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.17, baseFlags = { @@ -753,7 +753,7 @@ skills["HeraldOfAgonyMinionMortar"] = { hidden = true, color = 4, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", - skillTypes = { [3] = true, [68] = true, [1] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [57] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2, baseFlags = { @@ -784,7 +784,7 @@ skills["HeraldOfAgonyMinionTailSpike"] = { name = "Tail Spike", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.3, baseFlags = { @@ -812,7 +812,7 @@ skills["HeraldOfAgonyMinionCleave"] = { hidden = true, color = 1, description = "The character swings their weapon (or both weapons if dual wielding) in an arc towards the target. Also does damage to other nearby monsters. Only works with Axes and Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -843,7 +843,7 @@ skills["HeraldOfLightMinionSlam"] = { name = "Slam", hidden = true, color = 4, - skillTypes = { [1] = true, [11] = true, [57] = true, [36] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -868,7 +868,7 @@ skills["SentinelHolySlam"] = { name = "Crusade Slam", hidden = true, color = 1, - skillTypes = { [1] = true, [11] = true, [57] = true, [36] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -895,7 +895,7 @@ skills["RelicTriggeredNova"] = { color = 4, baseEffectiveness = 0.89999997615814, incrementalEffectiveness = 0.064000003039837, - skillTypes = { [2] = true, [10] = true, [11] = true, [61] = true, [36] = true, [42] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, statMap = { @@ -968,7 +968,7 @@ skills["DominatingBlowMinionCharge"] = { hidden = true, color = 4, description = "Charges at a targeted location or enemy, pushing away enemies in your path and repeatedly dealing damage in a small area in front of you. You deal damage in a larger area when you reach the target. The further you travel, the more damage you deal, and the greater your chance of stunning enemies. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [13] = true, [24] = true, [11] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["None"] = true, ["Claw"] = true, @@ -1006,7 +1006,7 @@ skills["SummonedRhoaShieldCharge"] = { hidden = true, color = 4, description = "Charges at a targeted location or enemy, pushing away enemies in your path and repeatedly dealing damage in a small area in front of you. You deal damage in a larger area when you reach the target. The further you travel, the more damage you deal, and the greater your chance of stunning enemies. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [13] = true, [24] = true, [11] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["None"] = true, ["Claw"] = true, @@ -1046,7 +1046,7 @@ skills["SummonedSnakeProjectile"] = { name = "Chaos Projectile", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -1071,7 +1071,7 @@ skills["DropBearSummonedGroundSlam"] = { hidden = true, color = 4, description = "The character slams the ground in front of them with a Staff or Mace, creating a wave that travels forward and damages enemies with an increased chance to stun. Only works with Staves or Maces.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Two Handed Mace"] = true, ["Staff"] = true, @@ -1103,7 +1103,7 @@ skills["DropBearSummonedRallyingCry"] = { hidden = true, color = 1, description = "Performs a warcry, granting increased damage and mana regeneration to the user and nearby allies if there are nearby enemies. The damage increase is proportional to the number of surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [5] = true, [11] = true, [12] = true, [74] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { diff --git a/Data/3_0/Skills/other.lua b/Data/3_0/Skills/other.lua index 52b0385da..3b75e310e 100644 --- a/Data/3_0/Skills/other.lua +++ b/Data/3_0/Skills/other.lua @@ -11,7 +11,7 @@ skills["Melee"] = { hidden = true, color = 4, description = "Strike your foes down with a powerful blow.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [25] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -36,7 +36,7 @@ skills["GemDetonateMines"] = { name = "Detonate Mines", color = 4, description = "Detonates all the Remote Mines you have placed.", - skillTypes = { [2] = true, [17] = true, [18] = true, [36] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.2, baseFlags = { @@ -68,7 +68,7 @@ skills["Portal"] = { name = "Portal", color = 4, description = "Creates a portal to the current area's town.", - skillTypes = { [2] = true, [17] = true, [18] = true, [19] = true, [36] = true, [27] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.Type27] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.5, baseFlags = { @@ -100,7 +100,7 @@ skills["VaalBreach"] = { name = "Vaal Breach", color = 4, description = "Creates a breach, making you vulnerable to its powerful inhabitants.", - skillTypes = { [2] = true, [17] = true, [18] = true, [19] = true, [27] = true, [43] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Type27] = true, [SkillType.Vaal] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.5, baseFlags = { @@ -134,9 +134,9 @@ skills["SupportUniqueMjolnerLightningSpellsCastOnHit"] = { hidden = true, color = 4, support = true, - requireSkillTypes = { 45, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 44, 61, }, + requireSkillTypes = { SkillType.Spell, SkillType.LightningSkill, SkillType.Triggerable, SkillType.AND, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, statMap = { @@ -164,9 +164,9 @@ skills["SupportAuraDuration"] = { hidden = true, color = 1, support = true, - requireSkillTypes = { 44, 12, 86, 80, 84, 82, 84, 85, }, - addSkillTypes = { 12, 82, }, - excludeSkillTypes = { 30, }, + requireSkillTypes = { SkillType.Aura, SkillType.Duration, SkillType.NOT, SkillType.AppliesCurse, SkillType.OR, SkillType.AuraDuration, SkillType.OR, SkillType.AND, }, + addSkillTypes = { SkillType.Duration, SkillType.AuraDuration, }, + excludeSkillTypes = { SkillType.Totem, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, statMap = { @@ -199,9 +199,9 @@ skills["SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"] = { hidden = true, color = 4, support = true, - requireSkillTypes = { 60, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 44, 61, }, + requireSkillTypes = { SkillType.Spell, SkillType.ColdSkill, SkillType.Triggerable, SkillType.AND, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, baseMods = { @@ -222,9 +222,9 @@ skills["UniqueSupportGreaterVolley"] = { hidden = true, color = 2, support = true, - requireSkillTypes = { 68, }, + requireSkillTypes = { SkillType.SkillCanVolley, }, addSkillTypes = { }, - excludeSkillTypes = { 70, 71, }, + excludeSkillTypes = { SkillType.Type70, SkillType.Type71, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, statMap = { @@ -252,7 +252,7 @@ skills["RepeatingShockwave"] = { hidden = true, color = 4, description = "While you run, this skill creates a small explosion with each step, dealing fire damage in an area around you.", - skillTypes = { [11] = true, [36] = true, [42] = true, [2] = true, [10] = true, [61] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -284,7 +284,7 @@ skills["BirdAspect"] = { hidden = true, color = 4, description = "While active, grants the Avian's Might and Avian's Flight buffs in sequence. Avian's Might grants you and your minions a chance to deal Double Damage with hits for a duration. Avian's Flight grants you and your minions increased Movement Speed for a secondary duration.", - skillTypes = { [5] = true, [16] = true, [2] = true, [15] = true, [12] = true, [75] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromItem = true, @@ -325,7 +325,7 @@ skills["CatAspect"] = { hidden = true, color = 4, description = "While active, grants the Cat's Stealth and Cat's Agility buffs in sequence. Cat's Stealth increases your critical strike chance, makes you harder to see, and gives you a chance to avoid damage for a short duration. Cat's Agility increases your attack and cast speed for a longer secondary duration.", - skillTypes = { [5] = true, [16] = true, [2] = true, [15] = true, [12] = true, [75] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromItem = true, @@ -367,7 +367,7 @@ skills["CrabAspect"] = { hidden = true, color = 4, description = "While active, periodically adds Crab Barriers to you, and grants additional Physical Damage reduction for each Crab Barrier you have. All Crab Barriers are lost when you take physical damage from a hit.", - skillTypes = { [5] = true, [16] = true, [2] = true, [15] = true, [75] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Instant] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromItem = true, @@ -400,7 +400,7 @@ skills["SpiderAspect"] = { hidden = true, color = 4, description = "While active, periodically applies a Spider's Web debuff to nearby Enemies, and Hinders them. Each Spider's Web on an Enemy increases the Damage they take. Hinder reduces their movement speed.", - skillTypes = { [5] = true, [16] = true, [2] = true, [15] = true, [12] = true, [75] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -441,7 +441,7 @@ skills["BloodOffering"] = { hidden = true, color = 3, description = "Consumes a corpse, and sacrifices a portion of your life, granting your minions life regeneration based on the life sacrificed, and a bonus to damage. The skill consumes other nearby corpses, increasing the duration and life regeneration for each corpse consumed.", - skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [9] = true, [49] = true, [17] = true, [19] = true, [18] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, }, statDescriptionScope = "offering_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -480,7 +480,7 @@ skills["TriggeredBoneNova"] = { hidden = true, color = 4, description = "A nova of bones erupts around you, dealing physical damage.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, [10] = true, [57] = true, [47] = true, [61] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -511,9 +511,10 @@ skills["ColdAegis"] = { hidden = true, color = 4, description = "Calls forth a protective aegis which takes cold damage from hits for you until depleted. The aegis will be restored to its full value after a short delay if you stop taking cold damage from hits.", - skillTypes = { [2] = true, [36] = true, [42] = true, [61] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -538,7 +539,7 @@ skills["TriggeredConsecrate"] = { hidden = true, color = 4, description = "Creates an area of Consecrated Ground, providing life regeneration for you and allies who stand in it.", - skillTypes = { [2] = true, [12] = true, [36] = true, [11] = true, [42] = true, [61] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -567,7 +568,7 @@ skills["TriggeredSummonLesserShrine"] = { hidden = true, color = 4, description = "Creates a Lesser Shrine, which will grant a bonus when touched. The Lesser Shrine will disappear after a short duration, or when used. This skill starts on cooldown.", - skillTypes = { [2] = true, [36] = true, [42] = true, [61] = true, [12] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -594,7 +595,7 @@ skills["ChaosDegenAuraUnique"] = { hidden = true, color = 4, description = "Casts an aura that deals Chaos Damage over Time to nearby Enemies. This skill cannot be cast by Totems.", - skillTypes = { [2] = true, [5] = true, [11] = true, [40] = true, [44] = true, [64] = true, [50] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.ChaosSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -622,7 +623,7 @@ skills["DeathWalk"] = { hidden = true, color = 4, description = "While you walk, this skill causes corpses near your steps to explode, dealing fire damage in an area. The explosions of the corpses are not affected by modifiers to spell damage, and cannot be reflected.", - skillTypes = { [11] = true, [36] = true, [42] = true, [2] = true, [10] = true, [61] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -656,7 +657,7 @@ skills["TouchOfGod"] = { hidden = true, color = 1, description = "The character uses their fist to slam the ground in front of them, with less attack speed, but more damage. This attack deals Lightning Damage to enemies in a large area, with a chance to Shock them. Cannot be used while wielding a Weapon. Cannot be Evaded.", - skillTypes = { [1] = true, [11] = true, [35] = true, [24] = true, [28] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.LightningSkill] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, }, weaponTypes = { ["None"] = true, }, @@ -729,9 +730,10 @@ skills["ElementalAegis"] = { hidden = true, color = 4, description = "Calls forth a protective aegis which takes elemental damage from hits for you until depleted. The aegis will be restored to its full value after a short delay if you stop taking elemental damage from hits.", - skillTypes = { [2] = true, [36] = true, [42] = true, [61] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -756,7 +758,7 @@ skills["SupportElementalPenetration"] = { hidden = true, color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -780,7 +782,7 @@ skills["OnHitWhileCursedTriggeredCurseNova"] = { baseEffectiveness = 3, incrementalEffectiveness = 0.050000000745058, description = "Fires projectiles in a nova, converting all their physical damage to a random element, and grants a buff which makes you immune to curses for a duration.", - skillTypes = { [2] = true, [10] = true, [36] = true, [42] = true, [61] = true, [3] = true, [68] = true, [33] = true, [34] = true, [35] = true, [45] = true, [60] = true, [12] = true, [5] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.FireSkill] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -830,7 +832,7 @@ skills["Envy"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.023000000044703, description = "Casts an aura that adds chaos damage to the attacks and spells of you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [50] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ChaosSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -877,9 +879,10 @@ skills["FireAegis"] = { hidden = true, color = 4, description = "Calls forth a protective aegis which takes fire damage from hits for you until depleted. The aegis will be restored to its full value after a short delay if you stop taking fire damage from hits.", - skillTypes = { [2] = true, [36] = true, [42] = true, [61] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -906,7 +909,7 @@ skills["FireBurstOnHit"] = { baseEffectiveness = 2.333300113678, incrementalEffectiveness = 0.037999998778105, description = "A burst of flame errupts from the location of a hit, dealing fire damage.", - skillTypes = { [2] = true, [11] = true, [10] = true, [33] = true, [36] = true, [42] = true, [61] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -964,7 +967,7 @@ skills["VaalAuraElementalDamageHealing"] = { hidden = true, color = 4, description = "Casts an aura that causes taking elemental damage to heal you and nearby allies instead.", - skillTypes = { [2] = true, [5] = true, [11] = true, [12] = true, [18] = true, [43] = true, [44] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -996,7 +999,7 @@ skills["IcestormUniqueStaff12"] = { hidden = true, color = 3, description = "Icy bolts rain down over the targeted area. They explode when landing, dealing damage to nearby enemies and chilling them, as well as causing patches of chilled ground. Skill damage is based on Intelligence.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [67] = true, [79] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, fromItem = true, @@ -1034,7 +1037,7 @@ skills["TriggeredIcicleNova"] = { hidden = true, color = 4, description = "This attack fires icy projectiles in a nova around enemies you kill, dealing attack damage with all physical damage converted to cold.", - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, [10] = true, [57] = true, [47] = true, [61] = true, [34] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.ColdSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1067,7 +1070,7 @@ skills["MerveilWarp"] = { hidden = true, color = 4, description = "Teleport to a target destination. Chilled ground is spread in an area around both where the caster was and where they teleported to.", - skillTypes = { [2] = true, [38] = true, [12] = true, [34] = true, [11] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.ColdSkill] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, fromItem = true, @@ -1093,9 +1096,10 @@ skills["LightningAegis"] = { hidden = true, color = 4, description = "Calls forth a protective aegis which takes lightning damage from hits for you until depleted. The aegis will be restored to its full value after a short delay if you stop taking lightning damage from hits.", - skillTypes = { [2] = true, [36] = true, [42] = true, [61] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1122,7 +1126,7 @@ skills["LightningSpell"] = { baseEffectiveness = 5, incrementalEffectiveness = 0.029999999329448, description = "A bolt of lightning strikes an area, dealing lightning damage.", - skillTypes = { [2] = true, [42] = true, [35] = true, [11] = true, [10] = true, [45] = true, [61] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggered] = true, [SkillType.LightningSkill] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1180,8 +1184,8 @@ skills["UniqueAnimateWeapon"] = { hidden = true, color = 4, description = "Manifests Dancing Dervish to fight by your side. While Dancing Dervish is manifested, you have Onslaught and cannot use Weapons. Cannot be supported by supports that would create other minions.", - skillTypes = { [2] = true, [9] = true, [21] = true, [36] = true, [61] = true, [72] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [11] = true, [38] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Type72] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.MovementSkill] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1228,7 +1232,7 @@ skills["TriggeredMoltenStrike"] = { hidden = true, color = 1, description = "Launch molten projectiles from the point of impact, causing AoE attack damage to enemies where they land.", - skillTypes = { [3] = true, [1] = true, [11] = true, [33] = true, [57] = true, [47] = true, [48] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.ProjectileAttack] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1259,7 +1263,7 @@ skills["AccuracyAndCritsAura"] = { hidden = true, color = 4, description = "Casts an aura that grants accuracy and critical strike chance to you and your allies.", - skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [18] = true, [44] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -1297,8 +1301,8 @@ skills["TriggeredSummonSpider"] = { hidden = true, color = 3, description = "Raise two spectral spiders from each nearby corpse that will attack your enemies with Viper Strike. Each raised spider grants you increased Attack Speed and increased Damage with Poison. Enemies will not engage the spiders directly, and they are immune to damage.", - skillTypes = { [2] = true, [9] = true, [36] = true, [49] = true, [42] = true, [61] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1344,7 +1348,7 @@ skills["ShadeForm"] = { hidden = true, color = 4, description = "Makes you immune to physical damage, and harder for enemies to detect, for a duration.", - skillTypes = { [2] = true, [12] = true, [5] = true, [36] = true, [42] = true, [61] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Buff] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1371,7 +1375,7 @@ skills["TriggeredShockedGround"] = { hidden = true, color = 4, description = "Creates a patch of Shocked Ground in a radius around you.", - skillTypes = { [2] = true, [11] = true, [36] = true, [12] = true, [42] = true, [45] = true, [61] = true, [35] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1402,7 +1406,7 @@ skills["SpiritBurst"] = { baseEffectiveness = 1.875, incrementalEffectiveness = 0.03999999910593, description = "Consumes a spirit charge to fire projectiles which deals physical damage.", - skillTypes = { [2] = true, [10] = true, [36] = true, [42] = true, [61] = true, [3] = true, [68] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1436,7 +1440,7 @@ skills["StormCascadeTriggered"] = { baseEffectiveness = 1.7555999755859, incrementalEffectiveness = 0.034600000828505, description = "Lightning crackles in a series of small bursts, each damaging enemies caught in the area.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [61] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, fromItem = true, @@ -1497,8 +1501,8 @@ skills["SummonBeastialRhoa"] = { hidden = true, color = 3, description = "Summons a Bestial Rhoa. In addition to its melee attack, the Bestial Rhoa uses a charge and has an aura that intimidates enemies. This minion's hits cannot be evaded.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [10] = true, [11] = true, [28] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1540,8 +1544,8 @@ skills["SummonBeastialSnake"] = { hidden = true, color = 3, description = "Summons a Bestial Snake. The Bestial Snake fires powerful chaos projectile attacks. This minion's hits cannot be evaded.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [3] = true, [68] = true, [23] = true, [48] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Chaining] = true, [SkillType.ProjectileAttack] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1583,8 +1587,8 @@ skills["SummonBeastialUrsa"] = { hidden = true, color = 3, description = "Summons a Bestial Ursa. In addition to its melee attack, the Bestial Ursa uses a powerful Ground Slam and Rallying Cry. This minion's hits cannot be evaded.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [10] = true, [11] = true, [28] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1626,8 +1630,8 @@ skills["SummonEssenceSpirits"] = { hidden = true, color = 3, description = "Summons three invulnerable spectral skulls that rush at nearby enemies and attack them rapidly. Enemies will not engage these spirits, and can pass through them.", - skillTypes = { [2] = true, [9] = true, [36] = true, [49] = true, [42] = true, [61] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1690,9 +1694,10 @@ skills["SummonHarbingerOfTheArcane"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally cast Arcane Surge on you, granting More Spell Damage, Cast Speed and Mana Regeneration.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1716,9 +1721,10 @@ skills["SummonHarbingerOfBrutality"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally grant you significantly increased Damage, Attack Speed, Movement Speed, and reduce the Damage you take.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1742,9 +1748,10 @@ skills["SummonHarbingerOfDirections"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will cast a random buff on you that grants one or all of the following: 1 additional Projectile, +1 Chain, Pierce 1 additional Target, and Projectiles Fork.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1768,9 +1775,10 @@ skills["SummonHarbingerOfFocus"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. While you are channelling, the minion will occasionally cast a buff on you that reduces the Damage you take, and makes you avoid all Stuns and Ailments.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1794,10 +1802,11 @@ skills["SummonHarbingerOfStorms"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally apply a Chill or Shock to an enemy that chains to other nearby enemies.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, - minionSkillTypes = { [78] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, + minionSkillTypes = { [SkillType.NonHitChill] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1821,9 +1830,10 @@ skills["SummonHarbingerOfTime"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally create a Slipstream aura on you that increases the Action Speed of you, and all allies and enemies near you.", - skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, + cannotBeSupported = true, fromItem = true, baseFlags = { spell = true, @@ -1847,8 +1857,8 @@ skills["TriggeredSummonGhostOnKill"] = { hidden = true, color = 3, description = "Summons a Phantasm minion, which uses a piercing projectile spell that deals physical damage.", - skillTypes = { [2] = true, [9] = true, [12] = true, [61] = true, [36] = true, [42] = true, }, - minionSkillTypes = { [12] = true, [3] = true, [2] = true, [10] = true, [52] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, }, + minionSkillTypes = { [SkillType.Duration] = true, [SkillType.Projectile] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1886,8 +1896,8 @@ skills["SummonRigwaldsPack"] = { hidden = true, color = 4, description = "Summons a spectral wolf companion that attacks near by enemies and dies after a duration.", - skillTypes = { [2] = true, [9] = true, [12] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, [42] = true, [61] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1923,7 +1933,7 @@ skills["SummonVoidSphere"] = { baseEffectiveness = 3.4818000793457, incrementalEffectiveness = 0.035599999129772, description = "Creates an orb which moves towards nearby enemies, exploding after a duration or when it gets close enough. The explosion deals cold spell damage in an area, and leaves behind a Vortex on the ground for a secondary duration which continues to deal cold damage over time and chill enemies caught in it.", - skillTypes = { [2] = true, [36] = true, [42] = true, [61] = true, [12] = true, [11] = true, [10] = true, [34] = true, [60] = true, [79] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1960,7 +1970,7 @@ skills["TentacleSmash"] = { hidden = true, color = 4, description = "This attack causes three otherworldly tentacles to strike the ground around you, each dealing your attack damage in an area.", - skillTypes = { [1] = true, [10] = true, [11] = true, [57] = true, [47] = true, [61] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1989,7 +1999,7 @@ skills["AvianTornado"] = { baseEffectiveness = 2.1300001144409, incrementalEffectiveness = 0.02559999935329, description = "Launches an unpredictable, piercing tornado projectile that moves randomly for a duration, repeatedly dealing damage to enemies it intersects.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [36] = true, [42] = true, [61] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, fromItem = true, @@ -2023,7 +2033,7 @@ skills["VoidGaze"] = { hidden = true, color = 3, description = "Applies a debuff to Enemies, removing some of their resistance to Chaos damage.", - skillTypes = { [2] = true, [50] = true, [11] = true, [18] = true, [12] = true, [61] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.21, fromItem = true, diff --git a/Data/3_0/Skills/spectre.lua b/Data/3_0/Skills/spectre.lua index 2e0712f73..5c4ad643f 100644 --- a/Data/3_0/Skills/spectre.lua +++ b/Data/3_0/Skills/spectre.lua @@ -11,7 +11,7 @@ skills["AxisDoubleStrikeTrigger"] = { hidden = true, color = 2, description = "Performs two fast attacks on target enemy with a melee weapon.", - skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -53,7 +53,7 @@ skills["BanditExplosiveArrow"] = { baseEffectiveness = 1.866700053215, incrementalEffectiveness = 0.037999998778105, description = "Fires an arrow which acts as a short duration fuse. Applying additional arrows to an enemy extends the duration. When the target dies or the fuses expire, the arrows explode, dealing fire AoE damage to nearby enemies. The AoE radius is proportional to the number of arrows upon death.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [11] = true, [12] = true, [22] = true, [17] = true, [19] = true, [33] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -92,7 +92,7 @@ skills["BeastCleave"] = { hidden = true, color = 1, description = "The character swings their weapon (or both weapons if dual wielding) in an arc towards the target. Also does damage to other nearby monsters. Only works with Axes and Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -128,7 +128,7 @@ skills["BirdmanBloodProjectile"] = { name = "Blood Projectile", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [3] = true, [68] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -161,7 +161,7 @@ skills["BirdmanConsumeCorpse"] = { name = "Consume Corpse", hidden = true, color = 4, - skillTypes = { [2] = true, }, + skillTypes = { [SkillType.Spell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.67, baseFlags = { @@ -183,7 +183,7 @@ skills["BoneStalkerEarthquake"] = { hidden = true, color = 1, description = "Smashes the ground with an Axe, Mace or Staff, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Earthquakes created before the first one has erupted will not generate their own aftershocks.", - skillTypes = { [1] = true, [11] = true, [24] = true, [28] = true, [12] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Duration] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -219,7 +219,7 @@ skills["BreachCleave"] = { hidden = true, color = 1, description = "The character swings their weapon (or both weapons if dual wielding) in an arc towards the target. Also does damage to other nearby monsters. Only works with Axes and Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -255,7 +255,7 @@ skills["BullCharge"] = { name = "Charge", hidden = true, color = 4, - skillTypes = { [1] = true, }, + skillTypes = { [SkillType.Attack] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.75, baseFlags = { @@ -281,7 +281,7 @@ skills["CageSpiderCycloneTriggerSandstorms"] = { hidden = true, color = 2, description = "Damage enemies around you, then perform a spinning series of attacks as you travel to a target location. Cannot be supported by Ruthless or Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, [65] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, [SkillType.Type65] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -328,7 +328,7 @@ skills["CageSpiderSandSpark"] = { baseEffectiveness = 0.64999997615814, incrementalEffectiveness = 0.031399998813868, description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, baseFlags = { @@ -359,7 +359,7 @@ skills["ChaosDegenAura"] = { color = 4, baseEffectiveness = 0.93330001831055, incrementalEffectiveness = 0.036499999463558, - skillTypes = { [2] = true, [5] = true, [11] = true, [15] = true, [40] = true, [44] = true, [50] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.ManaCostReserved] = true, [SkillType.DamageOverTime] = true, [SkillType.Aura] = true, [SkillType.ChaosSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -386,7 +386,7 @@ skills["DelayedBlastSpectre"] = { color = 4, baseEffectiveness = 0.77999997138977, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [2] = true, [10] = true, [11] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -438,7 +438,7 @@ skills["DemonFemaleRangedProjectile"] = { name = "Ranged Attack", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [3] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2, baseFlags = { @@ -467,7 +467,7 @@ skills["DemonModularBladeVortexSpectre"] = { baseEffectiveness = 0.59500002861023, incrementalEffectiveness = 0.035999998450279, description = "An ethereal blade spins around you for a duration, repeatedly damaging enemies that it passes through.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [26] = true, [36] = true, [27] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Type27] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -500,7 +500,7 @@ skills["ElementalHitSkeletonKnightIncursion"] = { hidden = true, color = 2, description = "Each attack with this skill will choose an element at random, and will only be able to deal damage of that element. If the attack hits an enemy, it will also deal damage in an area around them, with the radius being larger if that enemy is suffering from an ailment of the chosen element. It will avoid choosing the same element twice in a row.", - skillTypes = { [1] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [25] = true, [28] = true, [24] = true, [33] = true, [34] = true, [35] = true, [48] = true, [69] = true, [11] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.FireSkill] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -531,7 +531,7 @@ skills["ExperimenterDetonateDead"] = { color = 4, baseEffectiveness = 1.5111000537872, incrementalEffectiveness = 0.014299999922514, - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -565,7 +565,7 @@ skills["FireballIncursionChaos"] = { baseEffectiveness = 2, incrementalEffectiveness = 0.025000000372529, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.2, baseFlags = { @@ -595,7 +595,7 @@ skills["FireballIncusionFire"] = { baseEffectiveness = 0.97219997644424, incrementalEffectiveness = 0.050000000745058, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.2, baseFlags = { @@ -625,7 +625,7 @@ skills["FireballIncusionLightning"] = { baseEffectiveness = 1.0937999486923, incrementalEffectiveness = 0.050000000745058, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.2, baseFlags = { @@ -655,7 +655,7 @@ skills["FireMonsterWhirlingBlades"] = { baseEffectiveness = 1.0888999700546, incrementalEffectiveness = 0.064599998295307, description = "Dive through enemies, dealing weapon damage. Only works with daggers, claws and one handed swords. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["Claw"] = true, @@ -700,7 +700,7 @@ skills["FlamebearerFlameBlue"] = { baseEffectiveness = 0.48330000042915, incrementalEffectiveness = 0.041000001132488, description = "Summons a totem that fires a stream of flame at nearby enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [19] = true, [30] = true, [33] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, [SkillType.FireSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 8, castTime = 0.25, @@ -738,7 +738,7 @@ skills["GhostPirateBladeVortexSpectre"] = { baseEffectiveness = 0.59500002861023, incrementalEffectiveness = 0.035999998450279, description = "An ethereal blade spins around you for a duration, repeatedly damaging enemies that it passes through.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [26] = true, [36] = true, [27] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Type27] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -771,7 +771,7 @@ skills["GoatmanEarthquake"] = { hidden = true, color = 1, description = "Smashes the ground with an Axe, Mace or Staff, dealing damage in an area and cracking the earth. The crack will erupt in a powerful aftershock after a short duration. Earthquakes created before the first one has erupted will not generate their own aftershocks.", - skillTypes = { [1] = true, [11] = true, [24] = true, [28] = true, [12] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Duration] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -809,7 +809,7 @@ skills["GoatmanFireMagmaOrb"] = { baseEffectiveness = 2.7778000831604, incrementalEffectiveness = 0.035999998450279, description = "Lob a fiery orb that explodes as it strikes the ground. The skill chains, releasing another fiery orb that repeats this effect.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [19] = true, [18] = true, [36] = true, [33] = true, [3] = true, [68] = true, [26] = true, [23] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Chaining] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -845,7 +845,7 @@ skills["GoatmanMoltenShell"] = { baseEffectiveness = 4.2555999755859, incrementalEffectiveness = 0.03999999910593, description = "Summons fiery elemental shields providing additional armour for a short duration. If cumulative physical damage prevented by your blocking or armour reaches a threshold, the shields explode outwards, dealing fire damage to surrounding enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [18] = true, [31] = true, [36] = true, [33] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -909,7 +909,7 @@ skills["GoatmanMonsterSlam"] = { name = "Slam", hidden = true, color = 1, - skillTypes = { [1] = true, [11] = true, [57] = true, [36] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -937,7 +937,7 @@ skills["GuardianArc"] = { baseEffectiveness = 0.85000002384186, incrementalEffectiveness = 0.029999999329448, description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", - skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Chaining] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -968,7 +968,7 @@ skills["HalfSkeletonPuncture"] = { hidden = true, color = 2, description = "Punctures the target, causing a bleeding debuff, which will be affected by modifiers to skill duration. Puncture works with bows, daggers, claws or swords.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [12] = true, [17] = true, [19] = true, [22] = true, [25] = true, [28] = true, [24] = true, [40] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.DamageOverTime] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -1007,7 +1007,7 @@ skills["HolyFireElementalFireball"] = { baseEffectiveness = 1.1888999938965, incrementalEffectiveness = 0.03940000012517, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -1035,7 +1035,7 @@ skills["IguanaProjectile"] = { name = "Ranged Attack", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -1065,7 +1065,7 @@ skills["IncaMinionProjectile"] = { color = 4, baseEffectiveness = 1.3600000143051, incrementalEffectiveness = 0.018999999389052, - skillTypes = { [2] = true, [10] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.65, baseFlags = { @@ -1096,7 +1096,7 @@ skills["IncursionLeapSlamChampion"] = { hidden = true, color = 4, description = "Jump into the air, damaging enemies (and knocking back some) with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an axe, mace, sword or staff. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1134,7 +1134,7 @@ skills["IncursionMeteorUpheaval"] = { color = 4, baseEffectiveness = 2.25, incrementalEffectiveness = 0.02250000089407, - skillTypes = { [2] = true, [10] = true, [33] = true, [36] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.5, baseFlags = { @@ -1164,7 +1164,7 @@ skills["InsectSpawnerSpit"] = { color = 4, baseEffectiveness = 0.93999999761581, incrementalEffectiveness = 0.029999999329448, - skillTypes = { [3] = true, }, + skillTypes = { [SkillType.Projectile] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1195,7 +1195,7 @@ skills["KaomFireBeamTotemSpectre"] = { baseEffectiveness = 3.039999961853, incrementalEffectiveness = 0.047400001436472, description = "Unleash a beam of fire that burns enemies it touches. Remaining in the beam intensifies the burning, adding a portion of the beam's damage in stages. Inflicts Fire Exposure at maximum stages. Enemies who leave the beam continue to burn for a duration. Increasing cast speed also increases the rate at which the beam can turn.", - skillTypes = { [2] = true, [18] = true, [40] = true, [33] = true, [29] = true, [12] = true, [58] = true, [59] = true, [52] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.CausesBurning] = true, [SkillType.Duration] = true, [SkillType.Channelled] = true, [SkillType.Type59] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1236,7 +1236,7 @@ skills["KaomWarriorGroundSlam"] = { name = "Ground Slam", hidden = true, color = 4, - skillTypes = { [1] = true, }, + skillTypes = { [SkillType.Attack] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1265,7 +1265,7 @@ skills["KaomWarriorMoltenStrike"] = { hidden = true, color = 1, description = "Attacks a target with physical and fire damage, causing balls of molten magma to launch forth from your weapon as you swing. These will explode, causing AoE attack damage to enemies where they land.", - skillTypes = { [1] = true, [3] = true, [11] = true, [24] = true, [25] = true, [28] = true, [33] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.FireSkill] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1307,7 +1307,7 @@ skills["KitavaDemonLeapSlam"] = { hidden = true, color = 4, description = "Jump into the air, damaging enemies (and knocking back some) with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an axe, mace, sword or staff. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1345,7 +1345,7 @@ skills["KitavaDemonCleave"] = { hidden = true, color = 1, description = "The character swings their weapon (or both weapons if dual wielding) in an arc towards the target. Also does damage to other nearby monsters. Only works with Axes and Swords.", - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Type53] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -1383,7 +1383,7 @@ skills["KitavaDemonWhirlingBlades"] = { baseEffectiveness = 2.666699886322, incrementalEffectiveness = 0.0625, description = "Dive through enemies, dealing weapon damage. Only works with daggers, claws and one handed swords. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["Claw"] = true, @@ -1421,7 +1421,7 @@ skills["KitavaDemonXMortar"] = { color = 4, baseEffectiveness = 3.5, incrementalEffectiveness = 0.035000000149012, - skillTypes = { [3] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -1454,7 +1454,7 @@ skills["MassFrenzy"] = { name = "Mass Frenzy", hidden = true, color = 4, - skillTypes = { [2] = true, [11] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2, baseFlags = { @@ -1476,7 +1476,7 @@ skills["MassPower"] = { name = "Mass Power", hidden = true, color = 4, - skillTypes = { [2] = true, [11] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2, baseFlags = { @@ -1500,7 +1500,7 @@ skills["MinerThrowFireSpectre"] = { color = 4, baseEffectiveness = 1.2777999639511, incrementalEffectiveness = 0.03999999910593, - skillTypes = { [3] = true, [68] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1544,7 +1544,7 @@ skills["MonsterArc"] = { baseEffectiveness = 0.89999997615814, incrementalEffectiveness = 0.046000000089407, description = "An arc of lightning stretches from the caster to a targeted enemy and chains on to other nearby enemies. Each time the main beam chains it will also chain to a second enemy, but that secondary arc cannot chain further.", - skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Chaining] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.8, baseFlags = { @@ -1579,7 +1579,7 @@ skills["MonsterCausticArrow"] = { baseEffectiveness = 1.0666999816895, incrementalEffectiveness = 0.03999999910593, description = "Fires an arrow which deals chaos damage in an area on impact, and spreads caustic ground. Enemies standing on the caustic ground take chaos damage over time.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [11] = true, [12] = true, [17] = true, [19] = true, [22] = true, [40] = true, [50] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -1627,7 +1627,7 @@ skills["MonsterCausticBomb"] = { color = 4, baseEffectiveness = 2.2667000293732, incrementalEffectiveness = 0.038499999791384, - skillTypes = { [2] = true, [12] = true, [10] = true, [19] = true, [11] = true, [37] = true, [40] = true, [50] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.DamageOverTime] = true, [SkillType.ChaosSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1672,7 +1672,7 @@ skills["MonsterDischarge"] = { baseEffectiveness = 2.2111001014709, incrementalEffectiveness = 0.028500000014901, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", - skillTypes = { [2] = true, [10] = true, [11] = true, [26] = true, [36] = true, [45] = true, [33] = true, [34] = true, [35] = true, [60] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1706,7 +1706,7 @@ skills["MonsterEnduringCry"] = { hidden = true, color = 1, description = "Performs a warcry, adding endurance charges proportional to the number of surrounding enemies and granting life regeneration to you for a short time if there are nearby enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [5] = true, [11] = true, [12] = true, [74] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, baseFlags = { @@ -1766,7 +1766,7 @@ skills["MonsterEnfeeble"] = { hidden = true, color = 3, description = "Curses all targets in an area, making their attacks and spells less effective.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1814,7 +1814,7 @@ skills["MonsterFireball"] = { baseEffectiveness = 1.1888999938965, incrementalEffectiveness = 0.03940000012517, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -1845,7 +1845,7 @@ skills["MonsterFireBomb"] = { baseEffectiveness = 1.8889000415802, incrementalEffectiveness = 0.052000001072884, description = "Throws a trap that explodes when triggered, dealing fire damage to surrounding enemies and leaving an area of burning ground that damages enemies who walk through it.", - skillTypes = { [2] = true, [12] = true, [10] = true, [19] = true, [11] = true, [29] = true, [37] = true, [40] = true, [33] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.Trap] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1882,7 +1882,7 @@ skills["MonsterFlickerStrike"] = { hidden = true, color = 4, description = "Teleports the character to a nearby monster and attacks it with a melee weapon. If no specific monster is chosen, one is picked at random. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1926,7 +1926,7 @@ skills["MonsterFlameRedCannibal"] = { baseEffectiveness = 0.44440001249313, incrementalEffectiveness = 0.050000000745058, description = "Summons a totem that fires a stream of flame at nearby enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [19] = true, [30] = true, [33] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Totem] = true, [SkillType.FireSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 8, castTime = 0.25, @@ -1963,7 +1963,7 @@ skills["MountainGoatmanIceSpear"] = { baseEffectiveness = 2.1817998886108, incrementalEffectiveness = 0.037999998778105, description = "Launches shards of ice in rapid succession. After travelling a short distance they change to a second form, which moves much faster and pierces through enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -1992,7 +1992,7 @@ skills["MonsterLeapSlam"] = { hidden = true, color = 4, description = "Jump into the air, damaging enemies (and knocking back some) with your weapon where you land. Enemies you would land on are pushed out of the way. Requires an axe, mace, sword or staff. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2032,7 +2032,7 @@ skills["MonsterLesserMultiFireballSpectre"] = { baseEffectiveness = 0.88889998197556, incrementalEffectiveness = 0.03940000012517, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2064,7 +2064,7 @@ skills["MonsterLesserMultiIceSpear"] = { baseEffectiveness = 1.5908999443054, incrementalEffectiveness = 0.03999999910593, description = "Launches shards of ice in rapid succession. After travelling a short distance they change to a second form, which moves much faster and pierces through enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2095,7 +2095,7 @@ skills["MonsterLightningArrow"] = { baseEffectiveness = 1.0199999809265, incrementalEffectiveness = 0.019999999552965, description = "Fires a charged arrow at the target, causing them to be struck by a bolt of lightning which damages nearby enemies.", - skillTypes = { [1] = true, [48] = true, [69] = true, [11] = true, [3] = true, [68] = true, [22] = true, [17] = true, [19] = true, [35] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.LightningSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -2127,7 +2127,7 @@ skills["MonsterLightningThorns"] = { color = 4, baseEffectiveness = 1.1100000143051, incrementalEffectiveness = 0.034000001847744, - skillTypes = { [2] = true, [5] = true, [12] = true, [35] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.LightningSkill] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2154,7 +2154,7 @@ skills["MonsterMultiFireballSpectre"] = { baseEffectiveness = 0.77780002355576, incrementalEffectiveness = 0.03940000012517, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2186,7 +2186,7 @@ skills["MonsterMultiIceSpear"] = { baseEffectiveness = 1.5908999443054, incrementalEffectiveness = 0.03999999910593, description = "Launches shards of ice in rapid succession. After travelling a short distance they change to a second form, which moves much faster and pierces through enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2215,7 +2215,7 @@ skills["MonsterProjectileWeakness"] = { hidden = true, color = 2, description = "Curses all targets in an area, making them easier to pierce and to knock back, and increasing the damage they take from projectiles.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2257,7 +2257,7 @@ skills["MonsterProximityShield"] = { name = "Proximity Shield", hidden = true, color = 4, - skillTypes = { [2] = true, [11] = true, [12] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2281,7 +2281,7 @@ skills["MonsterPuncture"] = { hidden = true, color = 2, description = "Punctures the target, causing a bleeding debuff, which will be affected by modifiers to skill duration. Puncture works with bows, daggers, claws or swords.", - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [12] = true, [17] = true, [19] = true, [22] = true, [25] = true, [28] = true, [24] = true, [40] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.DamageOverTime] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, ["Claw"] = true, @@ -2321,7 +2321,7 @@ skills["MonsterRighteousFireWhileSpectred"] = { baseEffectiveness = 1.1110999584198, incrementalEffectiveness = 0.056000001728535, description = "Engulfs you in magical fire that rapidly burns you and nearby enemies. Your spell damage is substantially increased while under this effect. The effect ends when you have 1 life remaining.", - skillTypes = { [2] = true, [5] = true, [11] = true, [29] = true, [40] = true, [33] = true, [18] = true, [36] = true, [75] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2349,7 +2349,7 @@ skills["MonsterShockNova"] = { baseEffectiveness = 1.2374999523163, incrementalEffectiveness = 0.0304000005126, description = "Casts a shocking ring of lightning which deals damage to monsters it touches. Monsters in the centre of the ring receive no damage.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, baseFlags = { @@ -2380,7 +2380,7 @@ skills["MonsterSpark"] = { baseEffectiveness = 0.83749997615814, incrementalEffectiveness = 0.026100000366569, description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, baseFlags = { @@ -2419,7 +2419,7 @@ skills["MonsterSplitFireballSpectre"] = { baseEffectiveness = 0.95560002326965, incrementalEffectiveness = 0.03940000012517, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2451,7 +2451,7 @@ skills["MonsterSplitIceSpear"] = { baseEffectiveness = 1.5908999443054, incrementalEffectiveness = 0.03999999910593, description = "Launches shards of ice in rapid succession. After travelling a short distance they change to a second form, which moves much faster and pierces through enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2480,7 +2480,7 @@ skills["MonsterWarlordsMark"] = { hidden = true, color = 1, description = "Curses all targets in an area, making them more vulnerable to stuns. Hitting the cursed targets will leech life and mana, and killing them will result in a chance to gain an endurance charge.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2525,7 +2525,7 @@ skills["MotherOfFlamesMagmaOrb3"] = { baseEffectiveness = 2.7778000831604, incrementalEffectiveness = 0.035500001162291, description = "Lob a fiery orb that explodes as it strikes the ground. The skill chains, releasing another fiery orb that repeats this effect.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [19] = true, [18] = true, [36] = true, [33] = true, [3] = true, [68] = true, [26] = true, [23] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Chaining] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -2559,7 +2559,7 @@ skills["NecromancerConductivity"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to lightning damage and giving them a chance to be shocked by lightning damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [45] = true, [35] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2601,7 +2601,7 @@ skills["NecromancerElementalWeakness"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to elemental damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2641,7 +2641,7 @@ skills["NecromancerEnfeeble"] = { hidden = true, color = 3, description = "Curses all targets in an area, making their attacks and spells less effective.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2688,7 +2688,7 @@ skills["NecromancerFlammability"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to fire damage and giving them a chance to be ignited by fire damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [33] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2729,7 +2729,7 @@ skills["NecromancerFrostbite"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to cold damage and giving them a chance to be frozen by cold damage.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [34] = true, [60] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2770,7 +2770,7 @@ skills["NecromancerProjectileWeakness"] = { hidden = true, color = 2, description = "Curses all targets in an area, making them easier to pierce and to knock back, and increasing the damage they take from projectiles.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2814,8 +2814,8 @@ skills["NecromancerRaiseZombie"] = { hidden = true, color = 4, description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee attack and an area of effect slam which cannot be evaded.", - skillTypes = { [2] = true, [9] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, }, - minionSkillTypes = { [1] = true, [24] = true, [25] = true, [28] = true, [11] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Area] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2843,7 +2843,7 @@ skills["NecromancerVulnerability"] = { hidden = true, color = 4, description = "Curse all targets in an area, causing them to take increased physical damage and further increased physical damage over time. Attacks against cursed enemies have a chance to inflict bleeding and maim.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2888,7 +2888,7 @@ skills["PyroChaosFireball"] = { baseEffectiveness = 1.3555999994278, incrementalEffectiveness = 0.028500000014901, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2921,7 +2921,7 @@ skills["PyroFireball"] = { baseEffectiveness = 1.1888999938965, incrementalEffectiveness = 0.03940000012517, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -2952,7 +2952,7 @@ skills["PyroSuicideExplosion"] = { color = 4, baseEffectiveness = 2.2667000293732, incrementalEffectiveness = 0.050000000745058, - skillTypes = { [2] = true, [11] = true, [10] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2986,7 +2986,7 @@ skills["RevenantSpellProjectileSpectre"] = { color = 4, baseEffectiveness = 1, incrementalEffectiveness = 0.052999999374151, - skillTypes = { [2] = true, [3] = true, [68] = true, [36] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -3020,7 +3020,7 @@ skills["SeawitchFrostbolt"] = { baseEffectiveness = 2.0455000400543, incrementalEffectiveness = 0.041000001132488, description = "Fires a slow-moving projectile that pierces through enemies, dealing cold damage.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [34] = true, [36] = true, [60] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, baseFlags = { @@ -3049,7 +3049,7 @@ skills["SeaWitchScreech"] = { color = 4, baseEffectiveness = 0.27270001173019, incrementalEffectiveness = 0.041999999433756, - skillTypes = { [2] = true, }, + skillTypes = { [SkillType.Spell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.73, baseFlags = { @@ -3080,7 +3080,7 @@ skills["SeaWitchWave"] = { color = 4, baseEffectiveness = 1.4636000394821, incrementalEffectiveness = 0.034200001507998, - skillTypes = { [2] = true, [10] = true, [26] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -3108,7 +3108,7 @@ skills["SkeletonCannonMortar"] = { baseEffectiveness = 3.5, incrementalEffectiveness = 0.014000000432134, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -3144,7 +3144,7 @@ skills["SkeletonCannonBoneMortar"] = { color = 4, baseEffectiveness = 3.5, incrementalEffectiveness = 0.014000000432134, - skillTypes = { [3] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -3179,7 +3179,7 @@ skills["SkeletonCannonBoneNova"] = { name = "Bone Nova", hidden = true, color = 4, - skillTypes = { [1] = true, [11] = true, [10] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -3205,7 +3205,7 @@ skills["SkeletonMassBowProjectile"] = { name = "Puncture", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -3236,7 +3236,7 @@ skills["SkeletonSpark"] = { baseEffectiveness = 0.75, incrementalEffectiveness = 0.0304000005126, description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, baseFlags = { @@ -3273,7 +3273,7 @@ skills["SkeletonTemporalChains"] = { hidden = true, color = 4, description = "Curses all targets in an area, Slowing them, and making effects on them expire more slowly.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3313,7 +3313,7 @@ skills["SkeletonVulnerability"] = { hidden = true, color = 4, description = "Curse all targets in an area, causing them to take increased physical damage and further increased physical damage over time. Attacks against cursed enemies have a chance to inflict bleeding and maim.", - skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, [67] = true, [80] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3354,7 +3354,7 @@ skills["SnakeSpineProjectile"] = { name = "Spine Attack", hidden = true, color = 4, - skillTypes = { [1] = true, [48] = true, [69] = true, [3] = true, [68] = true, [10] = true, [57] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { @@ -3382,7 +3382,7 @@ skills["SolarisChampionFlameVortex"] = { baseEffectiveness = 1.6000000238419, incrementalEffectiveness = 0.029999999329448, description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, [81] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.65, baseFlags = { @@ -3414,7 +3414,7 @@ skills["SpecialBeamCannon"] = { color = 4, baseEffectiveness = 4.1556000709534, incrementalEffectiveness = 0.037000000476837, - skillTypes = { [2] = true, [10] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 2.5, baseFlags = { @@ -3444,7 +3444,7 @@ skills["TarMortarTaster"] = { baseEffectiveness = 1.3332999944687, incrementalEffectiveness = 0.032000001519918, description = "Like monster mortar skill, but leaves a ground effect on impact.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -3478,7 +3478,7 @@ skills["UndyingWhirlingBlades"] = { hidden = true, color = 4, description = "Dive through enemies, dealing weapon damage. Only works with daggers, claws and one handed swords. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [24] = true, [38] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MovementSkill] = true, }, weaponTypes = { ["Thrusting One Handed Sword"] = true, ["Claw"] = true, @@ -3512,7 +3512,7 @@ skills["WalkingDoubleSlash"] = { name = "Double Slash", hidden = true, color = 2, - skillTypes = { [1] = true, [11] = true, [28] = true, [24] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, }, weaponTypes = { ["Two Handed Axe"] = true, ["Thrusting One Handed Sword"] = true, @@ -3546,7 +3546,7 @@ skills["WickerManMoltenStrike"] = { hidden = true, color = 1, description = "Attacks a target with physical and fire damage, causing balls of molten magma to launch forth from your weapon as you swing. These will explode, causing AoE attack damage to enemies where they land.", - skillTypes = { [1] = true, [3] = true, [11] = true, [24] = true, [25] = true, [28] = true, [33] = true, [48] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.FireSkill] = true, [SkillType.ProjectileAttack] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -3589,7 +3589,7 @@ skills["VaalincursionMortar"] = { baseEffectiveness = 2.5, incrementalEffectiveness = 0.029999999329448, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", - skillTypes = { [3] = true, [68] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.2, baseFlags = { @@ -3622,7 +3622,7 @@ skills["VaalIncursionFirestorm"] = { baseEffectiveness = 4.4443998336792, incrementalEffectiveness = 0.03999999910593, description = "Flaming bolts rain down over the targeted area. They explode when landing, dealing damage to nearby enemies.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, [67] = true, [81] = true, [83] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.2, baseFlags = { @@ -3655,7 +3655,7 @@ skills["VaalIncursionSpecialBeamCannonBlood"] = { color = 4, baseEffectiveness = 2, incrementalEffectiveness = 0.035000000149012, - skillTypes = { [2] = true, [10] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.5, baseFlags = { diff --git a/Data/3_0/Skills/sup_dex.lua b/Data/3_0/Skills/sup_dex.lua index b05f859ce..449a5ef04 100644 --- a/Data/3_0/Skills/sup_dex.lua +++ b/Data/3_0/Skills/sup_dex.lua @@ -13,7 +13,7 @@ skills["SupportAddedColdDamage"] = { baseEffectiveness = 0.57270002365112, incrementalEffectiveness = 0.03770000115037, support = true, - requireSkillTypes = { 1, 10, }, + requireSkillTypes = { SkillType.Attack, SkillType.Hit, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -75,7 +75,7 @@ skills["SupportAdditionalAccuracy"] = { description = "Supports attack skills.", color = 2, support = true, - requireSkillTypes = { 1, 56, }, + requireSkillTypes = { SkillType.Attack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -136,7 +136,7 @@ skills["SupportBlind"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -198,8 +198,8 @@ skills["SupportBlockReduction"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, - addSkillTypes = { 12, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, + addSkillTypes = { SkillType.Duration, }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", baseMods = { @@ -262,9 +262,10 @@ skills["SupportCastOnCrit"] = { description = "Must support both an attack skill and a spell skill to work. The attack skill will trigger a spell when it critically strikes an enemy. Cannot support totems, traps, or mines. Vaal skills, channelling skills, and skills that reserve mana cannot be triggered.", color = 2, support = true, - requireSkillTypes = { 1, 36, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 15, 61, }, + requireSkillTypes = { SkillType.Attack, SkillType.Spell, SkillType.Triggerable, SkillType.TriggeredGrantedSkill, SkillType.NOT, SkillType.AND, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.ManaCostReserved, }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_cast_on_crit_spell_damage_+%_final"] = { @@ -332,9 +333,9 @@ skills["SupportCastOnDeath"] = { description = "Each supported spell skill will be triggered when you die. Cannot support skills used by totems, traps, or mines. Vaal skills, channelling skills, and skills that reserve mana cannot be triggered.", color = 2, support = true, - requireSkillTypes = { 36, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 9, 37, 41, 30, 44, 61, }, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Minion, SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["area_of_effect_+%_while_dead"] = { @@ -405,7 +406,7 @@ skills["SupportChain"] = { description = "Supports projectile skills, and any other skills that chain.", color = 2, support = true, - requireSkillTypes = { 23, 3, 54, 56, }, + requireSkillTypes = { SkillType.Chaining, SkillType.Projectile, SkillType.Type54, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -472,7 +473,7 @@ skills["SupportChanceToFlee"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 1, 10, }, + requireSkillTypes = { SkillType.Attack, SkillType.Hit, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -533,7 +534,7 @@ skills["SupportGemFrenzyPowerOnTrapTrigger"] = { description = "Supports skills which throw traps.", color = 2, support = true, - requireSkillTypes = { 37, }, + requireSkillTypes = { SkillType.Trap, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -597,7 +598,7 @@ skills["SupportClusterTrap"] = { description = "Supports traps skills, making them throw extra traps randomly around the targeted location.", color = 2, support = true, - requireSkillTypes = { 37, }, + requireSkillTypes = { SkillType.Trap, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -666,7 +667,7 @@ skills["SupportColdPenetration"] = { description = "Supports any skill that hits enemies, making those hits penetrate enemy cold resistance.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -727,7 +728,7 @@ skills["SupportCullingStrike"] = { description = "Supports any skill that hits enemies. If enemies are left below 10% of maximum life after being hit by these skills, they will be killed.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -792,7 +793,7 @@ skills["SupportDeadlyAilments"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -899,7 +900,7 @@ skills["SupportFasterAttack"] = { description = "Supports attack skills.", color = 2, support = true, - requireSkillTypes = { 1, 56, }, + requireSkillTypes = { SkillType.Attack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -960,9 +961,9 @@ skills["SupportFasterProjectiles"] = { description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 14, 54, 56, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileDamage, SkillType.Type54, SkillType.Type56, }, addSkillTypes = { }, - excludeSkillTypes = { 51, }, + excludeSkillTypes = { SkillType.Type51, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -1023,7 +1024,7 @@ skills["SupportFork"] = { description = "Supports projectile skills, making their projectiles fork into two projectiles the first time they hit an enemy and don't pierce it.", color = 2, support = true, - requireSkillTypes = { 3, 54, 56, }, + requireSkillTypes = { SkillType.Projectile, SkillType.Type54, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1090,7 +1091,7 @@ skills["SupportGreaterMultipleProjectiles"] = { description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 54, 56, 73, }, + requireSkillTypes = { SkillType.Projectile, SkillType.Type54, SkillType.Type56, SkillType.Type73, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1159,7 +1160,7 @@ skills["SupportDamageAgainstChilled"] = { description = "Supports any skill that deals damage.", color = 2, support = true, - requireSkillTypes = { 10, 1, 40, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.DamageOverTime, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1233,9 +1234,9 @@ skills["SupportFrenzyChargeOnSlayingFrozenEnemy"] = { baseEffectiveness = 0.51819998025894, incrementalEffectiveness = 0.03770000115037, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { 37, 41, 30, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -1299,7 +1300,7 @@ skills["SupportLesserMultipleProjectiles"] = { description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 54, 56, 73, }, + requireSkillTypes = { SkillType.Projectile, SkillType.Type54, SkillType.Type56, SkillType.Type73, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1370,7 +1371,7 @@ skills["SupportLesserPoison"] = { baseEffectiveness = 0.2732999920845, incrementalEffectiveness = 0.028500000014901, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1433,7 +1434,7 @@ skills["SupportManaLeech"] = { description = "Supports any skill that hits enemies, causing those hits to leech mana based on damage dealt.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1494,9 +1495,10 @@ skills["SupportGemMirageArcher"] = { description = "Supports attack skills that can be used with bows. Supported skills can only be used with bows. Cannot support Vaal skills, minion skills, movement skills, or skills used by totems, traps, or mines.", color = 2, support = true, - requireSkillTypes = { 69, }, - addSkillTypes = { 12, }, - excludeSkillTypes = { 43, 30, 37, 41, 9, }, + requireSkillTypes = { SkillType.SkillCanMirageArcher, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { SkillType.Vaal, SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.Minion, }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -1561,7 +1563,7 @@ skills["SupportMultiTrap"] = { description = "Supports traps skills, making them throw extra traps in a line.", color = 2, support = true, - requireSkillTypes = { 37, }, + requireSkillTypes = { SkillType.Trap, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1629,7 +1631,7 @@ skills["SupportOnslaught"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1692,7 +1694,7 @@ skills["SupportPierce"] = { description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 54, 56, }, + requireSkillTypes = { SkillType.Projectile, SkillType.Type54, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1759,7 +1761,7 @@ skills["SupportPointBlank"] = { description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 48, 56, }, + requireSkillTypes = { SkillType.ProjectileAttack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1826,7 +1828,7 @@ skills["SupportPoison"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1893,7 +1895,7 @@ skills["SupportRapidDecay"] = { description = "Supports any skill that has a duration, or can hit enemies to inflict ailments on them.", color = 2, support = true, - requireSkillTypes = { 12, 55, 10, 1, }, + requireSkillTypes = { SkillType.Duration, SkillType.Type55, SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1960,9 +1962,9 @@ skills["SupportSlowerProjectiles"] = { description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 14, 54, 56, }, + requireSkillTypes = { SkillType.Projectile, SkillType.ProjectileDamage, SkillType.Type54, SkillType.Type56, }, addSkillTypes = { }, - excludeSkillTypes = { 51, }, + excludeSkillTypes = { SkillType.Type51, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_slower_projectiles_projectile_speed_+%_final"] = { @@ -2030,9 +2032,9 @@ skills["SupportTrap"] = { description = "Supports spells, or attacks that use bows or wands. Instead of using that skill, you will throw a trap that will use the skill for you when an enemy walks near it. Traps cannot use channelling skills.", color = 2, support = true, - requireSkillTypes = { 17, }, - addSkillTypes = { 37, }, - excludeSkillTypes = { 61, 15, }, + requireSkillTypes = { SkillType.SkillCanTrap, }, + addSkillTypes = { SkillType.Trap, }, + excludeSkillTypes = { SkillType.TriggeredGrantedSkill, SkillType.ManaCostReserved, }, statDescriptionScope = "gem_stat_descriptions", addFlags = { trap = true, @@ -2110,7 +2112,7 @@ skills["SupportTrapCooldown"] = { description = "Supports skills which throw traps.", color = 2, support = true, - requireSkillTypes = { 37, }, + requireSkillTypes = { SkillType.Trap, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2173,7 +2175,7 @@ skills["SupportTrapAndMineDamage"] = { description = "Supports trap or mine skills.", color = 2, support = true, - requireSkillTypes = { 37, 41, }, + requireSkillTypes = { SkillType.Trap, SkillType.Mine, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2241,7 +2243,7 @@ skills["SupportPhysicalProjectileAttackDamage"] = { description = "Supports projectile attack skills.", color = 2, support = true, - requireSkillTypes = { 48, 56, }, + requireSkillTypes = { SkillType.ProjectileAttack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2319,7 +2321,7 @@ skills["SupportDebilitate"] = { description = "Supports any skill that hits enemies.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2393,7 +2395,7 @@ skills["SupportVoidManipulation"] = { description = "Supports any skill that deals damage.", color = 2, support = true, - requireSkillTypes = { 10, 1, 40, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.DamageOverTime, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2460,9 +2462,9 @@ skills["SupportParallelProjectiles"] = { description = "Supports skills that fire projectiles from the user. Does not affect projectiles fired from other locations as secondary effects.", color = 2, support = true, - requireSkillTypes = { 68, }, + requireSkillTypes = { SkillType.SkillCanVolley, }, addSkillTypes = { }, - excludeSkillTypes = { 70, 71, }, + excludeSkillTypes = { SkillType.Type70, SkillType.Type71, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_parallel_projectiles_damage_+%_final"] = { @@ -2529,8 +2531,8 @@ skills["SupportChaosAttacks"] = { description = "Supports attack skills.", color = 2, support = true, - requireSkillTypes = { 1, }, - addSkillTypes = { 12, }, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { SkillType.Duration, }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", baseMods = { diff --git a/Data/3_0/Skills/sup_int.lua b/Data/3_0/Skills/sup_int.lua index 560da2250..1cfb27d6c 100644 --- a/Data/3_0/Skills/sup_int.lua +++ b/Data/3_0/Skills/sup_int.lua @@ -13,7 +13,7 @@ skills["SupportAddedChaosDamage"] = { baseEffectiveness = 0.43329998850822, incrementalEffectiveness = 0.041999999433756, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -77,7 +77,7 @@ skills["SupportAddedLightningDamage"] = { baseEffectiveness = 0.52499997615814, incrementalEffectiveness = 0.039000000804663, support = true, - requireSkillTypes = { 1, 10, }, + requireSkillTypes = { SkillType.Attack, SkillType.Hit, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -139,9 +139,9 @@ skills["SupportArcaneSurge"] = { description = "Each supported spell will track how much mana you spend on it, granting a buff when the total mana spent reaches a threshold. Cannot support skills used by totems, traps, or mines.", color = 3, support = true, - requireSkillTypes = { 2, }, - addSkillTypes = { 12, }, - excludeSkillTypes = { 37, 41, 30, 42, }, + requireSkillTypes = { SkillType.Spell, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Triggered, SkillType.Triggerable, SkillType.AND, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_arcane_surge_cast_speed_+%"] = { @@ -220,9 +220,10 @@ skills["SupportBlasphemy"] = { description = "Supports curse skills, turning them into auras that will apply their effect to all enemies in an area around you.", color = 3, support = true, - requireSkillTypes = { 80, }, - addSkillTypes = { 15, 16, 31, 44, 64, }, + requireSkillTypes = { SkillType.AppliesCurse, }, + addSkillTypes = { SkillType.ManaCostReserved, SkillType.ManaCostPercent, SkillType.Type31, SkillType.Aura, SkillType.AuraDebuff, }, excludeSkillTypes = { }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -283,7 +284,7 @@ skills["SupportBonechill"] = { description = "Supports any skill that can chill enemies or create chilling areas.", color = 3, support = true, - requireSkillTypes = { 1, 10, 78, 79, }, + requireSkillTypes = { SkillType.Attack, SkillType.Hit, SkillType.NonHitChill, SkillType.ChillingArea, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -353,9 +354,9 @@ skills["SupportCastOnStunned"] = { description = "Each supported spell skill will have a chance to be triggered when you are stunned. Cannot support skills used by totems, traps, or mines. Vaal skills, channelling skills, and skills that reserve mana cannot be triggered.", color = 3, support = true, - requireSkillTypes = { 36, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 44, 61, }, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -416,9 +417,9 @@ skills["SupportCastWhileChannelling"] = { description = "Must support both a channelling skill and a non-channelling spell skill to work. The channelling skill will trigger a spell periodically while channelling. Cannot support skills used by totems, traps, or mines. Vaal skills and skills that reserve mana cannot be triggered.", color = 3, support = true, - requireSkillTypes = { 58, 36, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 30, 61, }, + requireSkillTypes = { SkillType.Channelled, SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Totem, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["cast_while_channelling_time_ms"] = { @@ -488,7 +489,7 @@ skills["SupportChanceToIgnite"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -559,7 +560,7 @@ skills["SupportConcentratedEffect"] = { description = "Supports any skill with an area of effect, regardless of whether that skill deals damage.", color = 3, support = true, - requireSkillTypes = { 11, 21, 53, }, + requireSkillTypes = { SkillType.Area, SkillType.CreateMinion, SkillType.Type53, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -629,7 +630,7 @@ skills["SupportControlledDestruction"] = { description = "Supports attack skills, or spell skills that deal damage.", color = 3, support = true, - requireSkillTypes = { 10, 1, 59, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.Type59, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -696,9 +697,10 @@ skills["SupportCurseOnHit"] = { description = "Must support both a skill that hits enemies, and a curse skill to work. The curse will be applied when enemies are hit by the other skill. Cannot support totems, traps, or mines. Minions cannot apply curses this way.", color = 3, support = true, - requireSkillTypes = { 1, 10, 80, }, + requireSkillTypes = { SkillType.Attack, SkillType.Hit, SkillType.AppliesCurse, }, addSkillTypes = { }, - excludeSkillTypes = { 37, 41, 30, 64, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.AuraDebuff, }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -761,7 +763,7 @@ skills["SupportDecay"] = { baseEffectiveness = 1.335000038147, incrementalEffectiveness = 0.045800000429153, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -822,7 +824,7 @@ skills["SupportEfficacy"] = { description = "Supports any skill that deals damage or has a duration.", color = 3, support = true, - requireSkillTypes = { 10, 1, 59, 12, 55, 40, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.Type59, SkillType.Duration, SkillType.Type55, SkillType.DamageOverTime, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -893,7 +895,7 @@ skills["SupportElementalFocus"] = { description = "Supports any skill that hits or burns enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, 29, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.CausesBurning, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -960,8 +962,8 @@ skills["SupportElementalProliferation"] = { description = "Supports any skill that hits enemies, or could otherwise apply elemental ailments.", color = 3, support = true, - requireSkillTypes = { 10, 1, 20, }, - addSkillTypes = { 11, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.CauseElementalStatus, }, + addSkillTypes = { SkillType.Area, }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -1029,7 +1031,7 @@ skills["SupportEnergyShieldLeech"] = { description = "Supports any skill that hits enemies, causing those hits to leech energy shield based on damage dealt.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1131,9 +1133,9 @@ skills["SupportFasterCast"] = { description = "Supports non-instant spell skills.", color = 3, support = true, - requireSkillTypes = { 2, }, + requireSkillTypes = { SkillType.Spell, }, addSkillTypes = { }, - excludeSkillTypes = { 75, }, + excludeSkillTypes = { SkillType.Instant, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -1192,8 +1194,8 @@ skills["SupportIgniteProliferation"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, - addSkillTypes = { 11, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, + addSkillTypes = { SkillType.Area, }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -1261,7 +1263,7 @@ skills["SupportImmolation"] = { baseEffectiveness = 0.88889998197556, incrementalEffectiveness = 0.034000001847744, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1323,7 +1325,7 @@ skills["SupportIncreasedAreaOfEffect"] = { description = "Supports any skill with an area of effect.", color = 3, support = true, - requireSkillTypes = { 11, 21, 53, }, + requireSkillTypes = { SkillType.Area, SkillType.CreateMinion, SkillType.Type53, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1384,7 +1386,7 @@ skills["SupportIncreasedCriticalDamage"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1445,7 +1447,7 @@ skills["SupportIncreasedCriticalStrikes"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1507,9 +1509,10 @@ skills["SupportStormBarrier"] = { description = "Supports any channelling skill, protecting you from damage while you channel it. Cannot support Minions that channel skills.", color = 3, support = true, - requireSkillTypes = { 58, }, - addSkillTypes = { 12, }, + requireSkillTypes = { SkillType.Channelled, }, + addSkillTypes = { SkillType.Duration, }, excludeSkillTypes = { }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_storm_barrier_physical_damage_taken_when_hit_+%_final"] = { @@ -1600,9 +1603,9 @@ skills["SupportOnslaughtOnSlayingShockedEnemy"] = { baseEffectiveness = 0.23749999701977, incrementalEffectiveness = 0.039000000804663, support = true, - requireSkillTypes = { 10, 1, }, - addSkillTypes = { 12, }, - excludeSkillTypes = { 37, 41, 30, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, + addSkillTypes = { SkillType.Duration, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_innervate_minimum_added_lightning_damage"] = { @@ -1675,9 +1678,9 @@ skills["SupportHandcastSpellBoost"] = { description = "Supports spell skills that you cast yourself. Cannot support triggered skills, Vaal skills, instant skills, channelling skills, skills which reserve mana, or skills used by totems, traps, or mines. Cannot modify the skills of minions.", color = 3, support = true, - requireSkillTypes = { 83, }, + requireSkillTypes = { SkillType.AreaSpell, }, addSkillTypes = { }, - excludeSkillTypes = { 37, 41, 30, 58, 75, 15, 64, 42, 61, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Channelled, SkillType.Instant, SkillType.ManaCostReserved, SkillType.AuraDebuff, SkillType.Triggered, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_spell_boost_area_damage_+%_final_per_charge"] = { @@ -1747,7 +1750,7 @@ skills["SupportItemRarity"] = { description = "Supports any skill that can kill enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, 40, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.DamageOverTime, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1808,7 +1811,7 @@ skills["SupportLightningPenetration"] = { description = "Supports any skill that hits enemies, making those hits penetrate enemy lightning resistance.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1869,7 +1872,7 @@ skills["SupportMinefield"] = { description = "Supports skills which place mines.", color = 3, support = true, - requireSkillTypes = { 41, }, + requireSkillTypes = { SkillType.Mine, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1937,7 +1940,7 @@ skills["SupportMinionDamage"] = { description = "Supports minion skills.", color = 3, support = true, - requireSkillTypes = { 9, }, + requireSkillTypes = { SkillType.Minion, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2003,7 +2006,7 @@ skills["SupportMinionLife"] = { description = "Supports minion skills.", color = 3, support = true, - requireSkillTypes = { 9, }, + requireSkillTypes = { SkillType.Minion, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2069,7 +2072,7 @@ skills["SupportMinionSpeed"] = { description = "Supports minion skills.", color = 3, support = true, - requireSkillTypes = { 9, }, + requireSkillTypes = { SkillType.Minion, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2132,7 +2135,7 @@ skills["SupportSummonElementalResistances"] = { description = "Supports minion or totem skills.", color = 3, support = true, - requireSkillTypes = { 9, 30, }, + requireSkillTypes = { SkillType.Minion, SkillType.Totem, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2204,7 +2207,7 @@ skills["SupportPhysicalToLightning"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2267,7 +2270,7 @@ skills["SupportPowerChargeOnCrit"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2334,9 +2337,9 @@ skills["SupportRemoteMine"] = { description = "Supports spells, or attacks that use bows or wands. Instead of using that skill, you will place a mine that will use the skill for you when you detonate it. Mines cannot use channelling skills.", color = 3, support = true, - requireSkillTypes = { 19, }, - addSkillTypes = { 41, }, - excludeSkillTypes = { 61, 15, }, + requireSkillTypes = { SkillType.SkillCanMine, }, + addSkillTypes = { SkillType.Mine, }, + excludeSkillTypes = { SkillType.TriggeredGrantedSkill, SkillType.ManaCostReserved, }, statDescriptionScope = "gem_stat_descriptions", addFlags = { mine = true, @@ -2412,9 +2415,10 @@ skills["SupportSpellCascade"] = { description = "Supports spell skills that apply an effect to an area around a targeted location. Cannot support Vaal skills, minion skills, or skills used by totems, traps, or mines.", color = 3, support = true, - requireSkillTypes = { 67, }, + requireSkillTypes = { SkillType.SpellCanCascade, }, addSkillTypes = { }, - excludeSkillTypes = { 30, 37, 41, 42, 15, 43, 9, }, + excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.ManaCostReserved, SkillType.Vaal, SkillType.Minion, }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_spell_cascade_area_of_effect_+%_final"] = { @@ -2483,9 +2487,9 @@ skills["SupportMulticast"] = { description = "Supports spell skills, making them repeat when cast. Cannot support Vaal skills, totem skills, channelling skills, triggered skills, instant skills, or skills which reserve mana.", color = 3, support = true, - requireSkillTypes = { 26, }, + requireSkillTypes = { SkillType.SpellCanRepeat, }, addSkillTypes = { }, - excludeSkillTypes = { 30, 37, 41, 42, 15, 43, 75, }, + excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.Triggered, SkillType.ManaCostReserved, SkillType.Vaal, SkillType.Instant, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_echo_damage_+%_final"] = { @@ -2555,9 +2559,9 @@ skills["SupportSummonGhostOnKill"] = { description = "Supports skills that can hit enemies, or create minions. When those skills or minions kill enemies, they will have a chance to summon a Phantasm minion, which uses a piercing projectile spell that deals physical damage.", color = 3, support = true, - requireSkillTypes = { 1, 10, 9, }, - addSkillTypes = { 9, 21, }, - excludeSkillTypes = { 72, }, + requireSkillTypes = { SkillType.Attack, SkillType.Hit, SkillType.Minion, }, + addSkillTypes = { SkillType.Minion, SkillType.CreateMinion, }, + excludeSkillTypes = { SkillType.Type72, }, statDescriptionScope = "gem_stat_descriptions", addFlags = { minion = true, @@ -2631,7 +2635,7 @@ skills["SupportAilments"] = { description = "Supports any skill that hits enemies.", color = 3, support = true, - requireSkillTypes = { 10, 1, 20, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.CauseElementalStatus, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -2699,9 +2703,9 @@ skills["SupportHandcastAnticipation"] = { description = "Supports spell skills, making their effect reoccur when cast. Cannot support skills with cooldowns, triggered skills, Brand skills, Vaal skills, channelling skills, skills which reserve mana, or skills used by totems, traps, or mines. Cannot modify the skills of minions.", color = 3, support = true, - requireSkillTypes = { 81, }, + requireSkillTypes = { SkillType.CanRapidFire, }, addSkillTypes = { }, - excludeSkillTypes = { 30, 37, 41, 42, 15, 43, 75, 58, }, + excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.Triggered, SkillType.ManaCostReserved, SkillType.Vaal, SkillType.Instant, SkillType.Channelled, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, diff --git a/Data/3_0/Skills/sup_str.lua b/Data/3_0/Skills/sup_str.lua index 49161ec0e..020ad1044 100644 --- a/Data/3_0/Skills/sup_str.lua +++ b/Data/3_0/Skills/sup_str.lua @@ -11,7 +11,7 @@ skills["SupportAddedFireDamage"] = { description = "Supports any skill that hits enemies.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -72,9 +72,10 @@ skills["SupportSpiritStrike"] = { description = "Supports single-target melee attack skills, causing them to attack multiple targets simultaneously. The extra targets must be a minimum distance from the user. If supporting a minion attack skill, the minion's skills will not also attack multiple targets. Cannot support triggered skills.", color = 1, support = true, - requireSkillTypes = { 25, }, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, addSkillTypes = { }, - excludeSkillTypes = { 47, 43, }, + excludeSkillTypes = { SkillType.TriggeredGrantedSkill, SkillType.Vaal, }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_spirit_strike_damage_+%_final"] = { @@ -200,7 +201,7 @@ skills["SupportBloodlust"] = { description = "Supports melee attack skills, causing them to deal more damage against bleeding enemies, but preventing those skills from inflicting bleeding on enemies in any way.", color = 1, support = true, - requireSkillTypes = { 24, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -267,7 +268,7 @@ skills["SupportBrutality"] = { description = "Supports any skill that hits enemies.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -335,7 +336,7 @@ skills["SupportIncreasedBurningDamage"] = { description = "Supports any skill that hits enemies, or can deal burning damage directly.", color = 1, support = true, - requireSkillTypes = { 10, 1, 29, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.CausesBurning, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -401,9 +402,10 @@ skills["SupportCastOnMeleeKill"] = { description = "Must support both a melee attack skill and a spell skill to work. The attack skill will trigger a spell when it kills an enemy. Cannot support totems, traps, or mines. Vaal skills, channelling skills, and skills that reserve mana cannot be triggered.", color = 1, support = true, - requireSkillTypes = { 24, 36, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 15, 61, }, + requireSkillTypes = { SkillType.Melee, SkillType.Spell, SkillType.Triggerable, SkillType.TriggeredGrantedSkill, SkillType.NOT, SkillType.AND, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.ManaCostReserved, }, + ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_cast_on_melee_kill_spell_damage_+%_final"] = { @@ -470,9 +472,9 @@ skills["SupportCastOnDamageTaken"] = { description = "Each supported spell skill will track damage you take, and be triggered when the total damage taken reaches a threshold. Cannot support skills used by totems, traps, or mines. Vaal skills, channelling skills, and skills that reserve mana cannot be triggered.", color = 1, support = true, - requireSkillTypes = { 36, }, - addSkillTypes = { 42, }, - excludeSkillTypes = { 37, 41, 30, 44, 61, }, + requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, }, + excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["cast_on_damage_taken_damage_+%_final"] = { @@ -543,9 +545,9 @@ skills["SupportChanceToBleed"] = { baseEffectiveness = 0.27500000596046, incrementalEffectiveness = 0.028500000014901, support = true, - requireSkillTypes = { 1, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, - excludeSkillTypes = { 9, }, + excludeSkillTypes = { SkillType.Minion, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_chance_to_bleed_bleeding_damage_+%_final"] = { @@ -612,7 +614,7 @@ skills["SupportColdToFire"] = { description = "Supports any skill that hits enemies.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -675,7 +677,7 @@ skills["SupportMeleeDamageOnFullLife"] = { description = "Supports attack skills, providing a bonus to all damage dealt by those skills while your life is full.", color = 1, support = true, - requireSkillTypes = { 1, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -741,7 +743,7 @@ skills["SupportWeaponElementalDamage"] = { description = "Supports attack skills.", color = 1, support = true, - requireSkillTypes = { 1, 56, }, + requireSkillTypes = { SkillType.Attack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -844,7 +846,7 @@ skills["EnduranceChargeOnMeleeStun"] = { description = "Supports melee attack skills.", color = 1, support = true, - requireSkillTypes = { 24, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -912,7 +914,7 @@ skills["SupportFirePenetration"] = { description = "Supports any skill that hits enemies, making those hits penetrate enemy fire resistance.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -973,9 +975,9 @@ skills["SupportFortify"] = { description = "Supports melee attack skills that are not triggered.", color = 1, support = true, - requireSkillTypes = { 24, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { 47, }, + excludeSkillTypes = { SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { }, @@ -1036,9 +1038,9 @@ skills["SupportGenerosity"] = { description = "Supports aura skills that affect you and allies, increasing the aura's effect on allies, but preventing it from affecting you at all. Cannot support curse auras, or other auras that only affect enemies. Cannot support skills used by totems.", color = 1, support = true, - requireSkillTypes = { 44, }, + requireSkillTypes = { SkillType.Aura, }, addSkillTypes = { }, - excludeSkillTypes = { 30, 32, 64, }, + excludeSkillTypes = { SkillType.Totem, SkillType.Curse, SkillType.AuraDebuff, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["aura_cannot_affect_self"] = { @@ -1103,7 +1105,7 @@ skills["SupportIncreasedDuration"] = { description = "Supports any skill with a duration.", color = 1, support = true, - requireSkillTypes = { 12, 55, }, + requireSkillTypes = { SkillType.Duration, SkillType.Type55, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1164,7 +1166,7 @@ skills["SupportIronGrip"] = { description = "Supports attack skills that fire projectiles, making the increase to physical melee damage from strength also increase their physical projectile damage.", color = 1, support = true, - requireSkillTypes = { 48, 56, }, + requireSkillTypes = { SkillType.ProjectileAttack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1226,7 +1228,7 @@ skills["SupportIronWill"] = { description = "Supports spell skills, making the increase to physical melee damage from strength also increase their spell damage.", color = 1, support = true, - requireSkillTypes = { 10, 52, 59, 66, }, + requireSkillTypes = { SkillType.Hit, SkillType.Type59, SkillType.Type66, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1288,7 +1290,7 @@ skills["SupportItemQuantity"] = { description = "Supports any skill that can kill enemies.", color = 1, support = true, - requireSkillTypes = { 10, 1, 40, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, SkillType.DamageOverTime, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1349,7 +1351,7 @@ skills["SupportKnockback"] = { description = "Supports any skill that hits enemies.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1411,7 +1413,7 @@ skills["SupportReducedDuration"] = { description = "Supports any skill that has a duration.", color = 1, support = true, - requireSkillTypes = { 12, 55, }, + requireSkillTypes = { SkillType.Duration, SkillType.Type55, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1481,7 +1483,7 @@ skills["SupportLifeGainOnHit"] = { description = "Supports attack skills.", color = 1, support = true, - requireSkillTypes = { 1, 56, }, + requireSkillTypes = { SkillType.Attack, SkillType.Type56, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1542,7 +1544,7 @@ skills["SupportLifeLeech"] = { description = "Supports any skill that hits enemies, causing those hits to leech life based on damage dealt.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1603,7 +1605,7 @@ skills["SupportMaim"] = { description = "Supports attack skills.", color = 1, support = true, - requireSkillTypes = { 1, }, + requireSkillTypes = { SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1674,7 +1676,7 @@ skills["SupportMeleePhysicalDamage"] = { description = "Supports melee attack skills.", color = 1, support = true, - requireSkillTypes = { 24, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1744,8 +1746,8 @@ skills["SupportMeleeSplash"] = { description = "Supports single-target melee attack skills, causing their melee strike to deal splash damage around the target.", color = 1, support = true, - requireSkillTypes = { 25, }, - addSkillTypes = { 11, }, + requireSkillTypes = { SkillType.MeleeSingleTarget, }, + addSkillTypes = { SkillType.Area, }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", baseMods = { @@ -1808,9 +1810,9 @@ skills["SupportMultistrike"] = { description = "Supports melee attack skills, making them repeat twice when used, targeting a random enemy each time. Cannot support Vaal skills, totem skills, channelling skills, or triggered skills.", color = 1, support = true, - requireSkillTypes = { 28, }, + requireSkillTypes = { SkillType.AttackCanRepeat, }, addSkillTypes = { }, - excludeSkillTypes = { 43, }, + excludeSkillTypes = { SkillType.Vaal, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_multiple_attack_damage_+%_final"] = { @@ -1879,7 +1881,7 @@ skills["SupportMultiTotem"] = { description = "Supports skills which summon totems.", color = 1, support = true, - requireSkillTypes = { 30, }, + requireSkillTypes = { SkillType.Totem, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", @@ -1947,9 +1949,9 @@ skills["SupportRangedAttackTotem"] = { description = "Supports any bow or wand attack skill. Instead of using that skill, you will summon a totem that uses the skill for you.", color = 1, support = true, - requireSkillTypes = { 22, }, - addSkillTypes = { 17, 19, 30, }, - excludeSkillTypes = { }, + requireSkillTypes = { SkillType.Attack, SkillType.SkillCanTotem, SkillType.AND, }, + addSkillTypes = { SkillType.SkillCanTrap, SkillType.SkillCanMine, SkillType.Totem, }, + excludeSkillTypes = { SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", addFlags = { totem = true, @@ -2087,9 +2089,9 @@ skills["SupportRuthless"] = { description = "Supports melee attack skills. Every third time you use a supported attack, that use of the skill will be more powerful. Cannot support channelling skills.", color = 1, support = true, - requireSkillTypes = { 24, }, + requireSkillTypes = { SkillType.Melee, }, addSkillTypes = { }, - excludeSkillTypes = { 58, 65, }, + excludeSkillTypes = { SkillType.Channelled, SkillType.Type65, }, statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_ruthless_big_hit_stun_base_duration_override_ms"] = { @@ -2163,9 +2165,9 @@ skills["SupportSpellTotem"] = { description = "Supports spell skills that are not triggered. Instead of casting that spell, you will summon a totem that casts the spell for you.", color = 1, support = true, - requireSkillTypes = { 18, }, - addSkillTypes = { 17, 19, 30, }, - excludeSkillTypes = { 61, }, + requireSkillTypes = { SkillType.Spell, SkillType.SkillCanTotem, SkillType.AND, }, + addSkillTypes = { SkillType.SkillCanTrap, SkillType.SkillCanMine, SkillType.Totem, }, + excludeSkillTypes = { SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", addFlags = { totem = true, @@ -2241,7 +2243,7 @@ skills["SupportStun"] = { description = "Supports any skill that hits enemies, making it easier to stun enemies with those skills.", color = 1, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, statDescriptionScope = "gem_stat_descriptions", diff --git a/Data/Global.lua b/Data/Global.lua index 95c51d356..7cff35c98 100644 --- a/Data/Global.lua +++ b/Data/Global.lua @@ -128,11 +128,11 @@ SkillType = { ManaCostReserved = 15, -- The skill's mana cost is a reservation ManaCostPercent = 16, -- The skill's mana cost is a percentage SkillCanTrap = 17, -- Skill can be turned into a trap - SpellCanTotem = 18, -- Spell can be turned into a totem + SkillCanTotem = 18, -- Skill can be turned into a totem SkillCanMine = 19, -- Skill can be turned into a mine CauseElementalStatus = 20, -- Causes elemental status effects, but doesn't hit (used on Herald of Ash to allow Elemental Proliferation to apply) CreateMinion = 21, -- Creates or summons minions - AttackCanTotem = 22, -- Attack can be turned into a totem + Removed22 = 22, -- Now removed, was AttackCanTotem Chaining = 23, Melee = 24, MeleeSingleTarget = 25, @@ -146,31 +146,31 @@ SkillType = { FireSkill = 33, ColdSkill = 34, LightningSkill = 35, - TriggerableSpell = 36, + Triggerable = 36, Trap = 37, MovementSkill = 38, Removed39 = 39, -- Now removed, was Cast DamageOverTime = 40, Mine = 41, - TriggeredSpell = 42, + Triggered = 42, Vaal = 43, Aura = 44, - LightningSpell = 45, -- Used for Mjolner + Removed45 = 45, -- Now removed, was LightningSpell Type46 = 46, -- Doesn't appear to be used at all - TriggeredAttack = 47, + Removed47 = 47, -- Now removed, was TriggeredAttack ProjectileAttack = 48, - MinionSpell = 49, -- Used for Null's Inclination + Removed49 = 49, -- Now removed, was MinionSpell ChaosSkill = 50, Type51 = 51, -- Not used by any skill - Type52 = 52, -- Allows Contagion, Blight and Scorching Ray to be supported by Iron Will + Removed52 = 52, Type53 = 53, -- Allows Burning Arrow and Vigilant Strike to be supported by Inc AoE and Conc Effect Type54 = 54, -- Not used by any skill Type55 = 55, -- Allows Burning Arrow to be supported by Inc/Less Duration and Rapid Decay Type56 = 56, -- Not used by any skill - Type57 = 57, -- Appears to be the same as 47 + Removed57 = 57, Channelled = 58, Type59 = 59, -- Allows Contagion, Blight and Scorching Ray to be supported by Controlled Destruction - ColdSpell = 60, -- Used for Cospri's Malice + Removed60 = 60, -- Now removed, was ColdSpell TriggeredGrantedSkill = 61, -- Skill granted by item that is automatically triggered, prevents trigger gems and trap/mine/totem from applying Golem = 62, Herald = 63, diff --git a/Export/Classes/DatFile.lua b/Export/Classes/DatFile.lua index 58d82fc23..1d7f21ac5 100644 --- a/Export/Classes/DatFile.lua +++ b/Export/Classes/DatFile.lua @@ -79,26 +79,27 @@ local DatFileClass = newClass("DatFile", function(self, name, raw) end self.spec = main.datSpecs[self.name] - self.rows = { } self.cols = { } self.colMap = { } self.indexes = { } + local colMeta = { __index = function(t, key) + local colIndex = self.colMap[key] + if not colIndex then + error("Unknown key "..key.." for "..self.name..".dat") + end + t[key] = self:ReadCell(t._rowIndex, colIndex) + return rawget(t, key) + end } self.rowCache = setmetatable({ }, { __index = function(t, rowIndex) if rowIndex < 1 or rowIndex > self.rowCount then return end - t[rowIndex] = setmetatable({ }, { __index = function(t, key) - local colIndex = self.colMap[key] - if not colIndex then - error("Unknown key "..key.." for "..self.name..".dat") - end - t[key] = self:ReadCell(rowIndex, colIndex) - return rawget(t, key) - end }) + t[rowIndex] = setmetatable({ _rowIndex = rowIndex }, colMeta) return t[rowIndex] end }) + self.rows = { } self.rowCount = bytesToUInt(self.raw) self.dataOffset = self.raw:find("\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB", 5, true) or (#self.raw + 1) self.rowSize = (self.dataOffset - 5) / self.rowCount @@ -114,8 +115,8 @@ end) function DatFileClass:OnSpecChanged() wipeTable(self.cols) wipeTable(self.colMap) - wipeTable(self.rowCache) wipeTable(self.indexes) + wipeTable(self.rowCache) local offset = 0 for i, specCol in ipairs(self.spec) do local dataType = dataTypes[specCol.type] diff --git a/Export/DatView.sln b/Export/DatView.sln index 82a20b46e..70e880529 100644 --- a/Export/DatView.sln +++ b/Export/DatView.sln @@ -5,18 +5,18 @@ VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{87760D8B-5D2D-4C32-8625-49292C0A2A02}" ProjectSection(SolutionItems) = preProject - Common.lua = Common.lua Launch.lua = Launch.lua Main.lua = Main.lua EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Classes", "Classes", "{A517B8FF-61D0-4FD5-9037-1437259A0166}" ProjectSection(SolutionItems) = preProject - DatFile.lua = DatFile.lua - DatListControl.lua = DatListControl.lua - GGPKFile.lua = GGPKFile.lua - RowListControl.lua = RowListControl.lua - SpecColListControl.lua = SpecColListControl.lua + Classes\DatFile.lua = Classes\DatFile.lua + Classes\DatListControl.lua = Classes\DatListControl.lua + Classes\GGPKFile.lua = Classes\GGPKFile.lua + Classes\RowListControl.lua = Classes\RowListControl.lua + Classes\ScriptListControl.lua = Classes\ScriptListControl.lua + Classes\SpecColListControl.lua = Classes\SpecColListControl.lua EndProjectSection EndProject Global diff --git a/Export/Export.sln b/Export/Export.sln index 7056c3bcb..db6cfa235 100644 --- a/Export/Export.sln +++ b/Export/Export.sln @@ -4,43 +4,28 @@ Microsoft Visual Studio Solution File, Format Version 12.00 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{ECF13334-6BFE-4F72-A68F-DF00F5C86DE7}" - ProjectSection(SolutionItems) = preProject - _common.lua = _common.lua - _statdesc.lua = _statdesc.lua - bases.lua = bases.lua - browse.lua = browse.lua - enchant.lua = enchant.lua - essence.lua = essence.lua - export.lua = export.lua - gemList.lua = gemList.lua - masters.lua = masters.lua - minions.lua = minions.lua - miscdata.lua = miscdata.lua - mods.lua = mods.lua - skills.lua = skills.lua - EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Skills", "Skills", "{740FE360-DB7C-403B-A6BD-61EDFAB1B54D}" ProjectSection(SolutionItems) = preProject - Skills\act_dex.lua = Skills\act_dex.lua + ..\Data\3_0\Skills\act_dex.lua = ..\Data\3_0\Skills\act_dex.lua Skills\act_dex.txt = Skills\act_dex.txt - Skills\act_int.lua = Skills\act_int.lua + ..\Data\3_0\Skills\act_int.lua = ..\Data\3_0\Skills\act_int.lua Skills\act_int.txt = Skills\act_int.txt - Skills\act_str.lua = Skills\act_str.lua + ..\Data\3_0\Skills\act_str.lua = ..\Data\3_0\Skills\act_str.lua Skills\act_str.txt = Skills\act_str.txt - Skills\glove.lua = Skills\glove.lua + ..\Data\3_0\Skills\glove.lua = ..\Data\3_0\Skills\glove.lua Skills\glove.txt = Skills\glove.txt - Skills\minion.lua = Skills\minion.lua + ..\Data\3_0\Skills\minion.lua = ..\Data\3_0\Skills\minion.lua Skills\minion.txt = Skills\minion.txt - Skills\other.lua = Skills\other.lua + ..\Data\3_0\Skills\other.lua = ..\Data\3_0\Skills\other.lua Skills\other.txt = Skills\other.txt - Skills\spectre.lua = Skills\spectre.lua + ..\Data\3_0\Skills\spectre.lua = ..\Data\3_0\Skills\spectre.lua Skills\spectre.txt = Skills\spectre.txt - Skills\sup_dex.lua = Skills\sup_dex.lua + ..\Data\3_0\Skills\sup_dex.lua = ..\Data\3_0\Skills\sup_dex.lua Skills\sup_dex.txt = Skills\sup_dex.txt - Skills\sup_int.lua = Skills\sup_int.lua + ..\Data\3_0\Skills\sup_int.lua = ..\Data\3_0\Skills\sup_int.lua Skills\sup_int.txt = Skills\sup_int.txt - Skills\sup_str.lua = Skills\sup_str.lua + ..\Data\3_0\Skills\sup_str.lua = ..\Data\3_0\Skills\sup_str.lua Skills\sup_str.txt = Skills\sup_str.txt EndProjectSection EndProject diff --git a/Export/Scripts/skills.lua b/Export/Scripts/skills.lua index e1b9a1196..698be52d4 100644 --- a/Export/Scripts/skills.lua +++ b/Export/Scripts/skills.lua @@ -1,12 +1,82 @@ +local skillTypes = { "Attack", + "Spell", + "Projectile", + "DualWield", + "Buff", + "Minion", + "Hit", + "Area", + "Duration", + "Shield", + "ProjectileDamage", + "ManaCostReserved", + "ManaCostPercent", + "SkillCanTrap", + "SkillCanTotem", + "SkillCanMine", + "CauseElementalStatus", + "CreateMinion", + "Chaining", + "Melee", + "MeleeSingleTarget", + "SpellCanRepeat", + "Type27", + "AttackCanRepeat", + "CausesBurning", + "Totem", + "Type31", + "Curse", + "FireSkill", + "ColdSkill", + "LightningSkill", + "Triggerable", + "Trap", + "MovementSkill", + "DamageOverTime", + "Mine", + "Triggered", + "Vaal", + "Aura", + "Type46", + "ProjectileAttack", + "ChaosSkill", + "Type51", + "Type53", + "Type54", + "Type55", + "Type56", + "Channelled", + "Type59", + "TriggeredGrantedSkill", + "Golem", + "Herald", + "AuraDebuff", + "Type65", + "Type66", + "SpellCanCascade", + "SkillCanVolley", + "SkillCanMirageArcher", + "Type70", + "Type71", + "Type72", + "Type73", + "Warcry", + "Instant", + "Brand", + "DestroysCorpse", + "NonHitChill", + "ChillingArea", + "AppliesCurse", + "CanRapidFire", + "AuraDuration", + "AreaSpell", + "OR", + "AND", + "NOT", +} local function mapAST(ast) - if ast >= 36 then - return ast + 4 - elseif ast >= 6 then - return ast + 3 - else - return ast - end + return "SkillType."..skillTypes[ast] end local weaponClassMap = { @@ -111,6 +181,9 @@ directiveTable.skill = function(state, args, out) if granted.SupportGemsOnly then out:write('\tsupportGemsOnly = true,\n') end + if granted.IgnoreMinionTypes then + out:write('\tignoreMinionTypes = true,\n') + end out:write('\tstatDescriptionScope = "gem_stat_descriptions",\n') else if #granted.ActiveSkill.Description > 0 then @@ -146,6 +219,9 @@ directiveTable.skill = function(state, args, out) out:write('\tskillTotemId = ', granted.ActiveSkill.SkillTotem, ',\n') end out:write('\tcastTime = ', granted.CastTime / 1000, ',\n') + if granted.CannotBeSupported then + out:write('\tcannotBeSupported = true,\n') + end end for _, levelRow in ipairs(dat"GrantedEffectsPerLevel":GetRowList("GrantedEffect", granted)) do local level = { extra = { } } diff --git a/Export/spec.lua b/Export/spec.lua index 9d3c0ea10..17d032c43 100644 --- a/Export/spec.lua +++ b/Export/spec.lua @@ -1,3928 +1,3977 @@ return { - LevelRelativePlayerScaling={ + AbyssObjects={ }, - BetrayalChoices={ + AbyssRegions={ }, - GemTags={ - [2]={ - width=150, - list=false, - type="String", - name="Name", - refTo="" - }, + AbyssTheme={ + }, + AccountQuestFlags={ + }, + AchievementItems={ [1]={ - width=150, list=false, - type="String", name="Id", - refTo="" + refTo="", + type="String", + width=150 } }, - PassiveSkillStatCategories={ - }, - Ascendancy={ - }, - WeaponClasses={ - }, - MonsterSkillsOrientation={ - }, - Talismans={ + AchievementSetRewards={ }, - AtlasNode={ + AchievementSets={ }, - SessionQuestFlags={ + AchievementSetsDisplay={ }, Achievements={ }, - LabyrinthRewards={ - }, - DelveLevelScaling={ - }, - QuestStates={ - }, - DelveResourcePerLevel={ + ActiveSkillTargetTypes={ }, - BetrayalRanks={ + ActiveSkillType={ }, - GrantedEffectsPerLevel={ + ActiveSkills={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=190 + }, [2]={ - type="Int", - width=40, - name="Level", - list=false + list=false, + name="DisplayName", + refTo="", + type="String", + width=150 }, - [31]={ - width=60, + [3]={ list=false, - type="Int", - name="Cooldown", - refTo="" + name="Description", + refTo="", + type="String", + width=500 }, - [11]={ - width=60, + [4]={ list=false, - type="Float", - name="StatEff8", - refTo="" + name="ActionName", + refTo="", + type="String", + width=170 }, - [27]={ - width=90, + [5]={ list=false, - type="Int", - name="SpellCritChance", - refTo="" + name="Icon", + refTo="", + type="String", + width=100 + }, + [6]={ + list=true, + name="TargetTypes", + refTo="ActiveSkillTargetTypes", + type="Enum", + width=100 + }, + [7]={ + list=true, + name="SkillTypes", + refTo="ActiveSkillType", + type="Enum", + width=330 + }, + [8]={ + list=true, + name="WeaponRestrictions", + refTo="ItemClasses", + type="Key", + width=240 }, [9]={ - width=60, list=false, - type="Float", - name="StatEff6", - refTo="" + name="", + refTo="", + type="String", + width=150 }, - [23]={ - width=40, + [10]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="String", + width=150 }, - [19]={ - width=60, + [11]={ list=false, - type="Int", - name="Stat7", - refTo="" + name="HideOnWebsite", + refTo="", + type="Bool", + width=80 }, - [1]={ - width=210, + [12]={ list=false, - type="Key", name="GrantedEffect", - refTo="GrantedEffects" - }, - [40]={ - width=90, - list=false, - type="Int", - name="DamageMultiplier", - refTo="" + refTo="", + type="String", + width=150 }, - [32]={ - width=40, + [13]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Bool", + width=40 }, - [28]={ - width=60, + [14]={ list=false, - type="Int", - name="ManaCost", - refTo="" + name="SkillTotem", + refTo="SkillTotemVariations", + type="Enum", + width=80 }, - [24]={ - width=40, + [15]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Bool", + width=40 }, - [33]={ - width=150, + [16]={ list=true, + name="SkillSpecificStat", + refTo="Stats", type="Key", - name="BooleanStats", - refTo="Stats" + width=1800 + }, + [17]={ + list=true, + name="GenericStat", + refTo="Stats", + type="Key", + width=1420 + }, + [18]={ + list=true, + name="MinionSkillTypes", + refTo="ActiveSkillType", + type="Enum", + width=150 + }, + [19]={ + list=false, + name="", + refTo="", + type="Bool", + width=70 }, [20]={ - width=60, list=false, - type="Int", - name="Stat8", - refTo="" + name="", + refTo="", + type="Bool", + width=70 + } + }, + AdditionalLifeScaling={ + }, + AdditionalLifeScalingPerLevel={ + }, + AdvancedSkillsTutorial={ + }, + Animation={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=150 + } + }, + ApplyDamageFunctions={ + }, + ArchetypeRewards={ + }, + Archetypes={ + }, + ArchitectLifeScalingPerLevel={ + }, + AreaTransitionAnimationTypes={ + }, + AreaTransitionAnimations={ + }, + AreaTransitionInfo={ + }, + AreaType={ + }, + ArmourClasses={ + }, + ArmourSurfaceTypes={ + }, + ArmourTypes={ + [1]={ + list=false, + name="", + refTo="BaseItemTypes", + type="Key", + width=330 + } + }, + Ascendancy={ + }, + AtlasFog={ + }, + AtlasInfluenceOutcomes={ + }, + AtlasNode={ + }, + AtlasNodeDefinition={ + }, + AtlasPositions={ + }, + AtlasQuadrant={ + }, + AtlasSector={ + }, + Attributes={ + }, + BackendErrors={ + }, + BaseItemTypes={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=370 }, - [46]={ - width=80, + [2]={ list=false, + name="ItemClass", + refTo="ItemClasses", type="Key", - name="", - refTo="" + width=130 }, - [16]={ - width=60, + [3]={ list=false, + name="Width", + refTo="", type="Int", - name="Stat4", - refTo="" + width=40 }, - [38]={ - width=110, + [4]={ list=false, + name="Height", + refTo="", type="Int", - name="ManaCostOverride", - refTo="" + width=40 }, - [14]={ - width=60, + [5]={ list=false, - type="Int", - name="Stat2", - refTo="" + name="Name", + refTo="", + type="String", + width=160 }, - [47]={ - width=80, + [6]={ list=false, - type="Int", - name="Duration", - refTo="" + name="BaseType", + refTo="", + type="String", + width=290 }, - [48]={ - width=150, + [7]={ list=false, - type="Float", - name="StatEff9", - refTo="" + name="DropLevel", + refTo="", + type="UInt", + width=60 }, - [12]={ - width=250, + [8]={ + list=false, + name="", + refTo="", + type="Key", + width=60 + }, + [9]={ list=true, + name="ImplicitMods", + refTo="Mods", type="Key", - name="EffectivenessCost", - refTo="EffectivenessCostConstants" + width=470 }, - [45]={ - width=150, + [10]={ list=false, + name="", + refTo="", type="Int", - name="SoulGainPreventionDuration", - refTo="" + width=30 }, - [13]={ - width=60, - list=false, - type="Int", - name="Stat1", - refTo="" - }, - [10]={ - width=60, - list=false, - type="Float", - name="StatEff7", - refTo="" - }, - [37]={ - width=50, - list=false, - type="Int", - name="", - refTo="" - }, - [35]={ - width=50, - list=false, - type="Int", - name="", - refTo="" - }, - [8]={ - width=60, - list=false, - type="Float", - name="StatEff5", - refTo="" - }, - [41]={ - width=50, + [11]={ list=false, - type="Int", name="", - refTo="" - }, - [3]={ - width=520, - list=true, + refTo="", type="Key", - name="Stats", - refTo="Stats" + width=50 }, - [17]={ - width=60, - list=false, - type="Int", - name="Stat5", - refTo="" - }, - [34]={ - width=40, - list=false, - type="Bool", + [12]={ + list=true, name="", - refTo="" - }, - [6]={ - width=60, - list=false, - type="Float", - name="StatEff3", - refTo="" + refTo="BaseItemTypes", + type="Key", + width=150 }, - [36]={ - width=50, - list=false, - type="Int", + [13]={ + list=true, name="", - refTo="" - }, - [21]={ - width=70, - list=false, + refTo="", type="Int", - name="PlayerLevel", - refTo="" - }, - [29]={ - width=120, - list=false, - type="Int", - name="DamageEffectiveness", - refTo="" - }, - [5]={ - width=60, - list=false, - type="Float", - name="StatEff2", - refTo="" + width=50 }, - [43]={ - width=130, + [14]={ list=true, - type="Enum", - name="InterpolationTypes", - refTo="StatInterpolationTypes" - }, - [4]={ - width=60, - list=false, - type="Float", - name="StatEff1", - refTo="" + name="", + refTo="BaseItemTypes", + type="Key", + width=150 }, - [26]={ - width=100, + [15]={ list=true, + name="", + refTo="", type="Int", - name="QualityStatValues", - refTo="" - }, - [30]={ - width=90, - list=false, - type="Int", - name="CooldownCount", - refTo="" + width=50 }, - [25]={ - width=150, + [16]={ list=true, + name="Tags", + refTo="Tags", type="Key", - name="QualityStats", - refTo="Stats" - }, - [22]={ - width=80, - list=false, - type="Int", - name="ManaMultiplier", - refTo="" + width=150 }, - [44]={ - width=50, - list=false, - type="Int", - name="", - refTo="" - }, - [39]={ - width=50, + [17]={ list=false, - type="Int", - name="", - refTo="" + name="ModDomain", + refTo="ModDomains", + type="Enum", + width=80 }, [18]={ - width=60, - list=false, - type="Int", - name="Stat6", - refTo="" - }, - [7]={ - width=60, list=false, - type="Float", - name="StatEff4", - refTo="" - }, - [42]={ - width=70, - list=false, - type="Int", - name="ArtVariation", - refTo="" - }, - [15]={ - width=60, - list=false, - type="Int", - name="Stat3", - refTo="" - }, - [49]={ - width=150, - list=false, - type="Int", - name="Stat9", - refTo="" + name="Hidden", + refTo="", + type="Bool", + width=50 } }, - RandomUniqueMonsters={ + BestiaryCapturableMonsters={ }, - ShopCategory={ + BestiaryEncounters={ }, - SkillTotemVariations={ - [1]={ - width=60, - list=false, - type="Enum", - name="SkillTotem", - refTo="SkillTotems" - }, - [2]={ - width=60, - list=false, - type="Int", - name="Variation", - refTo="" - }, - [3]={ - width=390, - list=false, - type="Key", - name="MonsterVariety", - refTo="MonsterVarieties" - } + BestiaryFamilies={ }, - MapSeries={ + BestiaryGenus={ }, - NPCAdditionalVendorItems={ + BestiaryGroups={ }, - MonsterSkillsTargets={ + BestiaryNets={ }, - Races={ + BestiaryRecipeComponent={ }, - DelveCatchupDepths={ + BestiaryRecipeItemCreation={ }, - IncursionRooms={ + BestiaryRecipes={ }, - MicrotransactionRarityDisplay={ + BetrayalChoiceActions={ }, - ItemSynthesisMods={ + BetrayalChoices={ }, - MysteryBoxes={ + BetrayalDialogue={ }, - ModFamily={ + BetrayalDialogueCue={ }, - CloneShot={ + BetrayalFlags={ }, - VoteType={ + BetrayalForts={ }, - BindableVirtualKeys={ + BetrayalJobs={ }, - BuffStackUIModes={ + BetrayalRanks={ }, - NPCTalk={ + BetrayalRelationshipState={ }, - Archetypes={ + BetrayalTargetFlags={ }, - MicrotransactionSlotId={ + BetrayalTargetJobAchievements={ }, - MasterHideoutLevels={ + BetrayalTargetLifeScalingPerLevel={ }, - EvergreenAchievementTypes={ + BetrayalTargets={ }, BetrayalTraitorRewards={ }, - SummonedSpecificMonsters={ + BetrayalUpgradeSlots={ }, - WeaponDamageScaling={ + BetrayalUpgrades={ }, - RelativeImportanceConstants={ + BetrayalWallLifeScalingPerLevel={ }, - HideoutNPCs={ - [1]={ - width=370, - list=false, - type="Key", - name="NPC", - refTo="NPCs" - } + BeyondDemons={ }, - GeometryTrigger={ + BindableVirtualKeys={ }, - UniqueStashTypes={ + BloodTypes={ }, - LabyrinthSectionLayout={ + Bloodlines={ }, - WarbandsMapGraph={ + BreachstoneUpgrades={ }, - MonsterSkillsPlacement={ + BuffCategories={ }, - SkillGems={ - [2]={ - width=210, + BuffDefinitions={ + [1]={ list=false, - type="Key", - name="GrantedEffect", - refTo="GrantedEffects" + name="Id", + refTo="", + type="String", + width=200 }, - [5]={ - width=40, + [2]={ list=false, - type="Int", - name="Int", - refTo="" + name="Description", + refTo="", + type="String", + width=150 }, - [11]={ - width=150, + [3]={ list=false, - type="Key", - name="SecondaryGrantedEffect", - refTo="GrantedEffects" + name="Invisible", + refTo="", + type="Bool", + width=50 }, [4]={ - width=40, list=false, - type="Int", - name="Dex", - refTo="" + name="Removable", + refTo="", + type="Bool", + width=60 }, - [10]={ - width=250, + [5]={ list=false, + name="Name", + refTo="", + type="String", + width=170 + }, + [6]={ + list=true, + name="Stats", + refTo="Stats", type="Key", - name="HungryLoopMod", - refTo="Mods" + width=610 }, - [9]={ - width=150, + [7]={ list=false, - type="String", - name="Description", - refTo="" + name="CancelOnDeath", + refTo="", + type="Bool", + width=90 }, [8]={ - width=70, list=false, - type="Bool", - name="IsVaalGem", - refTo="" + name="MergeMode", + refTo="", + type="Enum", + width=70 }, - [3]={ - width=40, + [9]={ list=false, - type="Int", - name="Str", - refTo="" + name="ShowCount", + refTo="", + type="Bool", + width=70 }, - [7]={ - width=290, + [10]={ list=false, + name="MaxStat", + refTo="Stats", type="Key", - name="VaalGem", - refTo="BaseItemTypes" + width=250 }, - [1]={ - width=360, + [11]={ list=false, + name="CurrentStat", + refTo="Stats", type="Key", - name="BaseItemType", - refTo="BaseItemTypes" + width=170 }, - [6]={ - width=500, - list=true, - type="Key", - name="Tags", - refTo="GemTags" - } - }, - EffectDrivenSkill={ - }, - CharacterPanelDescriptionModes={ - }, - ChestEffects={ - }, - CharacterPanelTabs={ - }, - MiscAnimated={ - }, - AchievementItems={ - [1]={ - width=150, - list=false, - type="String", - name="Id", - refTo="" - } - }, - ShrineBuffs={ - }, - MapCreationInformation={ - }, - FixedHideoutDoodads={ - }, - MicrotransactionSocialFrameVariations={ - }, - ProphecyChain={ - }, - MonsterSkillsHull={ - }, - ArmourTypes={ - [1]={ - width=330, + [12]={ list=false, - type="Key", name="", - refTo="BaseItemTypes" - } - }, - ApplyDamageFunctions={ - }, - ComponentAttributeRequirements={ - [1]={ - width=310, + refTo="", + type="Bool", + width=60 + }, + [13]={ list=false, - type="String", - name="BaseItemType", - refTo="" + name="Catagory", + refTo="BuffCatagory", + type="Enum", + width=60 }, - [4]={ - width=40, + [14]={ list=false, - type="Int", - name="Int", - refTo="" + name="Visual", + refTo="BuffVisuals", + type="Key", + width=180 }, - [2]={ - width=40, + [15]={ list=false, - type="Int", - name="Str", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [3]={ - width=40, + [16]={ list=false, - type="Int", - name="Dex", - refTo="" - } - }, - GroundEffectTypes={ - }, - QuestStateCalcuation={ - }, - MicrotransactionCharacterPortraitVariations={ - }, - ModAuraFlags={ - }, - AreaTransitionAnimations={ - }, - GameConstants={ - [1]={ - width=250, + name="", + refTo="", + type="Bool", + width=40 + }, + [17]={ list=false, - type="String", - name="Id", - refTo="" + name="", + refTo="", + type="Enum", + width=50 }, - [2]={ - width=150, + [18]={ list=false, - type="Int", - name="Value", - refTo="" - } - }, - RogueExiles={ - }, - MonsterAdditionalMonsterDrops={ - }, - MonsterResistances={ - [2]={ - width=80, + name="", + refTo="", + type="Bool", + width=40 + }, + [19]={ list=false, - type="Int", - name="FireNormal", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [5]={ - width=80, + [20]={ list=false, - type="Int", - name="ChaosNormal", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [12]={ - width=80, + [21]={ list=false, - type="Int", - name="LightningMerciless", - refTo="" + name="", + refTo="", + type="Bool", + width=50 }, - [11]={ - width=80, + [22]={ list=false, + name="Limit", + refTo="", type="Int", - name="ColdMerciless", - refTo="" + width=40 }, - [4]={ - width=80, + [23]={ list=false, - type="Int", - name="LightningNormal", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [10]={ - width=80, + [24]={ list=false, - type="Int", - name="FireMerciless", - refTo="" + name="Implementation", + refTo="", + type="String", + width=180 }, - [9]={ - width=80, + [25]={ list=false, - type="Int", - name="ChaosCruel", - refTo="" + name="isRecovery", + refTo="", + type="Bool", + width=60 }, - [8]={ - width=80, + [26]={ list=false, - type="Int", - name="LightningCruel", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [3]={ - width=80, + [27]={ list=false, - type="Int", - name="ColdNormal", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [7]={ - width=80, + [28]={ list=false, - type="Int", - name="ColdCruel", - refTo="" + name="MinStat", + refTo="Stats", + type="Key", + width=180 }, - [1]={ - width=150, + [29]={ list=false, - type="String", - name="Id", - refTo="" + name="", + refTo="", + type="Bool", + width=40 }, - [13]={ - width=80, + [30]={ list=false, + name="UIStackMode", + refTo="", type="Int", - name="ChaosMerciless", - refTo="" + width=80 }, - [6]={ - width=80, + [31]={ list=false, - type="Int", - name="FireCruel", - refTo="" + name="", + refTo="", + type="Bool", + width=50 + }, + [32]={ + list=false, + name="IsSkillBuff", + refTo="", + type="Bool", + width=70 } }, - QuestRewards={ - }, - BloodTypes={ - }, - LeagueQuestFlags={ - }, - SynthesisAreaSize={ - }, - ProjectileVariations={ - }, - WarbandsPackMonsters={ + BuffGroups={ }, - MonsterPacks={ + BuffMergeModes={ }, - EssenceType={ + BuffStackUIModes={ }, - ShopPaymentPackageItems={ + BuffVisualOrbTypes={ }, - MultiPartAchievements={ + BuffVisuals={ [1]={ - width=350, list=false, - type="String", name="Id", - refTo="" - } - }, - PassiveSkillBuffs={ - }, - DelveBiomes={ - }, - ModType={ - [1]={ - width=400, - list=false, + refTo="", type="String", - name="Id", - refTo="" + width=150 }, [2]={ - width=90, + list=false, + name="Icon", + refTo="", + type="String", + width=150 + }, + [3]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [4]={ + list=true, + name="", + refTo="", + type="String", + width=150 + }, + [5]={ + list=true, + name="", + refTo="", + type="Key", + width=150 + }, + [6]={ list=true, + name="", + refTo="", type="Key", + width=150 + }, + [7]={ + list=false, name="", - refTo="" + refTo="", + type="Int", + width=150 }, - [3]={ - width=130, + [8]={ list=true, + name="", + refTo="", type="Key", - name="Tags", - refTo="Tags" + width=150 } }, - NPCFollowerVariations={ + CharacterAudioEvents={ }, - ChestClusters={ + CharacterPanelDescriptionModes={ }, - BestiaryNets={ + CharacterPanelStatContexts={ }, - ShopCountry={ + CharacterPanelStats={ }, - Projectiles={ + CharacterPanelTabs={ }, - UniqueStashLayout={ + CharacterStartItems={ }, - GroundEffects={ + CharacterStartQuestState={ }, - BuffCategories={ + CharacterStartStateSet={ }, - BetrayalForts={ + CharacterStartStates={ }, - DamageParticleEffectTypes={ + CharacterTextAudio={ }, - MissionTileMap={ + Characters={ }, - BestiaryRecipeItemCreation={ + ChestClusters={ }, - LabyrinthSection={ + ChestEffects={ }, - Languages={ + ChestItemTemplates={ }, - GrantedEffects={ - [14]={ - width=50, + Chests={ + }, + ClientStrings={ + [1]={ list=false, - type="Int", - name="", - refTo="" + name="Id", + refTo="", + type="String", + width=180 }, [2]={ - width=60, list=false, - type="Bool", - name="IsSupport", - refTo="" + name="Text", + refTo="", + type="String", + width=270 }, - [12]={ - width=60, - list=true, - type="Enum", + [3]={ + list=false, name="", - refTo="" + refTo="", + type="String", + width=150 }, - [11]={ - width=100, + [4]={ list=false, - type="UInt", name="Hash", - refTo="" + refTo="", + type="UInt", + width=90 }, - [10]={ - width=100, + [5]={ list=false, - type="Bool", - name="SupportGemsOnly", - refTo="" - }, - [9]={ - width=200, - list=true, - type="Enum", - name="ExcludeTypes", - refTo="ActiveSkillType" + name="", + refTo="", + type="String", + width=150 + } + }, + CloneShot={ + }, + Commands={ + }, + ComponentArmour={ + [1]={ + list=false, + name="BaseItemType", + refTo="", + type="String", + width=320 }, - [8]={ - width=90, - list=true, - type="Enum", - name="AddTypes", - refTo="ActiveSkillType" + [2]={ + list=false, + name="Armour", + refTo="", + type="Int", + width=70 }, - [19]={ - width=150, - list=true, - type="Enum", - name="AddMinionTypes", - refTo="ActiveSkillType" + [3]={ + list=false, + name="Evasion", + refTo="", + type="Int", + width=70 }, - [7]={ - width=60, + [4]={ list=false, + name="EnergyShield", + refTo="", type="Int", - name="Attribute", - refTo="" + width=70 }, + [5]={ + list=false, + name="MovementPenalty", + refTo="", + type="Int", + width=100 + } + }, + ComponentAttributeRequirements={ [1]={ - width=200, list=false, + name="BaseItemType", + refTo="", type="String", - name="Id", - refTo="" + width=310 }, - [6]={ - width=100, + [2]={ list=false, - type="String", - name="SupportGemLetter", - refTo="" + name="Str", + refTo="", + type="Int", + width=40 }, - [5]={ - width=150, + [3]={ list=false, - type="Float", - name="IncrementalEffectiveness", - refTo="" + name="Dex", + refTo="", + type="Int", + width=40 }, [4]={ - width=150, list=false, - type="Float", - name="BaseEffectiveness", - refTo="" + name="Int", + refTo="", + type="Int", + width=40 + } + }, + ComponentCharges={ + [1]={ + list=false, + name="BaseItemType", + refTo="", + type="String", + width=250 }, - [3]={ - width=170, - list=true, - type="Enum", - name="SupportTypes", - refTo="ActiveSkillType" + [2]={ + list=false, + name="Max", + refTo="", + type="Int", + width=50 }, - [20]={ - width=120, + [3]={ + list=false, + name="PerUse", + refTo="", + type="Int", + width=50 + } + }, + CooldownBypassTypes={ + }, + CooldownGroups={ + }, + CraftingBenchCustomActions={ + }, + CraftingBenchOptions={ + [1]={ list=false, + name="HideoutNPC", + refTo="HideoutNPCs", type="Key", - name="Animation", - refTo="Animation" + width=300 }, - [18]={ - width=50, + [2]={ list=false, - type="Bool", - name="", - refTo="" + name="Order", + refTo="", + type="Int", + width=50 }, - [17]={ - width=50, + [3]={ list=false, - type="Bool", - name="", - refTo="" + name="Mod", + refTo="Mods", + type="Key", + width=130 }, - [16]={ - width=110, - list=false, + [4]={ + list=true, + name="", + refTo="BaseItemTypes", type="Key", - name="ActiveSkill", - refTo="ActiveSkills" + width=150 }, - [15]={ - width=70, - list=false, + [5]={ + list=true, + name="", + refTo="", type="Int", - name="CastTime", - refTo="" + width=60 }, - [13]={ - width=50, + [6]={ list=false, - type="Bool", name="", - refTo="" - } - }, - SynthesisBonuses={ - }, - MapFragmentMods={ - }, - NetTiers={ - }, - Flasks={ - [2]={ - width=150, + refTo="", + type="Int", + width=50 + }, + [7]={ list=false, - type="String", name="Name", - refTo="" + refTo="", + type="String", + width=200 }, [8]={ - width=90, + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [9]={ list=true, + name="ItemClasses", + refTo="ItemClasses", + type="Key", + width=130 + }, + [10]={ + list=false, + name="Links", + refTo="", type="Int", - name="BuffMagnitudes", - refTo="" + width=50 }, - [5]={ - width=80, + [11]={ list=false, + name="Colours", + refTo="", + type="String", + width=50 + }, + [12]={ + list=false, + name="Sockets", + refTo="", type="Int", - name="ManaPerUse", - refTo="" + width=50 }, - [3]={ - width=50, + [13]={ list=false, - type="Enum", name="", - refTo="FlaskType" + refTo="", + type="Int", + width=50 }, - [7]={ - width=210, + [14]={ + list=true, + name="", + refTo="", + type="Int", + width=100 + }, + [15]={ list=false, - type="Key", - name="Buff", - refTo="BuffDefinitions" + name="Description", + refTo="", + type="String", + width=150 }, - [1]={ - width=250, + [16]={ list=false, - type="Key", - name="BaseItemType", - refTo="BaseItemTypes" + name="IsDisabled", + refTo="", + type="Bool", + width=70 }, - [4]={ - width=80, + [17]={ list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [18]={ + list=true, + name="", + refTo="", type="Int", - name="LifePerUse", - refTo="" + width=50 }, - [6]={ - width=80, + [19]={ list=false, + name="Tier", + refTo="", type="Int", - name="RecoveryTime", - refTo="" - } - }, - UniqueMapInfo={ - }, - Default={ - }, - MapPurchaseCosts={ - }, - LabyrinthAreas={ - }, - AccountQuestFlags={ - }, - ArmourSurfaceTypes={ - }, - MonsterConditions={ - }, - DelveUpgrades={ - }, - ShopForumBadge={ - }, - MonsterSkillsShape={ - }, - DropPool={ - }, - MonsterGroupNames={ - }, - MonsterSegments={ - }, - AtlasPositions={ - }, - InvasionMonstersPerArea={ - }, - DelveRooms={ - }, - IncursionBrackets={ - }, - SynthesisFragmentDialogue={ - }, - BetrayalUpgrades={ - }, - DelveCraftingModifierDescriptions={ - }, - NPCTalkConsoleQuickActions={ - }, - WeaponImpactSoundData={ - }, - MonsterBehavior={ - }, - WeaponArmourCommon={ - }, - ShopRegion={ - }, - PerandusGuards={ - }, - Strongboxes={ - }, - SynthesisMonsterExperiencePerLevel={ - }, - Grandmasters={ - }, - BuffVisuals={ - [2]={ - width=150, + width=50 + }, + [20]={ list=false, + name="ModFamily", + refTo="", type="String", - name="Icon", - refTo="" + width=150 }, - [8]={ - width=150, + [21]={ list=true, + name="ItemCategories", + refTo="CraftingItemClassCategories", type="Key", + width=750 + }, + [22]={ + list=false, name="", - refTo="" + refTo="", + type="Enum", + width=60 }, - [5]={ - width=150, - list=true, + [23]={ + list=false, + name="UnlockCategories", + refTo="CraftingBenchUnlockCategories", type="Key", - name="", - refTo="" + width=150 }, - [3]={ - width=150, - list=true, - type="String", + [24]={ + list=false, name="", - refTo="" + refTo="", + type="Int", + width=50 }, - [7]={ - width=150, + [25]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Int", + width=50 }, - [1]={ - width=150, + [26]={ list=false, + name="Affix", + refTo="", type="String", - name="Id", - refTo="" + width=100 }, - [4]={ - width=150, + [27]={ list=true, - type="String", name="", - refTo="" + refTo="CraftingItemClassCategories", + type="Key", + width=320 }, - [6]={ - width=150, + [28]={ list=true, - type="Key", name="", - refTo="" + refTo="", + type="Key", + width=100 } }, - MonsterScalingByLevel={ - }, - SkillSurgeEffects={ - }, - MissionTransitionTiles={ - }, - SpecialTiles={ + CraftingBenchUnlockCategories={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=280 + } }, - BaseItemTypes={ - [14]={ - width=150, - list=true, - type="Key", - name="", - refTo="BaseItemTypes" - }, - [2]={ - width=130, + CraftingItemClassCategories={ + [1]={ list=false, - type="Key", - name="ItemClass", - refTo="ItemClasses" + name="Id", + refTo="", + type="String", + width=110 }, - [12]={ - width=150, + [2]={ list=true, + name="ItemClasses", + refTo="ItemClasses", type="Key", - name="", - refTo="BaseItemTypes" + width=610 }, - [11]={ - width=50, + [3]={ list=false, - type="Key", name="", - refTo="" + refTo="", + type="String", + width=100 }, - [10]={ - width=30, + [4]={ list=false, - type="Int", name="", - refTo="" - }, - [9]={ - width=470, - list=true, - type="Key", - name="ImplicitMods", - refTo="Mods" - }, - [8]={ - width=60, + refTo="", + type="String", + width=130 + } + }, + CurrencyItems={ + }, + CurrencyStashTabLayout={ + }, + CurrencyUseTypes={ + }, + CustomLeagueMods={ + }, + DamageParticleEffectTypes={ + }, + DamageParticleEffects={ + }, + Dances={ + }, + DaressoPitFights={ + }, + Default={ + }, + DefaultMonsterStats={ + [1]={ list=false, - type="Key", - name="", - refTo="" + name="Level", + refTo="", + type="String", + width=50 }, - [7]={ - width=60, + [2]={ list=false, - type="UInt", - name="DropLevel", - refTo="" + name="Damage", + refTo="", + type="Float", + width=70 }, - [1]={ - width=370, + [3]={ list=false, - type="String", - name="Id", - refTo="" + name="Evasion", + refTo="", + type="Int", + width=70 }, - [6]={ - width=290, + [4]={ list=false, - type="String", - name="BaseType", - refTo="" + name="Accuracy", + refTo="", + type="Int", + width=70 }, [5]={ - width=160, list=false, - type="String", - name="Name", - refTo="" + name="MonsterLife", + refTo="", + type="Int", + width=70 }, - [4]={ - width=40, + [6]={ list=false, + name="", + refTo="", type="Int", - name="Height", - refTo="" + width=70 }, - [18]={ - width=50, + [7]={ list=false, - type="Bool", - name="Hidden", - refTo="" + name="MinionLife", + refTo="", + type="Int", + width=70 }, - [3]={ - width=40, + [8]={ list=false, + name="", + refTo="", type="Int", - name="Width", - refTo="" + width=70 }, - [17]={ - width=80, + [9]={ list=false, - type="Enum", - name="ModDomain", - refTo="ModDomains" + name="", + refTo="", + type="Int", + width=70 }, - [16]={ - width=150, - list=true, - type="Key", - name="Tags", - refTo="Tags" + [10]={ + list=false, + name="", + refTo="", + type="Float", + width=70 }, - [15]={ - width=50, - list=true, + [11]={ + list=false, + name="", + refTo="", type="Int", + width=70 + }, + [12]={ + list=false, name="", - refTo="" + refTo="", + type="Float", + width=70 }, [13]={ - width=50, - list=true, - type="Int", + list=false, + name="", + refTo="", + type="Float", + width=70 + }, + [14]={ + list=false, name="", - refTo="" + refTo="", + type="Int", + width=70 } }, - AbyssObjects={ + DelveAzuriteShop={ }, - PreloadPriorities={ + DelveBiomes={ }, - TalismanMonsterMods={ + DelveCatchupDepths={ }, - ShrineSounds={ + DelveCraftingModifierDescriptions={ }, - PassiveSkills={ + DelveCraftingModifiers={ }, - AbyssTheme={ + DelveCraftingTags={ }, - DelveFlares={ + DelveDynamite={ }, - BestiaryFamilies={ + DelveFeatureRewards={ }, - MinimapIcons={ + DelveFeatures={ }, - BreachstoneUpgrades={ + DelveFlares={ }, - SuicideExplosion={ + DelveLevelScaling={ }, - LeagueInfo={ + DelveMonsterSpawners={ }, - PantheonSouls={ + DelveResourcePerLevel={ }, - ComponentCharges={ - [1]={ - width=250, - list=false, - type="String", - name="BaseItemType", - refTo="" - }, - [2]={ - width=50, - list=false, - type="Int", - name="Max", - refTo="" - }, - [3]={ - width=50, - list=false, - type="Int", - name="PerUse", - refTo="" - } + DelveRooms={ }, - BetrayalTargetFlags={ + DelveUpgradeType={ }, - InvasionMonsterRoles={ + DelveUpgrades={ }, - UITalkCategories={ + DescentExiles={ }, - IncursionArchitect={ + DescentRewardChests={ }, - BestiaryRecipeComponent={ + DescentStarterChest={ }, - ShieldTypes={ - [2]={ - width=60, + DisplayMinionMonsterType={ + [1]={ list=false, + name="Id", + refTo="", type="Int", - name="Block", - refTo="" + width=40 }, - [1]={ - width=290, + [2]={ list=false, + name="", + refTo="MonsterVarieties", type="Key", - name="BaseItemType", - refTo="BaseItemTypes" + width=390 } }, - MonsterChanceToDropItemTemplate={ - }, - ExpandingPulse={ - }, - LabyrinthNodeOverrides={ - }, - FlavourTextImages={ - }, - LeagueFlag={ - }, - SoundEffects={ + DivinationCardArt={ }, - QuestAchievements={ + DivinationCardStashTabLayout={ }, - MusicCategories={ + DropEffects={ }, - OldMapStashTabLayout={ + DropModifiers={ }, - ShopPackagePlatform={ + DropPool={ }, - MiscObjects={ + EclipseMods={ }, - BetrayalRelationshipState={ + EffectDrivenSkill={ }, - DelveFeatures={ + Effectiveness={ }, - ItemVisualIdentity={ + EffectivenessCostConstants={ [1]={ - width=150, list=false, - type="String", name="Id", - refTo="" + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Value", + refTo="", + type="Float", + width=150 } }, - Essences={ - }, - BestiaryCapturableMonsters={ - }, - LeagueCategory={ - }, - MicrotransactionCombineForumula={ - }, - MapFragmentFamilies={ - }, - Maps={ + EinharMissions={ }, - MonsterSpawnerGroupsPerLevel={ + EinharPackFallback={ }, - RunicCircles={ + ElderBossArenas={ }, - InvasionMonsterGroups={ + ElderMapBossOverride={ }, - WeaponSoundTypes={ + EndlessLedgeChests={ }, - AchievementSetRewards={ + EnvironmentTransitions={ }, - QuestFlags={ + Environments={ }, - SpawnAdditionalChestsOrClusters={ + EssenceStashTabLayout={ }, - StartingPassiveSkills={ + EssenceType={ }, - TreasureHunterMissions={ + Essences={ }, - AreaType={ + EventSeason={ }, - ItemClassCategories={ + EventSeasonRewards={ }, - DaressoPitFights={ + EvergreenAchievementTypes={ }, - ModDomains={ + EvergreenAchievements={ }, - StrDexIntMissionExtraRequirement={ + ExecuteGEAL={ }, - NPCMasterLevels={ + ExpandingPulse={ }, - JobRaidBrackets={ + ExperienceLevels={ }, - SummonedSpecificMonstersOnDeath={ + ExplodingStormBuffs={ }, - SkillTotems={ + ExtraTerrainFeatureFamily={ }, - Harbingers={ + ExtraTerrainFeatures={ }, - CharacterPanelStatContexts={ + FixedHideoutDoodads={ }, - UniqueSetNames={ + FixedMissions={ }, - Rarity={ + FlaskType={ }, - CraftingBenchOptions={ - [14]={ - width=100, - list=true, - type="Int", - name="", - refTo="" + Flasks={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=250 }, [2]={ - width=50, list=false, - type="Int", - name="Order", - refTo="" + name="Name", + refTo="", + type="String", + width=150 }, - [12]={ - width=50, + [3]={ list=false, - type="Int", - name="Sockets", - refTo="" + name="", + refTo="FlaskType", + type="Enum", + width=50 }, - [11]={ - width=50, + [4]={ list=false, - type="String", - name="Colours", - refTo="" - }, - [27]={ - width=320, - list=true, - type="Key", - name="", - refTo="CraftingItemClassCategories" + name="LifePerUse", + refTo="", + type="Int", + width=80 }, - [10]={ - width=50, + [5]={ list=false, + name="ManaPerUse", + refTo="", type="Int", - name="Links", - refTo="" + width=80 }, - [9]={ - width=130, - list=true, - type="Key", - name="ItemClasses", - refTo="ItemClasses" + [6]={ + list=false, + name="RecoveryTime", + refTo="", + type="Int", + width=80 }, - [23]={ - width=150, + [7]={ list=false, + name="Buff", + refTo="BuffDefinitions", type="Key", - name="UnlockCategories", - refTo="CraftingBenchUnlockCategories" + width=210 }, [8]={ - width=50, - list=false, + list=true, + name="BuffMagnitudes", + refTo="", type="Int", - name="", - refTo="" + width=90 + } + }, + FlavourText={ + }, + FlavourTextImages={ + }, + Footprints={ + }, + FragmentStashTabLayout={ + }, + GameConstants={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=250 }, - [19]={ - width=50, + [2]={ list=false, + name="Value", + refTo="", type="Int", - name="Tier", - refTo="" - }, - [7]={ - width=200, + width=150 + } + }, + GemTags={ + [1]={ list=false, + name="Id", + refTo="", type="String", - name="Name", - refTo="" + width=150 }, + [2]={ + list=false, + name="Name", + refTo="", + type="String", + width=150 + } + }, + GemTypes={ + }, + GeometryAttack={ + }, + GeometryProjectiles={ + }, + GeometryTrigger={ + }, + GlobalAudioConfig={ + }, + Grandmasters={ + }, + GrantedEffectGroups={ + }, + GrantedEffects={ [1]={ - width=300, list=false, - type="Key", - name="HideoutNPC", - refTo="HideoutNPCs" + name="Id", + refTo="", + type="String", + width=200 }, - [6]={ - width=50, + [2]={ list=false, - type="Int", - name="", - refTo="" + name="IsSupport", + refTo="", + type="Bool", + width=60 }, - [25]={ - width=50, + [3]={ + list=true, + name="SupportTypes", + refTo="ActiveSkillType", + type="Enum", + width=170 + }, + [4]={ list=false, - type="Int", - name="", - refTo="" + name="BaseEffectiveness", + refTo="", + type="Float", + width=150 }, [5]={ - width=60, - list=true, - type="Int", - name="", - refTo="" - }, - [26]={ - width=100, list=false, + name="IncrementalEffectiveness", + refTo="", + type="Float", + width=150 + }, + [6]={ + list=false, + name="SupportGemLetter", + refTo="", type="String", - name="Affix", - refTo="" + width=100 }, - [28]={ - width=100, - list=true, - type="Key", - name="", - refTo="" + [7]={ + list=false, + name="Attribute", + refTo="", + type="Int", + width=60 }, - [4]={ - width=150, + [8]={ list=true, - type="Key", - name="", - refTo="BaseItemTypes" + name="AddTypes", + refTo="ActiveSkillType", + type="Enum", + width=90 }, - [21]={ - width=750, + [9]={ list=true, - type="Key", - name="ItemCategories", - refTo="CraftingItemClassCategories" + name="ExcludeTypes", + refTo="ActiveSkillType", + type="Enum", + width=200 }, - [24]={ - width=50, + [10]={ list=false, - type="Int", - name="", - refTo="" + name="SupportGemsOnly", + refTo="", + type="Bool", + width=100 }, - [22]={ - width=60, + [11]={ list=false, - type="Enum", + name="Hash", + refTo="", + type="UInt", + width=100 + }, + [12]={ + list=true, name="", - refTo="" + refTo="", + type="Enum", + width=60 }, - [3]={ - width=130, + [13]={ list=false, - type="Key", - name="Mod", - refTo="Mods" + name="CannotBeSupported", + refTo="", + type="Bool", + width=110 }, - [20]={ - width=150, + [14]={ list=false, - type="String", - name="ModFamily", - refTo="" + name="", + refTo="", + type="Int", + width=50 }, - [18]={ - width=50, - list=true, + [15]={ + list=false, + name="CastTime", + refTo="", type="Int", - name="", - refTo="" + width=70 + }, + [16]={ + list=false, + name="ActiveSkill", + refTo="ActiveSkills", + type="Key", + width=110 }, [17]={ - width=50, list=false, + name="IgnoreMinionTypes", + refTo="", type="Bool", - name="", - refTo="" + width=100 }, - [16]={ - width=70, + [18]={ list=false, + name="", + refTo="", type="Bool", - name="IsDisabled", - refTo="" + width=50 }, - [15]={ - width=150, - list=false, - type="String", - name="Description", - refTo="" + [19]={ + list=true, + name="AddMinionTypes", + refTo="ActiveSkillType", + type="Enum", + width=150 }, - [13]={ - width=50, + [20]={ list=false, - type="Int", - name="", - refTo="" + name="Animation", + refTo="Animation", + type="Key", + width=120 } }, - PassiveJewelSlots={ - }, - BetrayalTargetJobAchievements={ - }, - ItemVisualEffect={ - }, - MonsterVarieties={ - [2]={ - width=150, + GrantedEffectsPerLevel={ + [1]={ list=false, + name="GrantedEffect", + refTo="GrantedEffects", type="Key", - name="Type", - refTo="MonsterTypes" + width=210 }, - [31]={ - width=100, + [2]={ list=false, - type="String", - name="Stance", - refTo="" + name="Level", + type="Int", + width=40 }, - [11]={ - width=50, + [3]={ + list=true, + name="Stats", + refTo="Stats", + type="Key", + width=520 + }, + [4]={ list=false, - type="Int", - name="", - refTo="" + name="StatEff1", + refTo="", + type="Float", + width=60 }, - [41]={ - width=150, + [5]={ list=false, - type="Key", - name="OffHandItemClass", - refTo="ItemClasses" + name="StatEff2", + refTo="", + type="Float", + width=60 }, - [23]={ - width=50, + [6]={ list=false, - type="Int", - name="", - refTo="" + name="StatEff3", + refTo="", + type="Float", + width=60 }, - [1]={ - width=450, + [7]={ list=false, - type="String", - name="Id", - refTo="" + name="StatEff4", + refTo="", + type="Float", + width=60 }, - [40]={ - width=150, + [8]={ list=false, - type="Key", - name="MainHandItemClass", - refTo="ItemClasses" + name="StatEff5", + refTo="", + type="Float", + width=60 }, - [28]={ - width=500, - list=true, - type="Key", - name="GrantedEffects", - refTo="GrantedEffects" + [9]={ + list=false, + name="StatEff6", + refTo="", + type="Float", + width=60 }, - [62]={ - width=150, - list=true, - type="Key", - name="", - refTo="AchievementItems" + [10]={ + list=false, + name="StatEff7", + refTo="", + type="Float", + width=60 }, - [20]={ - width=150, - list=true, - type="Key", - name="Tags", - refTo="Tags" + [11]={ + list=false, + name="StatEff8", + refTo="", + type="Float", + width=60 }, - [46]={ - width=150, + [12]={ list=true, + name="EffectivenessCost", + refTo="EffectivenessCostConstants", type="Key", - name="SpecialMods", - refTo="Mods" + width=250 }, - [61]={ - width=150, + [13]={ list=false, - type="Key", - name="", - refTo="AchievementItems" + name="Stat1", + refTo="", + type="Int", + width=60 }, [14]={ - width=50, list=false, + name="Stat2", + refTo="", type="Int", - name="", - refTo="" + width=60 }, - [29]={ - width=150, + [15]={ list=false, - type="String", - name="AIScript", - refTo="" - }, - [45]={ - width=150, - list=true, - type="Key", - name="", - refTo="AchievementItems" - }, - [10]={ - width=200, - list=true, - type="Key", - name="Mods", - refTo="Mods" + name="Stat3", + refTo="", + type="Int", + width=60 }, - [21]={ - width=50, + [16]={ list=false, + name="Stat4", + refTo="", type="Int", - name="", - refTo="" + width=60 }, - [7]={ - width=150, + [17]={ list=false, - type="String", - name="Actor", - refTo="" + name="Stat5", + refTo="", + type="Int", + width=60 }, - [71]={ - width=50, + [18]={ list=false, + name="Stat6", + refTo="", type="Int", - name="", - refTo="" + width=60 }, - [5]={ - width=110, + [19]={ list=false, + name="Stat7", + refTo="", type="Int", - name="MinimumAttackRange", - refTo="" - }, - [68]={ - width=150, - list=true, - type="Key", - name="", - refTo="AchievementItems" + width=60 }, - [26]={ - width=50, + [20]={ list=false, + name="Stat8", + refTo="", type="Int", - name="", - refTo="" + width=60 }, - [69]={ - width=50, + [21]={ list=false, - type="Key", - name="", - refTo="" + name="PlayerLevel", + refTo="", + type="Int", + width=70 }, - [50]={ - width=50, + [22]={ list=false, + name="ManaMultiplier", + refTo="", type="Int", - name="", - refTo="" + width=80 }, - [18]={ - width=50, + [23]={ list=false, + name="", + refTo="", type="Int", + width=40 + }, + [24]={ + list=false, name="", - refTo="" + refTo="", + type="Int", + width=40 }, - [66]={ - width=150, + [25]={ list=true, + name="QualityStats", + refTo="Stats", type="Key", - name="", - refTo="AchievementItems" + width=150 }, - [67]={ - width=150, + [26]={ list=true, - type="Key", - name="", - refTo="AchievementItems" + name="QualityStatValues", + refTo="", + type="Int", + width=100 }, - [13]={ - width=50, + [27]={ list=false, - type="String", - name="", - refTo="" + name="SpellCritChance", + refTo="", + type="Int", + width=90 }, - [49]={ - width=50, + [28]={ list=false, + name="ManaCost", + refTo="", type="Int", - name="", - refTo="" + width=60 }, - [27]={ - width=50, + [29]={ list=false, + name="DamageEffectiveness", + refTo="", type="Int", - name="", - refTo="" + width=120 }, - [9]={ - width=150, - list=false, - type="String", - name="ObjectType", - refTo="" - }, - [65]={ - width=150, - list=true, - type="Key", - name="ModsEndgame", - refTo="Mods" - }, - [19]={ - width=50, + [30]={ list=false, + name="CooldownCount", + refTo="", type="Int", - name="", - refTo="" + width=90 }, - [77]={ - width=50, + [31]={ list=false, - type="Bool", - name="", - refTo="" + name="Cooldown", + refTo="", + type="Int", + width=60 }, [32]={ - width=50, list=false, - type="Key", name="", - refTo="" - }, - [76]={ - width=150, - list=false, - type="String", - name="SinkAnimation", - refTo="" + refTo="", + type="Int", + width=40 }, - [70]={ - width=150, + [33]={ list=true, + name="BooleanStats", + refTo="Stats", type="Key", - name="", - refTo="AchievementItems" + width=150 }, - [24]={ - width=50, + [34]={ list=false, - type="Int", name="", - refTo="" - }, - [33]={ - width=200, - list=false, - type="String", - name="Name", - refTo="" + refTo="", + type="Bool", + width=40 }, - [54]={ - width=50, + [35]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Int", + width=50 }, - [39]={ - width=150, + [36]={ list=false, - type="Key", - name="BackItem", - refTo="ItemVisualIdentity" - }, - [78]={ - width=150, - list=true, - type="Key", name="", - refTo="MultiPartAchievements" - }, - [64]={ - width=150, - list=true, - type="Key", - name="ModsPart2", - refTo="Mods" + refTo="", + type="Int", + width=50 }, - [16]={ - width=50, + [37]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Int", + width=50 }, [38]={ - width=150, - list=true, - type="Key", - name="OffHandItem", - refTo="ItemVisualIdentity" - }, - [73]={ - width=150, - list=true, - type="Key", - name="", - refTo="AchievementItems" - }, - [34]={ - width=100, list=false, + name="ManaCostOverride", + refTo="", type="Int", - name="DamageMultiplier", - refTo="" + width=110 }, - [53]={ - width=50, + [39]={ list=false, - type="Int", name="", - refTo="" - }, - [72]={ - width=50, - list=false, + refTo="", type="Int", - name="", - refTo="" + width=50 }, - [12]={ - width=50, + [40]={ list=false, - type="String", - name="", - refTo="" + name="DamageMultiplier", + refTo="", + type="Int", + width=90 }, - [60]={ - width=50, + [41]={ list=false, - type="Key", name="", - refTo="" - }, - [75]={ - width=50, - list=false, + refTo="", type="Int", - name="", - refTo="" + width=50 }, - [25]={ - width=50, + [42]={ list=false, + name="ArtVariation", + refTo="", type="Int", - name="", - refTo="" + width=70 }, - [37]={ - width=150, + [43]={ list=true, - type="Key", - name="MainHandItem", - refTo="ItemVisualIdentity" + name="InterpolationTypes", + refTo="StatInterpolationTypes", + type="Enum", + width=130 }, - [35]={ - width=100, + [44]={ list=false, + name="", + refTo="", type="Int", - name="LifeMultiplier", - refTo="" + width=50 }, - [8]={ - width=150, + [45]={ list=false, - type="String", - name="AnimatedObject", - refTo="" + name="SoulGainPreventionDuration", + refTo="", + type="Int", + width=150 }, - [48]={ - width=60, + [46]={ list=false, - type="Bool", name="", - refTo="" - }, - [74]={ - width=150, - list=true, + refTo="", type="Key", - name="", - refTo="MultiPartAchievements" + width=80 }, - [17]={ - width=50, + [47]={ list=false, + name="Duration", + refTo="", type="Int", - name="", - refTo="" + width=80 }, - [56]={ - width=40, + [48]={ list=false, - type="Bool", - name="", - refTo="" + name="StatEff9", + refTo="", + type="Float", + width=150 }, - [59]={ - width=50, + [49]={ + list=false, + name="Stat9", + refTo="", + type="Int", + width=150 + } + }, + GroundEffectTypes={ + }, + GroundEffects={ + }, + HarbingerMaps={ + }, + Harbingers={ + }, + HideoutDoodads={ + }, + HideoutNPCs={ + [1]={ list=false, + name="NPC", + refTo="NPCs", type="Key", - name="", - refTo="" - }, - [36]={ - width=100, + width=370 + } + }, + HideoutRarity={ + }, + Hideouts={ + }, + ImpactSoundData={ + }, + IncursionArchitect={ + }, + IncursionBrackets={ + }, + IncursionChestRewards={ + }, + IncursionChests={ + }, + IncursionRoomAdditionalBossDrops={ + }, + IncursionRoomBossFightEvents={ + }, + IncursionRooms={ + }, + IncursionUniqueUpgradeComponents={ + }, + IncursionUniqueUpgrades={ + }, + InvasionMonsterGroups={ + }, + InvasionMonsterRestrictions={ + }, + InvasionMonsterRoles={ + }, + InvasionMonstersPerArea={ + }, + ItemClassCategories={ + }, + ItemClasses={ + [1]={ list=false, - type="Int", - name="AttackDuration", - refTo="" + name="Id", + refTo="", + type="String", + width=150 }, - [4]={ - width=60, + [2]={ list=false, - type="Enum", - name="ObjectSize", - refTo="" - }, - [55]={ - width=50, + name="Name", + refTo="", + type="String", + width=150 + } + }, + ItemExperiencePerLevel={ + }, + ItemSetNames={ + }, + ItemShopType={ + }, + ItemSynthesisCorruptedMods={ + [1]={ list=false, - type="Int", - name="Hash", - refTo="" + name="ItemClass", + refTo="ItemClasses", + type="Key", + width=170 }, - [30]={ - width=200, + [2]={ list=true, + name="ImplicitMods", + refTo="Mods", type="Key", - name="", - refTo="Mods" - }, - [52]={ - width=50, - list=false, - type="Int", - name="", - refTo="" - }, - [51]={ - width=50, + width=910 + } + }, + ItemSynthesisMods={ + [1]={ list=false, - type="Int", - name="", - refTo="" + name="Id", + refTo="", + type="String", + width=120 }, - [43]={ - width=150, + [2]={ list=false, + name="Stat", + refTo="Stats", type="Key", - name="HelmetItem", - refTo="ItemVisualIdentity" + width=350 }, - [6]={ - width=110, - list=false, - type="Int", - name="MaximumAttackRange", - refTo="" - }, - [58]={ - width=150, + [3]={ list=false, - type="Key", name="", - refTo="AchievementItems" - }, - [22]={ - width=50, - list=true, + refTo="", type="Int", - name="", - refTo="" + width=150 }, - [47]={ - width=150, + [4]={ list=true, + name="ItemClasses", + refTo="ItemClasses", type="Key", - name="", - refTo="AchievementItems" + width=440 }, - [44]={ - width=50, - list=false, - type="Int", - name="", - refTo="" - }, - [3]={ - width=100, - list=false, - type="Int", - name="MovementSpeed", - refTo="" - }, - [63]={ - width=150, + [5]={ list=true, + name="ImplicitMod", + refTo="Mods", type="Key", - name="ModsPart1", - refTo="Mods" - }, - [42]={ - width=50, - list=false, - type="Key", - name="", - refTo="" - }, - [15]={ - width=50, - list=false, - type="Int", - name="", - refTo="" - }, - [57]={ - width=50, - list=false, - type="String", - name="", - refTo="" + width=450 } }, - IncursionChestRewards={ + ItemThemes={ }, - ComponentArmour={ - [2]={ - width=70, - list=false, - type="Int", - name="Armour", - refTo="" - }, - [5]={ - width=100, - list=false, - type="Int", - name="MovementPenalty", - refTo="" - }, - [3]={ - width=70, - list=false, - type="Int", - name="Evasion", - refTo="" - }, + ItemTradeData={ + }, + ItemVisualEffect={ + }, + ItemVisualHeldBodyModel={ + }, + ItemVisualIdentity={ [1]={ - width=320, list=false, + name="Id", + refTo="", type="String", - name="BaseItemType", - refTo="" - }, - [4]={ - width=70, - list=false, - type="Int", - name="EnergyShield", - refTo="" + width=150 } }, - DelveCraftingModifiers={ + ItemisedVisualEffect={ }, - ImpactSoundData={ + JobAssassinationSpawnerGroups={ }, - ChestItemTemplates={ + JobRaidBrackets={ }, - MonsterSpawnerOverrides={ + KillstreakThresholds={ }, - SkillGemInfo={ + LabyrinthAreas={ }, - BetrayalFlags={ + LabyrinthExclusionGroups={ }, - ItemVisualHeldBodyModel={ + LabyrinthIzaroChests={ }, - AtlasFog={ + LabyrinthNodeOverrides={ + }, + LabyrinthRewardTypes={ + }, + LabyrinthRewards={ + }, + LabyrinthSecretEffects={ + }, + LabyrinthSecretLocations={ + }, + LabyrinthSecrets={ + }, + LabyrinthSection={ + }, + LabyrinthSectionLayout={ + }, + LabyrinthTrials={ + }, + LabyrinthTrinkets={ + }, + Labyrinths={ + }, + Languages={ + }, + LeagueCategory={ + }, + LeagueFlag={ + }, + LeagueFlags={ + }, + LeagueInfo={ + }, + LeagueQuestFlags={ + }, + LeagueTrophy={ + }, + LevelRelativePlayerScaling={ + }, + MapConnections={ + }, + MapCreationInformation={ + }, + MapDeviceRecipes={ }, MapDevices={ }, - EventSeason={ + MapFragmentFamilies={ }, - ShopPaymentPackage={ + MapFragmentMods={ }, - ShopCurrency={ + MapInhabitants={ }, - CharacterAudioEvents={ + MapPins={ }, - CharacterTextAudio={ + MapPurchaseCosts={ }, - Dances={ + MapSeries={ }, - CurrencyUseTypes={ + MapSeriesTiers={ }, - ActiveSkillType={ + MapStashTabLayout={ }, - MonsterSkillsAttackSpell={ + Maps={ }, - DropEffects={ + MasterHideoutLevels={ }, - SummonedSpecificBarrels={ + Melee={ }, - ModGenerationType={ + MicroMigrationData={ }, - BetrayalDialogueCue={ + MicrotransactionCharacterPortraitVariations={ }, - NPCMaster={ + MicrotransactionCombineForumula={ }, - DisplayMinionMonsterType={ + MicrotransactionFireworksVariations={ + }, + MicrotransactionPeriodicCharacterEffectVariations={ + }, + MicrotransactionPortalVariations={ + }, + MicrotransactionRarityDisplay={ + }, + MicrotransactionSlotId={ + }, + MicrotransactionSocialFrameVariations={ + }, + MinimapIcons={ + }, + MiscAnimated={ + }, + MiscBeams={ + }, + MiscObjects={ + }, + MissionFavourPerLevel={ + }, + MissionTileMap={ + }, + MissionTransitionTiles={ + }, + ModAuraFlags={ + }, + ModDomains={ + }, + ModFamily={ + }, + ModGenerationType={ + }, + ModSellPriceTypes={ + }, + ModType={ [1]={ - width=40, list=false, - type="Int", name="Id", - refTo="" + refTo="", + type="String", + width=400 }, [2]={ - width=390, - list=false, - type="Key", + list=true, name="", - refTo="MonsterVarieties" + refTo="", + type="Key", + width=90 + }, + [3]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=130 } }, - LabyrinthExclusionGroups={ - }, - EffectivenessCostConstants={ + Mods={ [1]={ - width=150, list=false, - type="String", name="Id", - refTo="" + refTo="", + type="String", + width=150 }, [2]={ - width=150, - list=false, - type="Float", - name="Value", - refTo="" - } - }, - BuffDefinitions={ - [14]={ - width=180, list=false, - type="Key", - name="Visual", - refTo="BuffVisuals" + name="Hash", + refTo="", + type="UInt", + width=60 }, - [2]={ - width=150, + [3]={ list=false, - type="String", - name="Description", - refTo="" + name="Type", + refTo="ModType", + type="Key", + width=150 }, - [31]={ - width=50, + [4]={ list=false, - type="Bool", - name="", - refTo="" + name="Level", + refTo="", + type="Int", + width=60 }, - [12]={ - width=60, + [5]={ list=false, - type="Bool", - name="", - refTo="" + name="Stat1", + refTo="Stats", + type="Key", + width=150 }, - [11]={ - width=170, + [6]={ list=false, + name="Stat2", + refTo="Stats", type="Key", - name="CurrentStat", - refTo="Stats" + width=150 }, - [27]={ - width=40, + [7]={ list=false, - type="Bool", - name="", - refTo="" + name="Stat3", + refTo="Stats", + type="Key", + width=150 }, - [10]={ - width=250, + [8]={ list=false, + name="Stat4", + refTo="Stats", type="Key", - name="MaxStat", - refTo="Stats" + width=150 }, [9]={ - width=70, list=false, - type="Bool", - name="ShowCount", - refTo="" + name="Domain", + refTo="ModDomains", + type="Enum", + width=60 }, - [23]={ - width=40, + [10]={ list=false, - type="Bool", - name="", - refTo="" + name="Name", + refTo="", + type="String", + width=130 }, - [8]={ - width=70, + [11]={ list=false, + name="GenerationType", + refTo="ModGenerationType", type="Enum", - name="MergeMode", - refTo="" + width=100 }, - [29]={ - width=40, + [12]={ list=false, - type="Bool", - name="", - refTo="" + name="Family", + refTo="ModFamily", + type="String", + width=120 }, - [19]={ - width=40, + [13]={ list=false, - type="Bool", - name="", - refTo="" + name="Stat1Value", + refTo="", + type="Interval", + width=70 }, - [7]={ - width=90, + [14]={ list=false, - type="Bool", - name="CancelOnDeath", - refTo="" + name="Stat2Value", + refTo="", + type="Interval", + width=70 }, - [1]={ - width=200, + [15]={ list=false, - type="String", - name="Id", - refTo="" + name="Stat3Value", + refTo="", + type="Interval", + width=70 }, - [25]={ - width=60, + [16]={ list=false, - type="Bool", - name="isRecovery", - refTo="" + name="Stat4Value", + refTo="", + type="Interval", + width=70 }, - [6]={ - width=610, + [17]={ list=true, + name="SpawnTags", + refTo="Tags", type="Key", - name="Stats", - refTo="Stats" + width=150 }, - [30]={ - width=80, - list=false, + [18]={ + list=true, + name="SpawnWeights", + refTo="Tags", type="Int", - name="UIStackMode", - refTo="" + width=150 }, - [32]={ - width=70, + [19]={ list=false, - type="Bool", - name="IsSkillBuff", - refTo="" + name="Aura", + refTo="BuffDefinitions", + type="Key", + width=150 }, - [5]={ - width=170, + [20]={ list=false, - type="String", - name="Name", - refTo="" + name="AuraRadius", + refTo="", + type="Int", + width=70 }, - [4]={ - width=60, - list=false, - type="Bool", - name="Removable", - refTo="" + [21]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=150 }, - [28]={ - width=180, + [22]={ list=false, + name="GrantedEffect", + refTo="GrantedEffectsPerLevel", type="Key", - name="MinStat", - refTo="Stats" + width=150 }, - [26]={ - width=40, - list=false, - type="Bool", - name="", - refTo="" + [23]={ + list=true, + name="AuraFlags", + refTo="ModAuraFlags", + type="Enum", + width=80 }, - [18]={ - width=40, - list=false, - type="Bool", + [24]={ + list=true, name="", - refTo="" + refTo="", + type="Int", + width=80 }, - [24]={ - width=180, + [25]={ list=false, + name="Daemon", + refTo="", type="String", - name="Implementation", - refTo="" - }, - [22]={ - width=40, - list=false, - type="Int", - name="Limit", - refTo="" + width=150 }, - [21]={ - width=50, - list=false, - type="Bool", + [26]={ + list=true, name="", - refTo="" + refTo="", + type="Key", + width=100 }, - [20]={ - width=40, - list=false, - type="Bool", + [27]={ + list=true, name="", - refTo="" + refTo="", + type="Key", + width=100 }, - [3]={ - width=50, + [28]={ list=false, - type="Bool", - name="Invisible", - refTo="" + name="AuraVisualOverride", + refTo="BuffVisuals", + type="Key", + width=150 }, - [17]={ - width=50, + [29]={ list=false, - type="Enum", - name="", - refTo="" + name="Stat5Value", + refTo="", + type="Interval", + width=60 }, - [16]={ - width=40, + [30]={ list=false, - type="Bool", + name="Stat5", + refTo="Stats", + type="Key", + width=150 + }, + [31]={ + list=true, name="", - refTo="" + refTo="", + type="Key", + width=100 }, - [15]={ - width=40, + [32]={ list=false, - type="Bool", name="", - refTo="" + refTo="", + type="Key", + width=100 }, - [13]={ - width=60, - list=false, - type="Enum", - name="Catagory", - refTo="BuffCatagory" - } - }, - MiscBeams={ - }, - PerLevelValues={ - }, - MonsterTypes={ - [2]={ - width=70, - list=false, - type="Int", - name="Accuracy", - refTo="" + [33]={ + list=true, + name="GenerationWeightTags", + refTo="Tags", + type="Key", + width=120 }, - [5]={ - width=60, - list=false, + [34]={ + list=true, + name="GenerationWeightValues", + refTo="Tags", type="Int", - name="Evasion", - refTo="" + width=120 }, - [11]={ - width=50, - list=false, - type="Bool", + [35]={ + list=true, name="", - refTo="" - }, - [4]={ - width=60, - list=false, - type="Int", - name="Armour", - refTo="" + refTo="", + type="Key", + width=100 }, - [10]={ - width=50, + [36]={ list=false, + name="IsEssence", + refTo="", type="Bool", - name="", - refTo="" + width=60 }, - [9]={ - width=150, + [37]={ list=false, - type="Key", - name="Resistances", - refTo="MonsterResistances" + name="Stat6Value", + refTo="", + type="Interval", + width=60 }, - [8]={ - width=150, - list=true, + [38]={ + list=false, + name="Stat6", + refTo="Stats", type="Key", - name="Tags", - refTo="Tags" + width=150 }, - [3]={ - width=80, + [39]={ list=false, - type="Bool", - name="IsPlayerMinion", - refTo="" + name="Tier", + refTo="", + type="String", + width=80 }, - [7]={ - width=100, + [40]={ list=false, + name="MaxLevel", + refTo="", type="Int", - name="DamageSpread", - refTo="" + width=70 }, - [1]={ - width=150, + [41]={ list=false, - type="String", - name="Id", - refTo="" + name="", + refTo="", + type="Bool", + width=50 }, - [6]={ - width=70, + [42]={ list=false, - type="Int", - name="EnergyShield", - refTo="" + name="", + refTo="", + type="Key", + width=80 } }, - Effectiveness={ + MonsterAdditionalMonsterDrops={ }, - BestiaryEncounters={ + MonsterArmours={ }, - UniqueChests={ + MonsterBehavior={ }, - Words={ + MonsterBonuses={ }, - SynthesisBrackets={ + MonsterChanceToDropItemTemplate={ }, - IncursionRoomAdditionalBossDrops={ + MonsterConditions={ }, - CharacterPanelStats={ + MonsterFleeConditions={ }, - TriggerSpawners={ + MonsterGroupEntries={ }, - ShopPaymentPackagePrice={ + MonsterGroupNames={ }, - DelveAzuriteShop={ + MonsterMapBossDifficulty={ }, - DivinationCardArt={ + MonsterMapDifficulty={ }, - FlaskType={ + MonsterMortar={ }, - SafehouseCraftingSpreeCurrencies={ + MonsterPackCounts={ }, - Orientations={ + MonsterPackEntries={ }, - ZanaQuests={ + MonsterPacks={ }, - Stats={ - [14]={ - width=150, - list=true, + MonsterProjectileAttack={ + }, + MonsterProjectileSpell={ + }, + MonsterResistances={ + [1]={ + list=false, + name="Id", + refTo="", type="String", - name="Skills", - refTo="" + width=150 }, [2]={ - width=50, list=false, - type="Bool", - name="", - refTo="" + name="FireNormal", + refTo="", + type="Int", + width=80 }, - [5]={ - width=50, + [3]={ list=false, - type="Enum", - name="", - refTo="" + name="ColdNormal", + refTo="", + type="Int", + width=80 }, - [12]={ - width=50, + [4]={ list=false, - type="Bool", - name="", - refTo="" + name="LightningNormal", + refTo="", + type="Int", + width=80 }, - [11]={ - width=150, + [5]={ list=false, - type="Enum", - name="Off Hand Stat", - refTo="Stats" + name="ChaosNormal", + refTo="", + type="Int", + width=80 }, - [4]={ - width=50, + [6]={ list=false, - type="Bool", - name="Proxied", - refTo="" + name="FireCruel", + refTo="", + type="Int", + width=80 }, - [10]={ - width=150, + [7]={ list=false, - type="Enum", - name="Main Hand Stat", - refTo="Stats" + name="ColdCruel", + refTo="", + type="Int", + width=80 + }, + [8]={ + list=false, + name="LightningCruel", + refTo="", + type="Int", + width=80 }, [9]={ - width=50, list=false, - type="Bool", - name="Virtual", - refTo="" + name="ChaosCruel", + refTo="", + type="Int", + width=80 }, - [13]={ - width=80, + [10]={ list=false, - type="UInt", - name="Hash", - refTo="" + name="FireMerciless", + refTo="", + type="Int", + width=80 }, - [8]={ - width=50, + [11]={ list=false, - type="Bool", - name="", - refTo="" + name="ColdMerciless", + refTo="", + type="Int", + width=80 + }, + [12]={ + list=false, + name="LightningMerciless", + refTo="", + type="Int", + width=80 }, + [13]={ + list=false, + name="ChaosMerciless", + refTo="", + type="Int", + width=80 + } + }, + MonsterScalingByLevel={ + }, + MonsterSegments={ + }, + MonsterSize={ + }, + MonsterSkillsAliveDead={ + }, + MonsterSkillsAttackSpell={ + }, + MonsterSkillsClientInstance={ + }, + MonsterSkillsHull={ + }, + MonsterSkillsOrientation={ + }, + MonsterSkillsPlacement={ + }, + MonsterSkillsReference={ + }, + MonsterSkillsSequenceMode={ + }, + MonsterSkillsShape={ + }, + MonsterSkillsTargets={ + }, + MonsterSpawnerGroups={ + }, + MonsterSpawnerGroupsPerLevel={ + }, + MonsterSpawnerOverrides={ + }, + MonsterStatsFromMapStats={ + }, + MonsterTypes={ [1]={ - width=310, list=false, - type="String", name="Id", - refTo="" + refTo="", + type="String", + width=150 + }, + [2]={ + list=false, + name="Accuracy", + refTo="", + type="Int", + width=70 }, [3]={ - width=50, list=false, + name="IsPlayerMinion", + refTo="", type="Bool", - name="Local", - refTo="" + width=80 }, - [7]={ - width=160, + [4]={ list=false, - type="String", - name="", - refTo="" + name="Armour", + refTo="", + type="Int", + width=60 }, - [16]={ - width=50, + [5]={ list=false, - type="Bool", - name="", - refTo="" + name="Evasion", + refTo="", + type="Int", + width=60 }, - [15]={ - width=110, + [6]={ + list=false, + name="EnergyShield", + refTo="", + type="Int", + width=70 + }, + [7]={ + list=false, + name="DamageSpread", + refTo="", + type="Int", + width=100 + }, + [8]={ + list=true, + name="Tags", + refTo="Tags", + type="Key", + width=150 + }, + [9]={ list=false, + name="Resistances", + refTo="MonsterResistances", type="Key", - name="", - refTo="" + width=150 }, - [6]={ - width=50, + [10]={ list=false, + name="", + refTo="", type="Bool", + width=50 + }, + [11]={ + list=false, name="", - refTo="" + refTo="", + type="Bool", + width=50 } }, - DelveMonsterSpawners={ - }, - MoveDaemon={ - }, - MultiPartAchievementAreas={ - }, - ActiveSkills={ - [14]={ - width=80, + MonsterVarieties={ + [1]={ list=false, - type="Enum", - name="SkillTotem", - refTo="SkillTotemVariations" + name="Id", + refTo="", + type="String", + width=450 }, [2]={ - width=150, list=false, - type="String", - name="DisplayName", - refTo="" + name="Type", + refTo="MonsterTypes", + type="Key", + width=150 }, - [12]={ - width=150, + [3]={ list=false, - type="String", - name="GrantedEffect", - refTo="" + name="MovementSpeed", + refTo="", + type="Int", + width=100 }, - [11]={ - width=80, + [4]={ list=false, - type="Bool", - name="HideOnWebsite", - refTo="" + name="ObjectSize", + refTo="", + type="Enum", + width=60 }, - [10]={ - width=150, + [5]={ + list=false, + name="MinimumAttackRange", + refTo="", + type="Int", + width=110 + }, + [6]={ + list=false, + name="MaximumAttackRange", + refTo="", + type="Int", + width=110 + }, + [7]={ list=false, + name="Actor", + refTo="", type="String", - name="", - refTo="" + width=150 + }, + [8]={ + list=false, + name="AnimatedObject", + refTo="", + type="String", + width=150 }, [9]={ - width=150, list=false, + name="ObjectType", + refTo="", type="String", - name="", - refTo="" + width=150 }, - [8]={ - width=240, + [10]={ list=true, + name="Mods", + refTo="Mods", type="Key", - name="WeaponRestrictions", - refTo="ItemClasses" + width=200 }, - [19]={ - width=70, + [11]={ list=false, - type="Bool", name="", - refTo="" - }, - [7]={ - width=330, - list=true, - type="Enum", - name="SkillTypes", - refTo="ActiveSkillType" + refTo="", + type="Int", + width=50 }, - [1]={ - width=190, + [12]={ list=false, + name="", + refTo="", type="String", - name="Id", - refTo="" - }, - [6]={ - width=100, - list=true, - type="Enum", - name="TargetTypes", - refTo="ActiveSkillTargetTypes" + width=50 }, - [5]={ - width=100, + [13]={ list=false, + name="", + refTo="", type="String", - name="Icon", - refTo="" + width=50 }, - [4]={ - width=170, + [14]={ list=false, - type="String", - name="ActionName", - refTo="" + name="", + refTo="", + type="Int", + width=50 }, - [3]={ - width=500, + [15]={ list=false, - type="String", - name="Description", - refTo="" + name="", + refTo="", + type="Int", + width=50 }, - [20]={ - width=70, + [16]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [17]={ list=false, - type="Bool", name="", - refTo="" + refTo="", + type="Int", + width=50 }, [18]={ - width=150, - list=true, - type="Enum", - name="MinionSkillTypes", - refTo="ActiveSkillType" + list=false, + name="", + refTo="", + type="Int", + width=50 }, - [17]={ - width=1420, - list=true, - type="Key", - name="GenericStat", - refTo="Stats" + [19]={ + list=false, + name="", + refTo="", + type="Int", + width=50 }, - [16]={ - width=1800, + [20]={ list=true, + name="Tags", + refTo="Tags", type="Key", - name="SkillSpecificStat", - refTo="Stats" + width=150 }, - [15]={ - width=40, + [21]={ list=false, - type="Bool", name="", - refTo="" + refTo="", + type="Int", + width=50 }, - [13]={ - width=40, - list=false, - type="Bool", + [22]={ + list=true, name="", - refTo="" - } - }, - Notifications={ - }, - TableMonsterSpawners={ - }, - BetrayalTargets={ - }, - KillstreakThresholds={ - }, - RaceTimes={ - }, - StatSemantics={ - }, - WarbandsPackNumbers={ - }, - NPCs={ - [1]={ - width=360, + refTo="", + type="Int", + width=50 + }, + [23]={ list=false, - type="String", name="", - refTo="" - } - }, - CharacterStartItems={ - }, - Labyrinths={ - }, - ExecuteGEAL={ - }, - WeaponTypes={ - [2]={ - width=70, + refTo="", + type="Int", + width=50 + }, + [24]={ list=false, + name="", + refTo="", type="Int", - name="CritChance", - refTo="" + width=50 }, - [5]={ - width=80, + [25]={ list=false, + name="", + refTo="", type="Int", - name="DamageMax", - refTo="" + width=50 }, - [3]={ - width=50, + [26]={ list=false, + name="", + refTo="", type="Int", - name="Speed", - refTo="" + width=50 }, - [7]={ - width=50, + [27]={ list=false, + name="", + refTo="", type="Int", + width=50 + }, + [28]={ + list=true, + name="GrantedEffects", + refTo="GrantedEffects", + type="Key", + width=500 + }, + [29]={ + list=false, + name="AIScript", + refTo="", + type="String", + width=150 + }, + [30]={ + list=true, name="", - refTo="" + refTo="Mods", + type="Key", + width=200 }, - [1]={ - width=490, + [31]={ + list=false, + name="Stance", + refTo="", + type="String", + width=100 + }, + [32]={ list=false, + name="", + refTo="", type="Key", - name="BaseItemType", - refTo="BaseItemTypes" + width=50 }, - [4]={ - width=70, + [33]={ + list=false, + name="Name", + refTo="", + type="String", + width=200 + }, + [34]={ list=false, + name="DamageMultiplier", + refTo="", type="Int", - name="DamageMin", - refTo="" + width=100 }, - [6]={ - width=50, + [35]={ list=false, + name="LifeMultiplier", + refTo="", type="Int", - name="Range", - refTo="" - } - }, - Tags={ - [1]={ - width=150, + width=100 + }, + [36]={ list=false, - type="String", - name="Id", - refTo="" + name="AttackDuration", + refTo="", + type="Int", + width=100 }, - [2]={ - width=150, + [37]={ + list=true, + name="MainHandItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [38]={ + list=true, + name="OffHandItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [39]={ + list=false, + name="BackItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [40]={ + list=false, + name="MainHandItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [41]={ + list=false, + name="OffHandItemClass", + refTo="ItemClasses", + type="Key", + width=150 + }, + [42]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [43]={ + list=false, + name="HelmetItem", + refTo="ItemVisualIdentity", + type="Key", + width=150 + }, + [44]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [45]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [46]={ + list=true, + name="SpecialMods", + refTo="Mods", + type="Key", + width=150 + }, + [47]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [48]={ + list=false, + name="", + refTo="", + type="Bool", + width=60 + }, + [49]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [50]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [51]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [52]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [53]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [54]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [55]={ list=false, - type="UInt", name="Hash", - refTo="" + refTo="", + type="Int", + width=50 }, - [3]={ - width=210, + [56]={ + list=false, + name="", + refTo="", + type="Bool", + width=40 + }, + [57]={ list=false, + name="", + refTo="", type="String", - name="DisplayText", - refTo="" - } - }, - MonsterSkillsReference={ - }, - QuestVendorRewards={ - }, - EclipseMods={ - }, - MonsterSkillsClientInstance={ - }, - AtlasQuadrant={ - }, - WorldAreas={ - }, - BuffVisualOrbTypes={ - }, - AtlasInfluenceOutcomes={ - }, - CharacterStartQuestState={ - }, - Realms={ - }, - UniqueJewelLimits={ - }, - JobAssassinationSpawnerGroups={ - }, - BetrayalTargetLifeScalingPerLevel={ - }, - StrDexIntMissions={ - }, - HideoutDoodads={ - }, - Music={ - }, - MissionFavourPerLevel={ - }, - ItemExperiencePerLevel={ - }, - ItemThemes={ - }, - ItemShopType={ - }, - BetrayalChoiceActions={ - }, - StatInterpolationTypes={ - }, - AchievementSets={ - }, - ModSellPriceTypes={ - }, - DamageParticleEffects={ - }, - DescentRewardChests={ - }, - ShopToken={ - }, - Environments={ - }, - MapInhabitants={ - }, - PreloadGroups={ - }, - MonsterPackCounts={ - }, - MicroMigrationData={ - }, - NPCTextAudio={ - }, - Hideouts={ - }, - BestiaryGenus={ - }, - EnvironmentTransitions={ - }, - PerandusBosses={ - }, - PassiveSkillTreeTutorial={ - }, - AdditionalLifeScalingPerLevel={ - }, - MonsterArmours={ - }, - Attributes={ - }, - AreaTransitionInfo={ - }, - BestiaryGroups={ + width=50 + }, + [58]={ + list=false, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [59]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [60]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [61]={ + list=false, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [62]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [63]={ + list=true, + name="ModsPart1", + refTo="Mods", + type="Key", + width=150 + }, + [64]={ + list=true, + name="ModsPart2", + refTo="Mods", + type="Key", + width=150 + }, + [65]={ + list=true, + name="ModsEndgame", + refTo="Mods", + type="Key", + width=150 + }, + [66]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [67]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [68]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [69]={ + list=false, + name="", + refTo="", + type="Key", + width=50 + }, + [70]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [71]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [72]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [73]={ + list=true, + name="", + refTo="AchievementItems", + type="Key", + width=150 + }, + [74]={ + list=true, + name="", + refTo="MultiPartAchievements", + type="Key", + width=150 + }, + [75]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + }, + [76]={ + list=false, + name="SinkAnimation", + refTo="", + type="String", + width=150 + }, + [77]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [78]={ + list=true, + name="", + refTo="MultiPartAchievements", + type="Key", + width=150 + } }, - Tutorial={ + MoveDaemon={ }, - MapDeviceRecipes={ + MultiPartAchievementAreas={ }, - MonsterSpawnerGroups={ + MultiPartAchievements={ + [1]={ + list=false, + name="Id", + refTo="", + type="String", + width=350 + } }, - DelveDynamite={ + Music={ }, - SpawnObject={ + MusicCategories={ }, - Footprints={ + MysteryBoxes={ }, - PVPTypes={ + NPCAdditionalVendorItems={ }, - SupporterPackSets={ + NPCAudio={ }, - GrantedEffectGroups={ + NPCFollowerVariations={ }, - LabyrinthIzaroChests={ + NPCMaster={ }, - GeometryAttack={ + NPCMasterLevels={ }, - ArchitectLifeScalingPerLevel={ + NPCShop={ }, - ItemSynthesisCorruptedMods={ + NPCShopAdditionalItems={ }, - ActiveSkillTargetTypes={ + NPCTalk={ }, - MicrotransactionPortalVariations={ + NPCTalkCategory={ }, - DropModifiers={ + NPCTalkConsoleQuickActions={ }, - EinharMissions={ + NPCTextAudio={ }, - TerrainPlugins={ + NPCs={ + [1]={ + list=false, + name="", + refTo="", + type="String", + width=360 + } }, - Pet={ + NetTiers={ }, - MicrotransactionFireworksVariations={ + Notifications={ }, - ItemTradeData={ + OldMapStashTabLayout={ }, - Characters={ + Orientations={ }, - TormentSpirits={ + PVPTypes={ }, PantheonPanelLayout={ }, - GlobalAudioConfig={ - }, - DescentExiles={ - }, - LabyrinthSecretLocations={ - }, - QuestStaticRewards={ - }, - UniqueMaps={ - }, - MonsterSkillsAliveDead={ - }, - MonsterFleeConditions={ - }, - MonsterGroupEntries={ - }, - AtlasSector={ - }, - Melee={ - }, - AreaTransitionAnimationTypes={ - }, - ItemClasses={ - [1]={ - width=150, - list=false, - type="String", - name="Id", - refTo="" - }, - [2]={ - width=150, - list=false, - type="String", - name="Name", - refTo="" - } - }, - FragmentStashTabLayout={ - }, - ProphecyType={ + PantheonSouls={ }, - EinharPackFallback={ + PassiveJewelSlots={ }, - LabyrinthRewardTypes={ + PassiveSkillBuffs={ }, - IncursionRoomBossFightEvents={ + PassiveSkillStatCategories={ }, - AdvancedSkillsTutorial={ + PassiveSkillTreeTutorial={ }, - CraftingBenchUnlockCategories={ - [1]={ - width=280, - list=false, - type="String", - name="Id", - refTo="" - } + PassiveSkills={ }, - ExplodingStormBuffs={ + PathOfEndurance={ }, - ItemSetNames={ + PerLevelValues={ }, - MonsterProjectileSpell={ + PerandusBosses={ }, - MonsterSize={ + PerandusChests={ }, - ArmourClasses={ + PerandusDaemons={ }, - BestiaryRecipes={ + PerandusGuards={ }, - BetrayalWallLifeScalingPerLevel={ + Pet={ }, - MonsterMortar={ + PreloadGroups={ }, - Synthesis={ + PreloadPriorities={ }, - BetrayalUpgradeSlots={ + ProjectileVariations={ }, - NPCTalkCategory={ + Projectiles={ }, - ElderMapBossOverride={ + Prophecies={ }, - EvergreenAchievements={ + ProphecyChain={ }, - AchievementSetsDisplay={ + ProphecyType={ }, - EssenceStashTabLayout={ + Quest={ }, - MicrotransactionPeriodicCharacterEffectVariations={ + QuestAchievements={ }, - HideoutRarity={ + QuestFlags={ }, - CurrencyItems={ + QuestRewards={ }, - Chests={ + QuestStateCalcuation={ }, - Bloodlines={ + QuestStates={ }, - ExtraTerrainFeatureFamily={ + QuestStaticRewards={ }, - MonsterMapDifficulty={ + QuestType={ }, - Tips={ + QuestVendorRewards={ }, - QuestType={ + RaceAreas={ }, - LabyrinthTrinkets={ + RaceTimes={ }, - MonsterSkillsSequenceMode={ + Races={ }, - SkillTrapVariations={ + RandomUniqueMonsters={ }, - CooldownGroups={ + Rarity={ }, - DelveUpgradeType={ + Realms={ }, - Animation={ - [1]={ - width=150, - list=false, - type="String", - name="Id", - refTo="" - } + RecipeUnlockDisplay={ }, - IncursionUniqueUpgradeComponents={ + RecipeUnlockObjects={ }, - ArchetypeRewards={ + RelativeImportanceConstants={ }, - Topologies={ + RogueExiles={ }, - ElderBossArenas={ + RunicCircles={ }, SafehouseBYOCrafting={ }, - CraftingItemClassCategories={ - [4]={ - width=130, - list=false, - type="String", - name="", - refTo="" - }, - [1]={ - width=110, - list=false, - type="String", - name="Id", - refTo="" - }, - [2]={ - width=610, - list=true, - type="Key", - name="ItemClasses", - refTo="ItemClasses" - }, - [3]={ - width=100, - list=false, - type="String", - name="", - refTo="" - } + SafehouseCraftingSpree={ }, - Mods={ - [2]={ - width=60, - list=false, - type="UInt", - name="Hash", - refTo="" - }, - [31]={ - width=100, - list=true, - type="Key", - name="", - refTo="" - }, - [11]={ - width=100, - list=false, - type="Enum", - name="GenerationType", - refTo="ModGenerationType" - }, - [27]={ - width=100, - list=true, - type="Key", - name="", - refTo="" - }, - [9]={ - width=60, - list=false, - type="Enum", - name="Domain", - refTo="ModDomains" - }, - [23]={ - width=80, - list=true, - type="Enum", - name="AuraFlags", - refTo="ModAuraFlags" - }, - [19]={ - width=150, - list=false, - type="Key", - name="Aura", - refTo="BuffDefinitions" - }, + SafehouseCraftingSpreeCurrencies={ + }, + SessionQuestFlags={ + }, + ShaperMemoryFragments={ + }, + ShaperOrbs={ + }, + ShieldTypes={ [1]={ - width=150, list=false, - type="String", - name="Id", - refTo="" + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=290 }, - [40]={ - width=70, + [2]={ list=false, + name="Block", + refTo="", type="Int", - name="MaxLevel", - refTo="" - }, - [32]={ - width=100, + width=60 + } + }, + ShopCategory={ + }, + ShopCountry={ + }, + ShopCurrency={ + }, + ShopForumBadge={ + }, + ShopPackagePlatform={ + }, + ShopPaymentPackage={ + }, + ShopPaymentPackageItems={ + }, + ShopPaymentPackagePrice={ + }, + ShopPaymentPackageProxy={ + }, + ShopRegion={ + }, + ShopToken={ + }, + ShrineBuffs={ + }, + ShrineSounds={ + }, + Shrines={ + }, + SigilDisplay={ + }, + SkillGemInfo={ + }, + SkillGems={ + [1]={ list=false, + name="BaseItemType", + refTo="BaseItemTypes", type="Key", - name="", - refTo="" + width=360 }, - [28]={ - width=150, + [2]={ list=false, + name="GrantedEffect", + refTo="GrantedEffects", type="Key", - name="AuraVisualOverride", - refTo="BuffVisuals" - }, - [24]={ - width=80, - list=true, - type="Int", - name="", - refTo="" - }, - [33]={ - width=120, - list=true, - type="Key", - name="GenerationWeightTags", - refTo="Tags" + width=210 }, - [20]={ - width=70, + [3]={ list=false, + name="Str", + refTo="", type="Int", - name="AuraRadius", - refTo="" - }, - [16]={ - width=70, - list=false, - type="Interval", - name="Stat4Value", - refTo="" - }, - [38]={ - width=150, - list=false, - type="Key", - name="Stat6", - refTo="Stats" - }, - [14]={ - width=70, - list=false, - type="Interval", - name="Stat2Value", - refTo="" - }, - [12]={ - width=120, - list=false, - type="String", - name="Family", - refTo="ModFamily" + width=40 }, - [10]={ - width=130, + [4]={ list=false, - type="String", - name="Name", - refTo="" + name="Dex", + refTo="", + type="Int", + width=40 }, - [37]={ - width=60, + [5]={ list=false, - type="Interval", - name="Stat6Value", - refTo="" + name="Int", + refTo="", + type="Int", + width=40 }, - [35]={ - width=100, + [6]={ list=true, + name="Tags", + refTo="GemTags", type="Key", - name="", - refTo="" + width=500 }, - [8]={ - width=150, + [7]={ list=false, + name="VaalGem", + refTo="BaseItemTypes", type="Key", - name="Stat4", - refTo="Stats" - }, - [17]={ - width=150, - list=true, - type="Key", - name="SpawnTags", - refTo="Tags" + width=290 }, - [41]={ - width=50, + [8]={ list=false, + name="IsVaalGem", + refTo="", type="Bool", - name="", - refTo="" + width=70 }, - [39]={ - width=80, + [9]={ list=false, + name="Description", + refTo="", type="String", - name="Tier", - refTo="" - }, - [6]={ - width=150, - list=false, - type="Key", - name="Stat2", - refTo="Stats" - }, - [36]={ - width=60, - list=false, - type="Bool", - name="IsEssence", - refTo="" - }, - [34]={ - width=120, - list=true, - type="Int", - name="GenerationWeightValues", - refTo="Tags" - }, - [5]={ - width=150, - list=false, - type="Key", - name="Stat1", - refTo="Stats" - }, - [3]={ - width=150, - list=false, - type="Key", - name="Type", - refTo="ModType" + width=150 }, - [30]={ - width=150, + [10]={ list=false, + name="HungryLoopMod", + refTo="Mods", type="Key", - name="Stat5", - refTo="Stats" + width=250 }, - [4]={ - width=60, + [11]={ list=false, - type="Int", - name="Level", - refTo="" - }, - [26]={ - width=100, - list=true, + name="SecondaryGrantedEffect", + refTo="GrantedEffects", type="Key", - name="", - refTo="" - }, - [29]={ - width=60, - list=false, - type="Interval", - name="Stat5Value", - refTo="" - }, - [22]={ - width=150, + width=150 + } + }, + SkillSurgeEffects={ + }, + SkillTotemVariations={ + [1]={ list=false, - type="Key", - name="GrantedEffect", - refTo="GrantedEffectsPerLevel" + name="SkillTotem", + refTo="SkillTotems", + type="Enum", + width=60 }, - [25]={ - width=150, + [2]={ list=false, - type="String", - name="Daemon", - refTo="" - }, - [21]={ - width=150, - list=true, - type="Key", - name="Tags", - refTo="Tags" - }, - [18]={ - width=150, - list=true, + name="Variation", + refTo="", type="Int", - name="SpawnWeights", - refTo="Tags" - }, - [7]={ - width=150, - list=false, - type="Key", - name="Stat3", - refTo="Stats" + width=60 }, - [42]={ - width=80, + [3]={ list=false, + name="MonsterVariety", + refTo="MonsterVarieties", type="Key", - name="", - refTo="" - }, - [15]={ - width=70, - list=false, - type="Interval", - name="Stat3Value", - refTo="" - }, - [13]={ - width=70, - list=false, - type="Interval", - name="Stat1Value", - refTo="" + width=390 } }, - SpecialRooms={ + SkillTotems={ }, - BuffGroups={ + SkillTrapVariations={ }, - ShopPaymentPackageProxy={ + SoundEffects={ }, - SynthesisRewardTypes={ + SpawnAdditionalChestsOrClusters={ }, - CooldownBypassTypes={ + SpawnObject={ }, - AdditionalLifeScaling={ + SpecialRooms={ }, - IncursionUniqueUpgrades={ + SpecialTiles={ }, - MonsterProjectileAttack={ + StartingPassiveSkills={ }, - NPCShopAdditionalItems={ + StatDescriptionFunctions={ }, - DefaultMonsterStats={ - [14]={ - width=70, + StatInterpolationTypes={ + }, + StatSemantics={ + }, + Stats={ + [1]={ list=false, - type="Int", - name="", - refTo="" + name="Id", + refTo="", + type="String", + width=310 }, [2]={ - width=70, list=false, - type="Float", - name="Damage", - refTo="" + name="", + refTo="", + type="Bool", + width=50 }, - [5]={ - width=70, + [3]={ + list=false, + name="Local", + refTo="", + type="Bool", + width=50 + }, + [4]={ list=false, - type="Int", - name="MonsterLife", - refTo="" + name="Proxied", + refTo="", + type="Bool", + width=50 }, - [12]={ - width=70, + [5]={ list=false, - type="Float", name="", - refTo="" + refTo="", + type="Enum", + width=50 }, - [11]={ - width=70, + [6]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Bool", + width=50 }, - [4]={ - width=70, + [7]={ list=false, - type="Int", - name="Accuracy", - refTo="" + name="", + refTo="", + type="String", + width=160 }, - [10]={ - width=70, + [8]={ list=false, - type="Float", name="", - refTo="" + refTo="", + type="Bool", + width=50 }, [9]={ - width=70, list=false, - type="Int", - name="", - refTo="" + name="Virtual", + refTo="", + type="Bool", + width=50 }, - [8]={ - width=70, + [10]={ list=false, - type="Int", - name="", - refTo="" + name="Main Hand Stat", + refTo="Stats", + type="Enum", + width=150 }, - [3]={ - width=70, + [11]={ list=false, - type="Int", - name="Evasion", - refTo="" + name="Off Hand Stat", + refTo="Stats", + type="Enum", + width=150 }, - [7]={ - width=70, + [12]={ list=false, - type="Int", - name="MinionLife", - refTo="" + name="", + refTo="", + type="Bool", + width=50 }, - [1]={ - width=50, + [13]={ list=false, + name="Hash", + refTo="", + type="UInt", + width=80 + }, + [14]={ + list=true, + name="Skills", + refTo="", type="String", - name="Level", - refTo="" + width=150 }, - [13]={ - width=70, + [15]={ list=false, - type="Float", name="", - refTo="" + refTo="", + type="Key", + width=110 }, - [6]={ - width=70, + [16]={ list=false, - type="Int", name="", - refTo="" + refTo="", + type="Bool", + width=50 } }, - MapSeriesTiers={ - }, - CurrencyStashTabLayout={ - }, - MapConnections={ - }, - ShaperMemoryFragments={ - }, - AtlasNodeDefinition={ - }, - RecipeUnlockObjects={ - }, - CustomLeagueMods={ + StrDexIntMissionExtraRequirement={ }, - SynthesisAreas={ + StrDexIntMissions={ }, - MonsterPackEntries={ + Strongboxes={ }, - SynthesisGlobalMods={ + SuicideExplosion={ }, - DelveFeatureRewards={ + SummonedSpecificBarrels={ }, - DivinationCardStashTabLayout={ + SummonedSpecificMonsters={ }, - MapPins={ + SummonedSpecificMonstersOnDeath={ }, - RaceAreas={ + SuperShaperInfluence={ }, - BetrayalJobs={ + SupporterPackSets={ }, - Prophecies={ + SurgeTypes={ }, - ItemisedVisualEffect={ + Synthesis={ }, - InvasionMonsterRestrictions={ + SynthesisAreaSize={ }, - CraftingBenchCustomActions={ + SynthesisAreas={ }, - BackendErrors={ + SynthesisBonuses={ }, - Commands={ + SynthesisBrackets={ }, - PathOfEndurance={ + SynthesisFragmentDialogue={ }, - DescentStarterChest={ + SynthesisGlobalMods={ }, - LabyrinthSecretEffects={ + SynthesisMonsterExperiencePerLevel={ }, - CharacterStartStateSet={ + SynthesisRewardCategories={ }, - PerandusChests={ + SynthesisRewardTypes={ }, - Wordlists={ + TableMonsterSpawners={ }, - ClientStrings={ - [2]={ - width=270, + Tags={ + [1]={ list=false, + name="Id", + refTo="", type="String", - name="Text", - refTo="" + width=150 }, - [5]={ - width=150, + [2]={ list=false, - type="String", - name="", - refTo="" + name="Hash", + refTo="", + type="UInt", + width=150 }, [3]={ - width=150, - list=false, - type="String", - name="", - refTo="" - }, - [1]={ - width=180, list=false, + name="DisplayText", + refTo="", type="String", - name="Id", - refTo="" - }, - [4]={ - width=90, - list=false, - type="UInt", - name="Hash", - refTo="" + width=210 } }, - EndlessLedgeChests={ - }, - NPCShop={ - }, - IncursionChests={ + TalismanMonsterMods={ }, - GemTypes={ + TalismanPacks={ }, - SynthesisRewardCategories={ + Talismans={ }, - DelveCraftingTags={ + TerrainPlugins={ }, - LeagueTrophy={ + Tips={ }, - ShaperOrbs={ + Topologies={ }, - HarbingerMaps={ + TormentSpirits={ }, - SuperShaperInfluence={ + TreasureHunterMissions={ }, - ExtraTerrainFeatures={ + TriggerSpawners={ }, - StatDescriptionFunctions={ + Tutorial={ }, - SigilDisplay={ + UITalkCategories={ }, - FlavourText={ + UITalkText={ }, - SafehouseCraftingSpree={ + UniqueChests={ }, - MonsterBonuses={ + UniqueFragments={ }, - BetrayalDialogue={ + UniqueJewelLimits={ }, - MonsterMapBossDifficulty={ + UniqueMapInfo={ }, - PerandusDaemons={ + UniqueMaps={ }, - GeometryProjectiles={ + UniqueSetNames={ }, - BeyondDemons={ + UniqueStashLayout={ }, - ExperienceLevels={ + UniqueStashTypes={ }, VoteState={ }, - CharacterStartStates={ - }, - TalismanPacks={ - }, - FixedMissions={ - }, - NPCAudio={ - }, - LabyrinthSecrets={ + VoteType={ }, - RecipeUnlockDisplay={ + WarbandsGraph={ }, - BuffMergeModes={ + WarbandsMapGraph={ }, - UniqueFragments={ + WarbandsPackMonsters={ }, - SurgeTypes={ + WarbandsPackNumbers={ }, - LeagueFlags={ + WeaponArmourCommon={ }, - WarbandsGraph={ + WeaponClasses={ }, - UITalkText={ + WeaponDamageScaling={ }, - AbyssRegions={ + WeaponImpactSoundData={ }, - Quest={ + WeaponSoundTypes={ }, - Shrines={ + WeaponTypes={ + [1]={ + list=false, + name="BaseItemType", + refTo="BaseItemTypes", + type="Key", + width=490 + }, + [2]={ + list=false, + name="CritChance", + refTo="", + type="Int", + width=70 + }, + [3]={ + list=false, + name="Speed", + refTo="", + type="Int", + width=50 + }, + [4]={ + list=false, + name="DamageMin", + refTo="", + type="Int", + width=70 + }, + [5]={ + list=false, + name="DamageMax", + refTo="", + type="Int", + width=80 + }, + [6]={ + list=false, + name="Range", + refTo="", + type="Int", + width=50 + }, + [7]={ + list=false, + name="", + refTo="", + type="Int", + width=50 + } }, - MapStashTabLayout={ + Wordlists={ }, - MonsterStatsFromMapStats={ + Words={ }, - LabyrinthTrials={ + WorldAreas={ }, - EventSeasonRewards={ + ZanaQuests={ } } \ No newline at end of file diff --git a/Modules/CalcActiveSkill.lua b/Modules/CalcActiveSkill.lua index f1c40866a..b2756b885 100644 --- a/Modules/CalcActiveSkill.lua +++ b/Modules/CalcActiveSkill.lua @@ -51,8 +51,7 @@ end -- Merge skill modifiers with given mod list function calcs.mergeSkillInstanceMods(env, modList, skillEffect, extraStats) calcLib.validateGemLevel(skillEffect) - local grantedEffect = skillEffect.grantedEffect - modList:AddList(grantedEffect.baseMods) + local grantedEffect = skillEffect.grantedEffect local stats = calcLib.buildSkillInstanceStats(skillEffect, grantedEffect) if extraStats and extraStats[1] then for _, stat in pairs(extraStats) do @@ -67,6 +66,7 @@ function calcs.mergeSkillInstanceMods(env, modList, skillEffect, extraStats) end end end + modList:AddList(grantedEffect.baseMods) end -- Create an active skill using the given active gem and list of support gems @@ -86,7 +86,7 @@ function calcs.createActiveSkill(activeEffect, supportList, actor, socketGroup, -- Initialise skill types activeSkill.skillTypes = copyTable(activeGrantedEffect.skillTypes) - if activeEffect.grantedEffect.minionSkillTypes then + if activeGrantedEffect.minionSkillTypes then activeSkill.minionSkillTypes = copyTable(activeGrantedEffect.minionSkillTypes) end diff --git a/Modules/CalcTools.lua b/Modules/CalcTools.lua index 0a191bca7..67568a84e 100644 --- a/Modules/CalcTools.lua +++ b/Modules/CalcTools.lua @@ -58,19 +58,10 @@ function calcLib.validateGemLevel(gemInstance) end end --- Check if given support skill can support the given skill types -function calcLib.canGrantedEffectSupportTypes(grantedEffect, skillTypes) - for _, skillType in pairs(grantedEffect.excludeSkillTypes) do - if skillTypes[skillType] then - return false - end - end - if not grantedEffect.requireSkillTypes[1] then - return true - end - -- Check for required types using a boolean postfix expression +-- Evaluate a skill type postfix expression +function calcLib.doesTypeExpressionMatch(checkTypes, skillTypes, minionTypes) local stack = { } - for _, skillType in pairs(grantedEffect.requireSkillTypes) do + for _, skillType in pairs(checkTypes) do if skillType == SkillType.OR then local other = t_remove(stack) stack[#stack] = stack[#stack] or other @@ -80,7 +71,7 @@ function calcLib.canGrantedEffectSupportTypes(grantedEffect, skillTypes) elseif skillType == SkillType.NOT then stack[#stack] = not stack[#stack] else - t_insert(stack, skillTypes[skillType] == true) + t_insert(stack, skillTypes[skillType] or (minionTypes and minionTypes[skillType]) or false) end end for _, val in ipairs(stack) do @@ -93,7 +84,7 @@ end -- Check if given support skill can support the given active skill function calcLib.canGrantedEffectSupportActiveSkill(grantedEffect, activeSkill) - if grantedEffect.unsupported then + if grantedEffect.unsupported or activeSkill.activeEffect.grantedEffect.cannotBeSupported then return false end if grantedEffect.supportGemsOnly and not activeSkill.activeEffect.gemData then @@ -102,10 +93,10 @@ function calcLib.canGrantedEffectSupportActiveSkill(grantedEffect, activeSkill) if activeSkill.summonSkill then return calcLib.canGrantedEffectSupportActiveSkill(grantedEffect, activeSkill.summonSkill) end - if activeSkill.minionSkillTypes and calcLib.canGrantedEffectSupportTypes(grantedEffect, activeSkill.minionSkillTypes) then - return true + if grantedEffect.excludeSkillTypes[1] and calcLib.doesTypeExpressionMatch(grantedEffect.excludeSkillTypes, activeSkill.skillTypes) then + return false end - return calcLib.canGrantedEffectSupportTypes(grantedEffect, activeSkill.skillTypes) + return not grantedEffect.requireSkillTypes[1] or calcLib.doesTypeExpressionMatch(grantedEffect.requireSkillTypes, activeSkill.skillTypes, not grantedEffect.ignoreMinionTypes and activeSkill.minionSkillTypes) end -- Check if given gem is of the given type ("all", "strength", "melee", etc) diff --git a/Modules/Common.lua b/Modules/Common.lua index bac186147..34ebcba00 100644 --- a/Modules/Common.lua +++ b/Modules/Common.lua @@ -293,7 +293,13 @@ function writeLuaTable(out, t, indent) if indent then out:write('\n') end + local keyList = { } for k, v in pairs(t) do + t_insert(keyList, k) + end + table.sort(keyList, function(a,b) if type(a) == type(b) then return a < b else return type(a) < type(b) end end) + for i, k in ipairs(keyList) do + local v = t[k] if indent then out:write(string.rep("\t", indent)) end @@ -315,7 +321,7 @@ function writeLuaTable(out, t, indent) else out:write(tostring(v)) end - if next(t, k) ~= nil then + if i < #keyList then out:write(',') end if indent then diff --git a/Modules/Main.lua b/Modules/Main.lua index c77b55ffb..12a73c769 100644 --- a/Modules/Main.lua +++ b/Modules/Main.lua @@ -408,6 +408,7 @@ function main:LoadSettings() self:SetMode(node.attrib.mode, unpack(args)) elseif node.elem == "Accounts" then self.lastAccountName = node.attrib.lastAccountName + self.lastRealm = node.attrib.lastRealm for _, child in ipairs(node) do if child.elem == "Account" then self.gameAccounts[child.attrib.accountName] = { @@ -480,7 +481,7 @@ function main:SaveSettings() t_insert(mode, child) end t_insert(setXML, mode) - local accounts = { elem = "Accounts", attrib = { lastAccountName = self.lastAccountName } } + local accounts = { elem = "Accounts", attrib = { lastAccountName = self.lastAccountName, lastRealm = self.lastRealm } } for accountName, account in pairs(self.gameAccounts) do t_insert(accounts, { elem = "Account", attrib = { accountName = accountName, sessionID = account.sessionID } }) end diff --git a/changelog.txt b/changelog.txt index 2d72b1ccb..526a085f8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +VERSION[1.4.136][2019/04/07] + * You can now select the realm (PC/Xbox/PS4) when importing characters + * Updated item mods and skill gems to account for changes in recent patches + * Fixed issue preventing Icestorm's duration from scaling from Intelligence VERSION[1.4.135][2019/03/14] * Fixed crafted mods on imported items not being recognised * Storm Call now correctly shows DPS instead of just average damage diff --git a/manifest.xml b/manifest.xml index 20b22b86e..3883f6070 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,13 +1,13 @@ - + - + @@ -21,7 +21,7 @@ - + @@ -55,7 +55,7 @@ - + @@ -66,12 +66,12 @@ - - + + - + @@ -81,7 +81,7 @@ - + @@ -109,13 +109,13 @@ - + - + @@ -150,17 +150,17 @@ - + - - - - - + + + + + - + @@ -181,16 +181,16 @@ - - - - - - - - - - + + + + + + + + + +