From b323b2c19a52135eaf7151f5a342a7d4df35599a Mon Sep 17 00:00:00 2001 From: Openarl Date: Fri, 1 Jun 2018 22:06:12 +1000 Subject: [PATCH] Gem backend changes for 3.3 --- CHANGELOG.md | 3 + Classes/CalcsTab.lua | 14 +- Classes/GemSelectControl.lua | 168 +- Classes/ImportTab.lua | 16 +- Classes/Item.lua | 2 +- Classes/ItemsTab.lua | 6 +- Classes/SkillsTab.lua | 350 +-- Data/2_6/Gems.lua | 4097 ++++++++++++++++++++++++++++++ Data/2_6/ModCache.lua | 2 +- Data/2_6/Skills/act_dex.lua | 752 ------ Data/2_6/Skills/act_int.lua | 892 ------- Data/2_6/Skills/act_str.lua | 515 ---- Data/2_6/Skills/other.lua | 28 - Data/2_6/Skills/sup_dex.lua | 280 --- Data/2_6/Skills/sup_int.lua | 256 -- Data/2_6/Skills/sup_str.lua | 273 -- Data/3_0/Gems.lua | 4531 ++++++++++++++++++++++++++++++++++ Data/3_0/Misc.lua | 2 +- Data/3_0/ModCache.lua | 2 +- Data/3_0/Skills/act_dex.lua | 2792 ++++++++++----------- Data/3_0/Skills/act_int.lua | 3523 +++++++++++++------------- Data/3_0/Skills/act_str.lua | 1399 +++++------ Data/3_0/Skills/other.lua | 50 +- Data/3_0/Skills/sup_dex.lua | 1023 ++++---- Data/3_0/Skills/sup_int.lua | 905 +++---- Data/3_0/Skills/sup_str.lua | 656 ++--- Export/skills.lua | 58 +- Modules/Build.lua | 42 +- Modules/CalcActiveSkill.lua | 160 +- Modules/CalcOffence-2_6.lua | 2 +- Modules/CalcOffence-3_0.lua | 2 +- Modules/CalcPerform.lua | 4 +- Modules/CalcSetup.lua | 128 +- Modules/CalcTools.lua | 50 +- Modules/Calcs.lua | 14 +- Modules/Data.lua | 20 +- Modules/ModParser-2_6.lua | 26 +- Modules/ModParser-3_0.lua | 30 +- changelog.txt | 2 + manifest.xml | 74 +- 40 files changed, 14308 insertions(+), 8841 deletions(-) create mode 100644 Data/2_6/Gems.lua create mode 100644 Data/3_0/Gems.lua diff --git a/CHANGELOG.md b/CHANGELOG.md index f89c3de8..9ea0b5e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 1.4.92 - 2018/06/01 + * + ### 1.4.91 - 2018/06/01 * Added the missing limit to Pure Talent * Slavedriver's hand no longer incorrectly converts Attack Speed modifiers to Trap Throwing Speed for Attack traps diff --git a/Classes/CalcsTab.lua b/Classes/CalcsTab.lua index 7526cc08..1b63ef81 100644 --- a/Classes/CalcsTab.lua +++ b/Classes/CalcsTab.lua @@ -63,8 +63,8 @@ local CalcsTabClass = common.NewClass("CalcsTab", "UndoHandler", "ControlHost", { label = "Skill Part", playerFlag = "multiPart", { controlName = "mainSkillPart", control = common.New("DropDownControl", nil, 0, 0, 130, 16, nil, function(index, value) local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number] - local srcGem = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeGem.srcGem - srcGem.skillPartCalcs = index + local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance + srcInstance.skillPartCalcs = index self:AddUndoState() self.build.buildFlag = true end) @@ -78,11 +78,11 @@ local CalcsTabClass = common.NewClass("CalcsTab", "UndoHandler", "ControlHost", { label = "Minion", flag = "minion", { controlName = "mainSkillMinion", control = common.New("DropDownControl", nil, 0, 0, 160, 16, nil, function(index, value) local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number] - local srcGem = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeGem.srcGem + local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance if value.itemSetId then - srcGem.skillMinionItemSetCalcs = value.itemSetId + srcInstance.skillMinionItemSetCalcs = value.itemSetId else - srcGem.skillMinionCalcs = value.minionId + srcInstance.skillMinionCalcs = value.minionId end self:AddUndoState() self.build.buildFlag = true @@ -96,8 +96,8 @@ local CalcsTabClass = common.NewClass("CalcsTab", "UndoHandler", "ControlHost", { label = "Minion Skill", flag = "haveMinion", { controlName = "mainSkillMinionSkill", control = common.New("DropDownControl", nil, 0, 0, 200, 16, nil, function(index, value) local mainSocketGroup = self.build.skillsTab.socketGroupList[self.input.skill_number] - local srcGem = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeGem.srcGem - srcGem.skillMinionSkillCalcs = index + local srcInstance = mainSocketGroup.displaySkillListCalcs[mainSocketGroup.mainActiveSkillCalcs].activeEffect.srcInstance + srcInstance.skillMinionSkillCalcs = index self:AddUndoState() self.build.buildFlag = true end) diff --git a/Classes/GemSelectControl.lua b/Classes/GemSelectControl.lua index 16d98acf..96c474ef 100644 --- a/Classes/GemSelectControl.lua +++ b/Classes/GemSelectControl.lua @@ -26,6 +26,7 @@ local GemSelectClass = common.NewClass("GemSelectControl", "EditControl", functi return self.dropped and self.controls.scrollBar.enabled end self.skillsTab = skillsTab + self.gems = skillsTab.build.data.gems self.index = index self.gemChangeFunc = changeFunc self.list = { } @@ -44,7 +45,6 @@ function GemSelectClass:BuildList(buf) self.controls.scrollBar.offset = 0 wipeTable(self.list) self.searchStr = buf - local gems = self.skillsTab.build.data.gems if self.searchStr:match("%S") then -- Search for gem name using increasingly broad search patterns local patternList = { @@ -56,15 +56,15 @@ function GemSelectClass:BuildList(buf) local added = { } for i, pattern in ipairs(patternList) do local matchList = { } - for name, grantedEffect in pairs(gems) do - if not added[name] and (" "..name:lower()):match(pattern) then - t_insert(matchList, name) - added[name] = true + for gemId, gemData in pairs(self.gems) do + if not added[gemId] and (" "..gemData.name:lower()):match(pattern) then + t_insert(matchList, gemId) + added[gemId] = true end end self:SortGemList(matchList) - for _, name in ipairs(matchList) do - t_insert(self.list, name) + for _, gemId in ipairs(matchList) do + t_insert(self.list, gemId) end end local tagName = self.searchStr:match("^%s*(%a+)%s*$") @@ -73,20 +73,20 @@ function GemSelectClass:BuildList(buf) if tagName == "active" then tagName = "active_skill" end - for name, grantedEffect in pairs(gems) do - if not added[name] and grantedEffect.gemTags[tagName:lower()] == true then - t_insert(matchList, name) - added[name] = true + for gemId, gemData in pairs(self.gems) do + if not added[gemId] and gemData.tags[tagName:lower()] == true then + t_insert(matchList, gemId) + added[gemId] = true end end self:SortGemList(matchList) - for _, name in ipairs(matchList) do - t_insert(self.list, name) + for _, gemId in ipairs(matchList) do + t_insert(self.list, gemId) end end else - for name, grantedEffect in pairs(gems) do - t_insert(self.list, name) + for gemId, gemData in pairs(self.gems) do + t_insert(self.list, gemId) end self:SortGemList(self.list) end @@ -100,13 +100,13 @@ end function GemSelectClass:UpdateSortCache() local sortCache = self.sortCache - if sortCache and sortCache.socketGroup == self.skillsTab.displayGroup and sortCache.gem == self.skillsTab.displayGroup.gemList[self.index] and + if sortCache and sortCache.socketGroup == self.skillsTab.displayGroup and sortCache.gemInstance == self.skillsTab.displayGroup.gemList[self.index] and sortCache.outputRevision == self.skillsTab.build.outputRevision and sortCache.defaultLevel == self.skillsTab.defaultGemLevel and sortCache.defaultQuality == self.skillsTab.defaultGemQuality then return end sortCache = { socketGroup = self.skillsTab.displayGroup, - gem = self.skillsTab.displayGroup.gemList[self.index], + gemInstance = self.skillsTab.displayGroup.gemList[self.index], outputRevision = self.skillsTab.build.outputRevision, defaultLevel = self.skillsTab.defaultGemLevel, defaultQuality = self.skillsTab.defaultGemQuality, @@ -115,14 +115,12 @@ function GemSelectClass:UpdateSortCache() dpsColor = { }, } self.sortCache = sortCache - local gems = self.skillsTab.build.data.gems if self.skillsTab.displayGroup.displaySkillList and self.skillsTab.displayGroup.displaySkillList[1] then - for name, grantedEffect in pairs(gems) do - if grantedEffect.support then - local gem = { grantedEffect = grantedEffect } + for gemId, gemData in pairs(self.gems) do + if gemData.grantedEffect.support then for _, activeSkill in ipairs(self.skillsTab.displayGroup.displaySkillList) do - if calcLib.gemCanSupport(gem, activeSkill) then - sortCache.canSupport[name] = true + if calcLib.canGrantedEffectSupportActiveSkill(gemData.grantedEffect, activeSkill) then + sortCache.canSupport[gemId] = true break end end @@ -131,8 +129,9 @@ function GemSelectClass:UpdateSortCache() end local calcFunc, calcBase = self.skillsTab.build.calcsTab:GetMiscCalculator(self.build) local baseDPS = calcBase.Minion and calcBase.Minion.CombinedDPS or calcBase.CombinedDPS - for name, grantedEffect in pairs(gems) do - if sortCache.canSupport[name] or grantedEffect.hasGlobalEffect then + for gemId, gemData in pairs(self.gems) do + sortCache.dps[gemId] = baseDPS + if sortCache.canSupport[gemId] or gemData.grantedEffect.hasGlobalEffect then local gemList = self.skillsTab.displayGroup.gemList local oldGem if gemList[self.index] then @@ -140,31 +139,30 @@ function GemSelectClass:UpdateSortCache() else gemList[self.index] = { level = self.skillsTab.defaultGemLevel or 20, quality = self.skillsTab.defaultGemQuality or 0, enabled = true } end - local gem = gemList[self.index] - if gem.grantedEffect and grantedEffect.defaultLevel ~= gem.grantedEffect.defaultLevel then - gem.level = self.skillsTab.defaultGemLevel or 20 + local gemInstance = gemList[self.index] + if gemInstance.gemData and gemInstance.gemData.defaultLevel ~= gemData.defaultLevel then + gemInstance.level = self.skillsTab.defaultGemLevel or 20 end - gem.grantedEffect = grantedEffect - if not grantedEffect.levels[gem.level] then - gem.level = grantedEffect.defaultLevel + gemInstance.gemData = gemData + if not gemData.grantedEffect.levels[gemInstance.level] then + gemInstance.level = gemData.defaultLevel end local output = calcFunc() if oldGem then - gem.grantedEffect = oldGem.grantedEffect - gem.level = oldGem.level + gemInstance.gemData = oldGem.gemData + gemInstance.level = oldGem.level else gemList[self.index] = nil end - sortCache.dps[name] = output.Minion and output.Minion.CombinedDPS or output.CombinedDPS - else - sortCache.dps[name] = baseDPS + sortCache.dps[gemId] = m_max(sortCache.dps[gemId], output.Minion and output.Minion.CombinedDPS or output.CombinedDPS) + end - if sortCache.dps[name] > baseDPS then - sortCache.dpsColor[name] = "^x228866" - elseif sortCache.dps[name] < baseDPS then - sortCache.dpsColor[name] = "^xFF4422" + if sortCache.dps[gemId] > baseDPS then + sortCache.dpsColor[gemId] = "^x228866" + elseif sortCache.dps[gemId] < baseDPS then + sortCache.dpsColor[gemId] = "^xFF4422" else - sortCache.dpsColor[name] = "^xFFFF66" + sortCache.dpsColor[gemId] = "^xFFFF66" end end end @@ -185,16 +183,17 @@ function GemSelectClass:SortGemList(gemList) end function GemSelectClass:UpdateGem(setText, addUndo) - local gemName = self.list[m_max(self.selIndex, 1)] - if self.buf:match("%S") and self.skillsTab.build.data.gems[gemName] then - self.gemName = gemName + local gemId = self.list[m_max(self.selIndex, 1)] + if self.buf:match("%S") and self.gems[gemId] then + self.gemId = gemId else - self.gemName = "" + self.gemId = nil end + self.gemName = self.gemId and self.gems[self.gemId].name or "" if setText then self:SetText(self.gemName) end - self.gemChangeFunc(self.gemName, addUndo and self.gemName ~= self.initialBuf) + self.gemChangeFunc(self.gemId, addUndo and self.gemName ~= self.initialBuf) end function GemSelectClass:ScrollSelIntoView() @@ -249,7 +248,7 @@ function GemSelectClass:Draw(viewPort) SetDrawLayer(nil, 5) local cursorX, cursorY = GetCursorPos() self.hoverSel = mOverComp == "DROP" and math.floor((cursorY - y - height + scrollBar.offset) / (height - 4)) + 1 - if self.hoverSel and not self.skillsTab.build.data.gems[self.list[self.hoverSel]] then + if self.hoverSel and not self.gems[self.list[self.hoverSel]] then self.hoverSel = nil end SetViewport(x + 2, y + height + 2, width - 4, dropHeight) @@ -262,29 +261,29 @@ function GemSelectClass:Draw(viewPort) DrawImage(nil, 0, y, width - 4, height - 4) end SetDrawColor(1, 1, 1) - local grantedEffect = self.skillsTab.build.data.gems[self.list[index]] - if grantedEffect then - if grantedEffect.color == 1 then + local gemId = self.list[index] + local gemData = self.gems[gemId] + if gemData then + if gemData.grantedEffect.color == 1 then SetDrawColor(colorCodes.STRENGTH) - elseif grantedEffect.color == 2 then + elseif gemData.grantedEffect.color == 2 then SetDrawColor(colorCodes.DEXTERITY) - elseif grantedEffect.color == 3 then + elseif gemData.grantedEffect.color == 3 then SetDrawColor(colorCodes.INTELLIGENCE) end end - DrawString(0, y, "LEFT", height - 4, "VAR", self.list[index]) - if grantedEffect then - if grantedEffect.support and self.skillsTab.displayGroup.displaySkillList then - local gem = { grantedEffect = grantedEffect } + if gemData then + DrawString(0, y, "LEFT", height - 4, "VAR", gemData.name) + if gemData.grantedEffect.support and self.skillsTab.displayGroup.displaySkillList then for _, activeSkill in ipairs(self.skillsTab.displayGroup.displaySkillList) do - if calcLib.gemCanSupport(gem, activeSkill) then - SetDrawColor(self.sortCache.dpsColor[self.list[index]]) + if calcLib.canGrantedEffectSupportActiveSkill(gemData.grantedEffect, activeSkill) then + SetDrawColor(self.sortCache.dpsColor[gemId]) main:DrawCheckMark(width - 4 - height / 2 - (scrollBar.enabled and 18 or 0), y + (height - 4) / 2, (height - 4) * 0.8) break end end - elseif grantedEffect.hasGlobalEffect then - SetDrawColor(self.sortCache.dpsColor[self.list[index]]) + elseif gemData.grantedEffect.hasGlobalEffect then + SetDrawColor(self.sortCache.dpsColor[gemId]) DrawString(width - 4 - height / 2 - (scrollBar.enabled and 18 or 0), y - 2, "CENTER_X", height, "VAR", "+") end end @@ -296,25 +295,25 @@ function GemSelectClass:Draw(viewPort) if calcFunc then self.tooltip:Clear() local gemList = self.skillsTab.displayGroup.gemList - local grantedEffect = self.skillsTab.build.data.gems[self.list[self.hoverSel]] + local gemData = self.gems[self.list[self.hoverSel]] local oldGem if gemList[self.index] then oldGem = copyTable(gemList[self.index], true) else gemList[self.index] = { level = self.skillsTab.defaultGemLevel or 20, quality = self.skillsTab.defaultGemQuality or 0, enabled = true } end - local gem = gemList[self.index] - if gem.grantedEffect and grantedEffect.defaultLevel ~= gem.grantedEffect.defaultLevel then - gem.level = self.skillsTab.defaultGemLevel or 20 + local gemInstance = gemList[self.index] + if gemInstance.gemData and gemInstance.gemData.defaultLevel ~= gemData.defaultLevel then + gemData.level = self.skillsTab.defaultGemLevel or 20 end - gem.grantedEffect = grantedEffect - if not gem.grantedEffect.levels[gem.level] then - gem.level = gem.grantedEffect.defaultLevel + gemInstance.gemData = gemData + if not gemData.grantedEffect.levels[gemInstance.level] then + gemInstance.level = gemData.defaultLevel end local output = calcFunc() if oldGem then - gem.grantedEffect = oldGem.grantedEffect - gem.level = oldGem.level + gemInstance.gemData = oldGem.gemData + gemInstance.level = oldGem.level else gemList[self.index] = nil end @@ -333,27 +332,28 @@ function GemSelectClass:Draw(viewPort) if hoverControl and hoverControl._className == "GemSelectControl" then local thisGem = self.skillsTab.displayGroup.gemList[self.index] local hoverGem = self.skillsTab.displayGroup.gemList[hoverControl.index] - if thisGem and hoverGem and thisGem.enabled and hoverGem.enabled and thisGem.grantedEffect and hoverGem.grantedEffect and - ((hoverGem.grantedEffect.support and not thisGem.grantedEffect.support and hoverGem.displayGem and hoverGem.displayGem.isSupporting[thisGem.grantedEffect.name]) or - (thisGem.grantedEffect.support and not hoverGem.grantedEffect.support and thisGem.displayGem and thisGem.displayGem.isSupporting[hoverGem.grantedEffect.name])) then + if thisGem and hoverGem and thisGem.enabled and hoverGem.enabled and thisGem.gemData and hoverGem.gemData and + ((hoverGem.gemData.grantedEffect.support and not thisGem.gemData.grantedEffect.support and hoverGem.displayEffect and hoverGem.displayEffect.isSupporting[thisGem]) or + (thisGem.gemData.grantedEffect.support and not hoverGem.gemData.grantedEffect.support and thisGem.displayEffect and thisGem.displayEffect.isSupporting[hoverGem])) then SetDrawColor(0.33, 1, 0.33, 0.25) DrawImage(nil, x, y, width, height) end end if mOver and (self.dropped or not self.skillsTab.selControl) then - local gem = self.skillsTab.displayGroup.gemList[self.index] - if gem and gem.grantedEffect then + local gemInstance = self.skillsTab.displayGroup.gemList[self.index] + if gemInstance and gemInstance.gemData then + local grantedEffect = gemInstance.gemData.grantedEffect SetDrawLayer(nil, 10) self.tooltip:Clear() self.tooltip.center = true self.tooltip.color = colorCodes.GEM - self.tooltip:AddLine(20, colorCodes.GEM..gem.grantedEffect.name) + self.tooltip:AddLine(20, colorCodes.GEM..grantedEffect.name) self.tooltip:AddSeparator(10) - self.tooltip:AddLine(16, "^x7F7F7F"..gem.grantedEffect.gemTagString) + self.tooltip:AddLine(16, "^x7F7F7F"..gemInstance.gemData.tagString) self.tooltip:AddSeparator(10) - self.skillsTab.build:AddRequirementsToTooltip(self.tooltip, gem.reqLevel, gem.reqStr, gem.reqDex, gem.reqInt) - if gem.grantedEffect.description then - local wrap = main:WrapString(gem.grantedEffect.description, 16, m_max(DrawStringWidth(16, "VAR", gem.grantedEffect.gemTagString), 400)) + self.skillsTab.build:AddRequirementsToTooltip(self.tooltip, gemInstance.reqLevel, gemInstance.reqStr, gemInstance.reqDex, gemInstance.reqInt) + if grantedEffect.description then + local wrap = main:WrapString(grantedEffect.description, 16, m_max(DrawStringWidth(16, "VAR", gemInstance.gemData.tagString), 400)) for _, line in ipairs(wrap) do self.tooltip:AddLine(16, colorCodes.GEM..line) end @@ -371,8 +371,8 @@ function GemSelectClass:OnFocusGained() self.selIndex = 0 self:UpdateSortCache() self:BuildList("") - for index, name in pairs(self.list) do - if name == self.buf then + for index, gemId in pairs(self.list) do + if self.gems[gemId].name == self.buf then self.selIndex = index self:ScrollSelIntoView() break @@ -408,10 +408,10 @@ function GemSelectClass:OnKeyDown(key, doubleClick) return end if key == "LEFTBUTTON" then - if self.hoverSel and self.skillsTab.build.data.gems[self.list[self.hoverSel]] then + if self.hoverSel and self.gems[self.list[self.hoverSel]] then self.dropped = false self.selIndex = self.hoverSel - self:SetText(self.list[self.selIndex]) + self:SetText(self.gems[self.list[self.selIndex]].name) self:UpdateGem(false, true) return self end @@ -437,7 +437,7 @@ function GemSelectClass:OnKeyDown(key, doubleClick) elseif key == "DOWN" then if self.selIndex < #self.list and not self.noMatches then self.selIndex = self.selIndex + 1 - self:SetText(self.list[self.selIndex]) + self:SetText(self.gems[self.list[self.selIndex]].name) self:UpdateGem() self:ScrollSelIntoView() end diff --git a/Classes/ImportTab.lua b/Classes/ImportTab.lua index 00d17b01..ca26fc5c 100644 --- a/Classes/ImportTab.lua +++ b/Classes/ImportTab.lua @@ -722,14 +722,14 @@ function ImportTabClass:ImportSocketedItems(item, socketedItems, slotName) self:ImportItem(socketedItem, nil, slotName .. " Abyssal Socket "..abyssalSocketId) abyssalSocketId = abyssalSocketId + 1 else - local gem = { level = 20, quality = 0, enabled = true} - gem.nameSpec = socketedItem.typeLine:gsub(" Support","") - gem.support = socketedItem.support + local gemInstance = { level = 20, quality = 0, enabled = true} + gemInstance.nameSpec = socketedItem.typeLine:gsub(" Support","") + gemInstance.support = socketedItem.support for _, property in pairs(socketedItem.properties) do if property.name == "Level" then - gem.level = tonumber(property.values[1][1]:match("%d+")) + gemInstance.level = tonumber(property.values[1][1]:match("%d+")) elseif property.name == "Quality" then - gem.quality = tonumber(property.values[1][1]:match("%d+")) + gemInstance.quality = tonumber(property.values[1][1]:match("%d+")) end end local groupID = item.sockets[socketedItem.socket + 1].group @@ -738,10 +738,10 @@ function ImportTabClass:ImportSocketedItems(item, socketedItems, slotName) end local socketGroup = itemSocketGroupList[groupID] if not socketedItem.support and socketGroup.gemList[1] and socketGroup.gemList[1].support then - -- If the first gem is a support gem, put the first active gem before it - t_insert(socketGroup.gemList, 1, gem) + -- If the first gemInstance is a support gemInstance, put the first active gemInstance before it + t_insert(socketGroup.gemList, 1, gemInstance) else - t_insert(socketGroup.gemList, gem) + t_insert(socketGroup.gemList, gemInstance) end end end diff --git a/Classes/Item.lua b/Classes/Item.lua index fea28ddd..bc8a112d 100644 --- a/Classes/Item.lua +++ b/Classes/Item.lua @@ -835,7 +835,7 @@ function ItemClass:BuildModList() for _, skill in ipairs(baseList:Sum("LIST", nil, "ExtraSkill")) do if skill.name ~= "Unknown" then t_insert(self.grantedSkills, { - name = skill.name, + skillId = skill.skillId, level = skill.level, noSupports = skill.noSupports, source = self.modSource, diff --git a/Classes/ItemsTab.lua b/Classes/ItemsTab.lua index f98676ee..b3acabd9 100644 --- a/Classes/ItemsTab.lua +++ b/Classes/ItemsTab.lua @@ -1360,9 +1360,9 @@ function ItemsTabClass:EnchantDisplayItem() local skillsUsed = { } if haveSkills then for _, socketGroup in ipairs(self.build.skillsTab.socketGroupList) do - for _, gem in ipairs(socketGroup.gemList) do - if gem.grantedEffect and not gem.grantedEffect.support and enchantments[gem.grantedEffect.name] then - skillsUsed[gem.grantedEffect.name] = true + for _, gemInstance in ipairs(socketGroup.gemList) do + if gemInstance.gemData and not gemInstance.gemData.grantedEffect.support and enchantments[gemInstance.nameSpec] then + skillsUsed[gemInstance.nameSpec] = true end end end diff --git a/Classes/SkillsTab.lua b/Classes/SkillsTab.lua index eaa2fcab..5998d218 100644 --- a/Classes/SkillsTab.lua +++ b/Classes/SkillsTab.lua @@ -145,26 +145,35 @@ function SkillsTabClass:Load(xml, fileName) socketGroup.mainActiveSkillCalcs = tonumber(node.attrib.mainActiveSkillCalcs) or 1 socketGroup.gemList = { } for _, child in ipairs(node) do - local gem = { } - gem.nameSpec = child.attrib.nameSpec or "" - if child.attrib.skillId then - local skill = self.build.data.skills[child.attrib.skillId] - if skill and self.build.data.gems[skill.name] then - gem.nameSpec = skill.name + local gemInstance = { } + gemInstance.nameSpec = child.attrib.nameSpec or "" + if child.attrib.gemId then + local gemData = self.build.data.gems[child.attrib.gemId] + if gemData then + gemInstance.gemId = gemData.id + gemInstance.skillId = gemData.grantedEffectId + gemInstance.nameSpec = gemData.nameSpec + end + elseif child.attrib.skillId then + local grantedEffect = self.build.data.skills[child.attrib.skillId] + if grantedEffect then + gemInstance.gemId = self.build.data.gemForSkill[grantedEffect] + gemInstance.skillId = grantedEffect.id + gemInstance.nameSpec = grantedEffect.name end end - gem.level = tonumber(child.attrib.level) - gem.quality = tonumber(child.attrib.quality) - gem.enabled = not child.attrib.enabled and true or child.attrib.enabled == "true" - gem.skillPart = tonumber(child.attrib.skillPart) - gem.skillPartCalcs = tonumber(child.attrib.skillPartCalcs) - gem.skillMinion = child.attrib.skillMinion - gem.skillMinionCalcs = child.attrib.skillMinionCalcs - gem.skillMinionItemSet = tonumber(child.attrib.skillMinionItemSet) - gem.skillMinionItemSetCalcs = tonumber(child.attrib.skillMinionItemSetCalcs) - gem.skillMinionSkill = tonumber(child.attrib.skillMinionSkill) - gem.skillMinionSkillCalcs = tonumber(child.attrib.skillMinionSkillCalcs) - t_insert(socketGroup.gemList, gem) + gemInstance.level = tonumber(child.attrib.level) + gemInstance.quality = tonumber(child.attrib.quality) + gemInstance.enabled = not child.attrib.enabled and true or child.attrib.enabled == "true" + gemInstance.skillPart = tonumber(child.attrib.skillPart) + gemInstance.skillPartCalcs = tonumber(child.attrib.skillPartCalcs) + gemInstance.skillMinion = child.attrib.skillMinion + gemInstance.skillMinionCalcs = child.attrib.skillMinionCalcs + gemInstance.skillMinionItemSet = tonumber(child.attrib.skillMinionItemSet) + gemInstance.skillMinionItemSetCalcs = tonumber(child.attrib.skillMinionItemSetCalcs) + gemInstance.skillMinionSkill = tonumber(child.attrib.skillMinionSkill) + gemInstance.skillMinionSkillCalcs = tonumber(child.attrib.skillMinionSkillCalcs) + t_insert(socketGroup.gemList, gemInstance) end if node.attrib.skillPart and socketGroup.gemList[1] then socketGroup.gemList[1].skillPart = tonumber(node.attrib.skillPart) @@ -192,21 +201,22 @@ function SkillsTabClass:Save(xml) mainActiveSkill = tostring(socketGroup.mainActiveSkill), mainActiveSkillCalcs = tostring(socketGroup.mainActiveSkillCalcs), } } - for _, gem in ipairs(socketGroup.gemList) do + for _, gemInstance in ipairs(socketGroup.gemList) do t_insert(node, { elem = "Gem", attrib = { - nameSpec = gem.nameSpec, - skillId = gem.skillId, - level = tostring(gem.level), - quality = tostring(gem.quality), - enabled = tostring(gem.enabled), - skillPart = gem.skillPart and tostring(gem.skillPart), - skillPartCalcs = gem.skillPartCalcs and tostring(gem.skillPartCalcs), - skillMinion = gem.skillMinion, - skillMinionCalcs = gem.skillMinionCalcs, - skillMinionItemSet = gem.skillMinionItemSet and tostring(gem.skillMinionItemSet), - skillMinionItemSetCalcs = gem.skillMinionItemSetCalcs and tostring(gem.skillMinionItemSetCalcs), - skillMinionSkill = gem.skillMinionSkill and tostring(gem.skillMinionSkill), - skillMinionSkillCalcs = gem.skillMinionSkillCalcs and tostring(gem.skillMinionSkillCalcs), + nameSpec = gemInstance.nameSpec, + skillId = gemInstance.skillId, + gemId = gemInstance.gemId, + level = tostring(gemInstance.level), + quality = tostring(gemInstance.quality), + enabled = tostring(gemInstance.enabled), + skillPart = gemInstance.skillPart and tostring(gemInstance.skillPart), + skillPartCalcs = gemInstance.skillPartCalcs and tostring(gemInstance.skillPartCalcs), + skillMinion = gemInstance.skillMinion, + skillMinionCalcs = gemInstance.skillMinionCalcs, + skillMinionItemSet = gemInstance.skillMinionItemSet and tostring(gemInstance.skillMinionItemSet), + skillMinionItemSetCalcs = gemInstance.skillMinionItemSetCalcs and tostring(gemInstance.skillMinionItemSetCalcs), + skillMinionSkill = gemInstance.skillMinionSkill and tostring(gemInstance.skillMinionSkill), + skillMinionSkillCalcs = gemInstance.skillMinionSkillCalcs and tostring(gemInstance.skillMinionSkillCalcs), } }) end t_insert(xml, node) @@ -250,8 +260,8 @@ function SkillsTabClass:CopySocketGroup(socketGroup) if socketGroup.slot then skillText = skillText .. "Slot: "..socketGroup.slot.."\r\n" end - for _, gem in ipairs(socketGroup.gemList) do - skillText = skillText .. string.format("%s %d/%d %s\r\n", gem.nameSpec, gem.level, gem.quality, gem.enabled and "" or "DISABLED") + for _, gemInstance in ipairs(socketGroup.gemList) do + skillText = skillText .. string.format("%s %d/%d %s\r\n", gemInstance.nameSpec, gemInstance.level, gemInstance.quality, gemInstance.enabled and "" or "DISABLED") end Copy(skillText) end @@ -292,11 +302,11 @@ function SkillsTabClass:CreateGemSlot(index) t_remove(self.displayGroup.gemList, index) for index2 = index, #self.displayGroup.gemList do -- Update the other gem slot controls - local gem = self.displayGroup.gemList[index2] - self.gemSlots[index2].nameSpec:SetText(gem.nameSpec) - self.gemSlots[index2].level:SetText(gem.level) - self.gemSlots[index2].quality:SetText(gem.quality) - self.gemSlots[index2].enabled.state = gem.enabled + local gemInstance = self.displayGroup.gemList[index2] + self.gemSlots[index2].nameSpec:SetText(gemInstance.nameSpec) + self.gemSlots[index2].level:SetText(gemInstance.level) + self.gemSlots[index2].quality:SetText(gemInstance.quality) + self.gemSlots[index2].enabled.state = gemInstance.enabled end self:AddUndoState() self.build.buildFlag = true @@ -311,26 +321,27 @@ function SkillsTabClass:CreateGemSlot(index) self.controls["gemSlotDelete"..index] = slot.delete -- Gem name specification - slot.nameSpec = common.New("GemSelectControl", {"LEFT",slot.delete,"RIGHT"}, 2, 0, 300, 20, self, index, function(buf, addUndo) + slot.nameSpec = common.New("GemSelectControl", {"LEFT",slot.delete,"RIGHT"}, 2, 0, 300, 20, self, index, function(gemId, addUndo) if not self.displayGroup then return end - local gem = self.displayGroup.gemList[index] - if not gem then - if not buf:match("%S") then + local gemInstance = self.displayGroup.gemList[index] + if not gemInstance then + if not gemId then return end - gem = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } - self.displayGroup.gemList[index] = gem - slot.level:SetText(self.displayGroup.gemList[index].level) - slot.quality:SetText(self.displayGroup.gemList[index].quality) + gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } + self.displayGroup.gemList[index] = gemInstance + slot.level:SetText(gemInstance.level) + slot.quality:SetText(gemInstance.quality) slot.enabled.state = true - elseif buf == gem.nameSpec then + elseif gemId == gemInstance.gemId then return end - gem.nameSpec = buf + gemInstance.gemId = gemId + gemInstance.skillId = nil self:ProcessSocketGroup(self.displayGroup) - slot.level:SetText(tostring(gem.level)) + slot.level:SetText(tostring(gemInstance.level)) if addUndo then self:AddUndoState() end @@ -341,14 +352,14 @@ function SkillsTabClass:CreateGemSlot(index) -- Gem level slot.level = common.New("EditControl", {"LEFT",slot.nameSpec,"RIGHT"}, 2, 0, 60, 20, nil, nil, "%D", 2, function(buf) - local gem = self.displayGroup.gemList[index] - if not gem then - gem = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } - self.displayGroup.gemList[index] = gem - slot.quality:SetText(self.displayGroup.gemList[index].quality) + local gemInstance = self.displayGroup.gemList[index] + if not gemInstance then + gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } + self.displayGroup.gemList[index] = gemInstance + slot.quality:SetText(gemInstance.quality) slot.enabled.state = true end - gem.level = tonumber(buf) or self.displayGroup.gemList[index].defaultLevel or self.defaultGemLevel or 20 + gemInstance.level = tonumber(buf) or self.displayGroup.gemList[index].defaultLevel or self.defaultGemLevel or 20 self:ProcessSocketGroup(self.displayGroup) self:AddUndoState() self.build.buildFlag = true @@ -358,14 +369,14 @@ function SkillsTabClass:CreateGemSlot(index) -- Gem quality slot.quality = common.New("EditControl", {"LEFT",slot.level,"RIGHT"}, 2, 0, 60, 20, nil, nil, "%D", 2, function(buf) - local gem = self.displayGroup.gemList[index] - if not gem then - gem = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } - self.displayGroup.gemList[index] = gem - slot.level:SetText(self.displayGroup.gemList[index].level) + local gemInstance = self.displayGroup.gemList[index] + if not gemInstance then + gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } + self.displayGroup.gemList[index] = gemInstance + slot.level:SetText(gemInstance.level) slot.enabled.state = true end - gem.quality = tonumber(buf) or self.defaultGemQuality or 0 + gemInstance.quality = tonumber(buf) or self.defaultGemQuality or 0 self:ProcessSocketGroup(self.displayGroup) self:AddUndoState() self.build.buildFlag = true @@ -375,14 +386,14 @@ function SkillsTabClass:CreateGemSlot(index) -- Enable gem slot.enabled = common.New("CheckBoxControl", {"LEFT",slot.quality,"RIGHT"}, 18, 0, 20, nil, function(state) - local gem = self.displayGroup.gemList[index] - if not gem then - gem = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } - self.displayGroup.gemList[index] = gem - slot.level:SetText(gem.level) - slot.quality:SetText(gem.quality) + local gemInstance = self.displayGroup.gemList[index] + if not gemInstance then + gemInstance = { nameSpec = "", level = self.defaultGemLevel or 20, quality = self.defaultGemQuality or 0, enabled = true } + self.displayGroup.gemList[index] = gemInstance + slot.level:SetText(gemInstance.level) + slot.quality:SetText(gemInstance.quality) end - gem.enabled = state + gemInstance.enabled = state self:ProcessSocketGroup(self.displayGroup) self:AddUndoState() self.build.buildFlag = true @@ -404,8 +415,8 @@ function SkillsTabClass:CreateGemSlot(index) -- Parser/calculator error message slot.errMsg = common.New("LabelControl", {"LEFT",slot.enabled,"RIGHT"}, 2, 2, 0, 16, function() - local gem = self.displayGroup.gemList[index] - return "^1"..(gem and gem.errMsg or "") + local gemInstance = self.displayGroup.gemList[index] + return "^1"..(gemInstance and gemInstance.errMsg or "") end) self.controls["gemSlotErrMsg"..index] = slot.errMsg end @@ -442,17 +453,17 @@ function SkillsTabClass:FindSkillGem(nameSpec) "^"..nameSpec:gsub(" ",""):gsub("%a", function(a) return ".*".."["..a:upper()..a:lower().."]" end), -- Case insensitive global abbreviation ("ctof" -> "Cold to Fire") } for i, pattern in ipairs(patternList) do - local gemData - for gemName, grantedEffect in pairs(self.build.data.gems) do - if (" "..gemName):match(pattern) then - if gemData then - return "Ambiguous gem name '"..nameSpec.."': matches '"..gemData.name.."', '"..gemName.."'" + local foundGemData + for gemId, gemData in pairs(self.build.data.gems) do + if (" "..gemData.name):match(pattern) then + if foundGemData then + return "Ambiguous gem name '"..nameSpec.."': matches '"..foundGemData.name.."', '"..gemData.name.."'" end - gemData = grantedEffect + foundGemData = gemData end end - if gemData then - return nil, gemData + if foundGemData then + return nil, foundGemData end end return "Unrecognised gem name '"..nameSpec.."'" @@ -461,53 +472,69 @@ end -- Processes the given socket group, filling in information that will be used for display or calculations function SkillsTabClass:ProcessSocketGroup(socketGroup) -- Loop through the skill gem list - for _, gem in ipairs(socketGroup.gemList) do - gem.color = "^8" - gem.nameSpec = gem.nameSpec or "" - local prevDefaultLevel = gem.grantedEffect and gem.grantedEffect.defaultLevel - if gem.nameSpec:match("%S") then - -- Gem name has been specified, try to find the matching skill - if self.build.data.gems[gem.nameSpec] then - gem.errMsg = nil - gem.grantedEffect = self.build.data.gems[gem.nameSpec] - elseif self.build.data.skills[gem.nameSpec] then - gem.errMsg = nil - gem.grantedEffect = self.build.data.skills[gem.nameSpec] + local verData = self.build.data + for _, gemInstance in ipairs(socketGroup.gemList) do + gemInstance.color = "^8" + gemInstance.nameSpec = gemInstance.nameSpec or "" + local prevDefaultLevel = gemInstance.gemData and gemInstance.gemData.defaultLevel + gemInstance.gemData, gemInstance.grantedEffect = nil + if gemInstance.gemId then + -- Specified by gem ID + -- Used for skills granted by skill gems + gemInstance.errMsg = nil + gemInstance.gemData = verData.gems[gemInstance.gemId] + if gemInstance.gemData then + gemInstance.nameSpec = gemInstance.gemData.name + gemInstance.skillId = gemInstance.gemData.grantedEffectId + end + elseif gemInstance.skillId then + -- Specified by skill ID + -- Used for skills granted by items + gemInstance.errMsg = nil + local gemId = verData.gemForSkill[gemInstance.skillId] + if gemId then + gemInstance.gemData = verData.gems[gemId] else - gem.errMsg, gem.grantedEffect = self:FindSkillGem(gem.nameSpec) - if gem.grantedEffect then - gem.nameSpec = gem.grantedEffect.name - end + gemInstance.grantedEffect = verData.skills[gemInstance.skillId] end - gem.skillId = gem.grantedEffect and gem.grantedEffect.id - if gem.grantedEffect and gem.grantedEffect.unsupported then - gem.errMsg = gem.nameSpec.." is not supported yet" - gem.grantedEffect = nil - end - if gem.grantedEffect then - if gem.grantedEffect.color == 1 then - gem.color = colorCodes.STRENGTH - elseif gem.grantedEffect.color == 2 then - gem.color = colorCodes.DEXTERITY - elseif gem.grantedEffect.color == 3 then - gem.color = colorCodes.INTELLIGENCE - else - gem.color = colorCodes.NORMAL - end - if prevDefaultLevel and gem.grantedEffect.defaultLevel ~= prevDefaultLevel then - gem.level = (gem.grantedEffect.defaultLevel == 20) and self.defaultGemLevel or gem.grantedEffect.defaultLevel - gem.defaultLevel = gem.level - end - calcLib.validateGemLevel(gem) - if gem.grantedEffect.gemTags then - gem.reqLevel = gem.grantedEffect.levels[gem.level][1] - gem.reqStr = calcLib.gemStatRequirement(gem.reqLevel, gem.grantedEffect.support, gem.grantedEffect.gemStr) - gem.reqDex = calcLib.gemStatRequirement(gem.reqLevel, gem.grantedEffect.support, gem.grantedEffect.gemDex) - gem.reqInt = calcLib.gemStatRequirement(gem.reqLevel, gem.grantedEffect.support, gem.grantedEffect.gemInt) - end + elseif gemInstance.nameSpec:match("%S") then + -- Specified by gem/skill name, try to match it + -- Used during character import, and to migrate pre-1.4.20 builds + gemInstance.errMsg, gemInstance.gemData = self:FindSkillGem(gemInstance.nameSpec) + gemInstance.gemId = gemInstance.gemData and gemInstance.gemData.id + gemInstance.skillId = gemInstance.gemData and gemInstance.gemData.grantedEffectId + if gemInstance.gemData then + gemInstance.nameSpec = gemInstance.gemData.name end else - gem.errMsg, gem.grantedEffect, gem.skillId = nil + gemInstance.errMsg, gemInstance.gemData, gemInstance.skillId = nil + end + if gemInstance.gemData and gemInstance.gemData.grantedEffect.unsupported then + gemInstance.errMsg = gemInstance.nameSpec.." is not supported yet" + gemInstance.gemData = nil + end + if gemInstance.gemData or gemInstance.grantedEffect then + local grantedEffect = gemInstance.grantedEffect or gemInstance.gemData.grantedEffect + if grantedEffect.color == 1 then + gemInstance.color = colorCodes.STRENGTH + elseif grantedEffect.color == 2 then + gemInstance.color = colorCodes.DEXTERITY + elseif grantedEffect.color == 3 then + gemInstance.color = colorCodes.INTELLIGENCE + else + gemInstance.color = colorCodes.NORMAL + end + if prevDefaultLevel and gemInstance.gemData.defaultLevel ~= prevDefaultLevel then + gemInstance.level = (gemInstance.gemData.defaultLevel == 20) and self.defaultGemLevel or gemInstance.gemData.defaultLevel + gemInstance.defaultLevel = gemInstance.level + end + calcLib.validateGemLevel(gemInstance) + if gemInstance.gemData then + gemInstance.reqLevel = grantedEffect.levels[gemInstance.level][1] + gemInstance.reqStr = calcLib.getGemStatRequirement(gemInstance.reqLevel, grantedEffect.support, gemInstance.gemData.reqStr) + gemInstance.reqDex = calcLib.getGemStatRequirement(gemInstance.reqLevel, grantedEffect.support, gemInstance.gemData.reqDex) + gemInstance.reqInt = calcLib.getGemStatRequirement(gemInstance.reqLevel, grantedEffect.support, gemInstance.gemData.reqInt) + end end end end @@ -525,11 +552,11 @@ function SkillsTabClass:SetDisplayGroup(socketGroup) -- Update the gem slot controls self:UpdateGemSlots() - for index, gem in pairs(socketGroup.gemList) do - self.gemSlots[index].nameSpec:SetText(gem.nameSpec) - self.gemSlots[index].level:SetText(gem.level) - self.gemSlots[index].quality:SetText(gem.quality) - self.gemSlots[index].enabled.state = gem.enabled + for index, gemInstance in pairs(socketGroup.gemList) do + self.gemSlots[index].nameSpec:SetText(gemInstance.nameSpec) + self.gemSlots[index].level:SetText(gemInstance.level) + self.gemSlots[index].quality:SetText(gemInstance.quality) + self.gemSlots[index].enabled.state = gemInstance.enabled end end end @@ -548,65 +575,66 @@ function SkillsTabClass:AddSocketGroupTooltip(tooltip, socketGroup) tooltip:AddSeparator(10) end tooltip:AddLine(16, "^7Active Skill #"..index..":") - for _, gem in ipairs(activeSkill.gemList) do + for _, skillEffect in ipairs(activeSkill.effectList) do tooltip:AddLine(20, string.format("%s%s ^7%d%s/%d%s", - data.skillColorMap[gem.grantedEffect.color], - gem.grantedEffect.name, - gem.level, - (gem.srcGem and gem.level > gem.srcGem.level) and colorCodes.MAGIC.."+"..(gem.level - gem.srcGem.level).."^7" or "", - gem.quality, - (gem.srcGem and gem.quality > gem.srcGem.quality) and colorCodes.MAGIC.."+"..(gem.quality - gem.srcGem.quality).."^7" or "" + data.skillColorMap[skillEffect.grantedEffect.color], + skillEffect.grantedEffect.name, + skillEffect.level, + (skillEffect.srcInstance and skillEffect.level > skillEffect.srcInstance.level) and colorCodes.MAGIC.."+"..(skillEffect.level - skillEffect.srcInstance.level).."^7" or "", + skillEffect.quality, + (skillEffect.srcInstance and skillEffect.quality > skillEffect.srcInstance.quality) and colorCodes.MAGIC.."+"..(skillEffect.quality - skillEffect.srcInstance.quality).."^7" or "" )) - if gem.srcGem then - gemShown[gem.srcGem] = true + if skillEffect.srcInstance then + gemShown[skillEffect.srcInstance] = true end end if activeSkill.minion then tooltip:AddSeparator(10) tooltip:AddLine(16, "^7Active Skill #"..index.."'s Main Minion Skill:") - local gem = activeSkill.minion.mainSkill.gemList[1] + local activeEffect = activeSkill.minion.mainSkill.effectList[1] tooltip:AddLine(20, string.format("%s%s ^7%d%s/%d%s", - data.skillColorMap[gem.grantedEffect.color], - gem.grantedEffect.name, - gem.level, - (gem.srcGem and gem.level > gem.srcGem.level) and colorCodes.MAGIC.."+"..(gem.level - gem.srcGem.level).."^7" or "", - gem.quality, - (gem.srcGem and gem.quality > gem.srcGem.quality) and colorCodes.MAGIC.."+"..(gem.quality - gem.srcGem.quality).."^7" or "" + data.skillColorMap[activeEffect.grantedEffect.color], + activeEffect.grantedEffect.name, + activeEffect.level, + (activeEffect.srcInstance and activeEffect.level > activeEffect.srcInstance.level) and colorCodes.MAGIC.."+"..(activeEffect.level - activeEffect.srcInstance.level).."^7" or "", + activeEffect.quality, + (activeEffect.srcInstance and activeEffect.quality > activeEffect.srcInstance.quality) and colorCodes.MAGIC.."+"..(activeEffect.quality - activeEffect.srcInstance.quality).."^7" or "" )) - if gem.srcGem then - gemShown[gem.srcGem] = true + if activeEffect.srcInstance then + gemShown[activeEffect.srcInstance] = true end end end local showOtherHeader = true - for _, gem in ipairs(socketGroup.gemList) do - if not gemShown[gem] then + for _, gemInstance in ipairs(socketGroup.gemList) do + if not gemShown[gemInstance] then if showOtherHeader then showOtherHeader = false tooltip:AddSeparator(10) tooltip:AddLine(16, "^7Inactive Gems:") end local reason = "" - local displayGem = gem.displayGem or gem - if not gem.grantedEffect then + local displayEffect = gemInstance.displayEffect or gemInstance + local grantedEffect = gemInstance.gemData and gemInstance.gemData.grantedEffect or gemInstance.grantedEffect + if not grantedEffect then reason = "(Unsupported)" - elseif not gem.enabled then + elseif not gemInstance.enabled then reason = "(Disabled)" elseif not socketGroup.enabled or not socketGroup.slotEnabled then - elseif gem.grantedEffect.support then - if displayGem.superseded then + elseif grantedEffect.support then + if displayEffect.superseded then reason = "(Superseded)" - elseif (not displayGem.isSupporting or not next(displayGem.isSupporting)) and #socketGroup.displaySkillList > 0 then + elseif (not displayEffect.isSupporting or not next(displayEffect.isSupporting)) and #socketGroup.displaySkillList > 0 then reason = "(Cannot apply to any of the active skills)" end end tooltip:AddLine(20, string.format("%s%s ^7%d%s/%d%s %s", - gem.color, - gem.grantedEffect and gem.grantedEffect.name or gem.nameSpec, - displayGem.level, - displayGem.level > gem.level and colorCodes.MAGIC.."+"..(displayGem.level - gem.level).."^7" or "", - displayGem.quality, - displayGem.quality > gem.quality and colorCodes.MAGIC.."+"..(displayGem.quality - gem.quality).."^7" or "", + gemInstance.color, + (gemInstance.grantedEffect and gemInstance.grantedEffect.name) or (gemInstance.gemData and gemInstance.gemData.name) or gemInstance.nameSpec, + displayEffect.level, + displayEffect.level > gemInstance.level and colorCodes.MAGIC.."+"..(displayEffect.level - gemInstance.level).."^7" or "", + displayEffect.quality, + displayEffect.quality > gemInstance.quality and colorCodes.MAGIC.."+"..(displayEffect.quality - gemInstance.quality).."^7" or "", reason )) end @@ -619,8 +647,8 @@ function SkillsTabClass:CreateUndoState() for _, socketGroup in ipairs(self.socketGroupList) do local newGroup = copyTable(socketGroup, true) newGroup.gemList = { } - for index, gem in pairs(socketGroup.gemList) do - newGroup.gemList[index] = copyTable(gem, true) + for index, gemInstance in pairs(socketGroup.gemList) do + newGroup.gemList[index] = copyTable(gemInstance, true) end t_insert(state.socketGroupList, newGroup) end diff --git a/Data/2_6/Gems.lua b/Data/2_6/Gems.lua new file mode 100644 index 00000000..7bf91a1e --- /dev/null +++ b/Data/2_6/Gems.lua @@ -0,0 +1,4097 @@ +-- This file is automatically generated, do not edit! +-- Gem data (c) Grinding Gear Games + +return { + ["Metadata/Items/Gems/SkillGemFireball"] = { + name = "Fireball", + grantedEffectId = "Fireball", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Projectile, Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalFireball"] = { + name = "Vaal Fireball", + grantedEffectId = "VaalFireballSpiralNova", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Projectile, Vaal, Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemIceNova"] = { + name = "Ice Nova", + grantedEffectId = "IceNova", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalIceNova"] = { + name = "Vaal Ice Nova", + grantedEffectId = "VaalIceNova", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Vaal, Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemLeapSlam"] = { + name = "Leap Slam", + grantedEffectId = "LeapSlam", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + movement = true, + melee = true, + }, + tagString = "Attack, AoE, Movement, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemChargedAttack"] = { + name = "Blade Flurry", + grantedEffectId = "ChargedAttack", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + channelling = true, + melee = true, + }, + tagString = "Attack, AoE, Channelling, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSweep"] = { + name = "Sweep", + grantedEffectId = "Sweep", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemGroundSlam"] = { + name = "Ground Slam", + grantedEffectId = "GroundSlam", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalGroundSlam"] = { + name = "Vaal Ground Slam", + grantedEffectId = "VaalGroundSlam", + tags = { + strength = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Vaal, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemCleave"] = { + name = "Cleave", + grantedEffectId = "Cleave", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemShieldCharge"] = { + name = "Shield Charge", + grantedEffectId = "NewShieldCharge", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + movement = true, + melee = true, + }, + tagString = "Attack, AoE, Movement, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemEnduringCry"] = { + name = "Enduring Cry", + grantedEffectId = "EnduringCry", + tags = { + warcry = true, + strength = true, + active_skill = true, + area = true, + duration = true, + }, + tagString = "Warcry, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDoubleStrike"] = { + name = "Double Strike", + grantedEffectId = "DoubleStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalDoubleStrike"] = { + name = "Vaal Double Strike", + grantedEffectId = "VaalDoubleStrike", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + melee = true, + duration = true, + }, + tagString = "Vaal, Attack, Melee, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemLacerate"] = { + name = "Lacerate", + grantedEffectId = "DoubleSlash", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemElementalHit"] = { + name = "Elemental Hit", + grantedEffectId = "ElementalHit", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + fire = true, + cold = true, + lightning = true, + bow = true, + }, + tagString = "Attack, Melee, Fire, Cold, Lightning, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemImmortalCall"] = { + name = "Immortal Call", + grantedEffectId = "ImmortalCall", + tags = { + strength = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Spell, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalImmortalCall"] = { + name = "Vaal Immortal Call", + grantedEffectId = "VaalImmortalCall", + tags = { + strength = true, + active_skill = true, + vaal = true, + spell = true, + duration = true, + }, + tagString = "Vaal, Spell, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDualStrike"] = { + name = "Dual Strike", + grantedEffectId = "DualStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemWhirlingBlades"] = { + name = "Whirling Blades", + grantedEffectId = "WhirlingBlades", + tags = { + dexterity = true, + active_skill = true, + attack = true, + movement = true, + melee = true, + }, + tagString = "Attack, Movement, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFrenzy"] = { + name = "Frenzy", + grantedEffectId = "Frenzy", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + bow = true, + }, + tagString = "Attack, Melee, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDetonateDead"] = { + name = "Detonate Dead", + grantedEffectId = "DetonateDead", + tags = { + dexterity = true, + active_skill = true, + cast = true, + area = true, + fire = true, + }, + tagString = "Cast, AoE, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVaalDetonateDead"] = { + name = "Vaal Detonate Dead", + grantedEffectId = "VaalDetonateDead", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + cast = true, + area = true, + fire = true, + }, + tagString = "Vaal, Cast, AoE, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSplitArrow"] = { + name = "Split Arrow", + grantedEffectId = "SplitArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAddedFireDamage"] = { + name = "Added Fire Damage", + grantedEffectId = "SupportAddedFireDamage", + tags = { + fire = true, + strength = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFasterAttack"] = { + name = "Faster Attacks", + grantedEffectId = "SupportFasterAttack", + tags = { + attack = true, + dexterity = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemGreaterMultipleProjectiles"] = { + name = "Greater Multiple Projectiles", + grantedEffectId = "SupportGreaterMultipleProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLesserMultipleProjectiles"] = { + name = "Lesser Multiple Projectiles", + grantedEffectId = "SupportLesserMultipleProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFasterProjectiles"] = { + name = "Faster Projectiles", + grantedEffectId = "SupportFasterProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAddedColdDamage"] = { + name = "Added Cold Damage", + grantedEffectId = "SupportAddedColdDamage", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAdditionalAccuracy"] = { + name = "Additional Accuracy", + grantedEffectId = "SupportAdditionalAccuracy", + tags = { + attack = true, + dexterity = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIncreasedAreaOfEffect"] = { + name = "Increased Area of Effect", + grantedEffectId = "SupportIncreasedAreaOfEffect", + tags = { + intelligence = true, + support = true, + area = true, + }, + tagString = "Support, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemAddedLightningDamage"] = { + name = "Added Lightning Damage", + grantedEffectId = "SupportAddedLightningDamage", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemColdSnap"] = { + name = "Cold Snap", + grantedEffectId = "ColdSnap", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalColdSnap"] = { + name = "Vaal Cold Snap", + grantedEffectId = "VaalColdSnap", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemRaiseZombie"] = { + name = "Raise Zombie", + grantedEffectId = "RaiseZombie", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + }, + tagString = "Spell, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPoisonArrow"] = { + name = "Caustic Arrow", + grantedEffectId = "PoisonArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + duration = true, + chaos = true, + bow = true, + }, + tagString = "Attack, AoE, Duration, Chaos, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBloodRage"] = { + name = "Blood Rage", + grantedEffectId = "BloodRage", + tags = { + dexterity = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Spell, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemRighteousFire"] = { + name = "Righteous Fire", + grantedEffectId = "RighteousFire", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVaalRighteousFire"] = { + name = "Vaal Righteous Fire", + grantedEffectId = "VaalRighteousFire", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Vaal, Spell, AoE, Fire", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemDischarge"] = { + name = "Discharge", + grantedEffectId = "Discharge", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + cold = true, + lightning = true, + }, + tagString = "Spell, AoE, Fire, Cold, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPortal"] = { + name = "Portal", + grantedEffectId = "Portal", + tags = { + low_max_level = true, + active_skill = true, + spell = true, + }, + tagString = "Spell", + reqStr = 33, + reqDex = 33, + reqInt = 34, + }, + ["Metadata/Items/Gems/SkillGemVaalPortal"] = { + name = "Vaal Breach", + grantedEffectId = "VaalBreach", + tags = { + low_max_level = true, + active_skill = true, + vaal = true, + spell = true, + }, + tagString = "Vaal, Spell", + reqStr = 33, + reqDex = 33, + reqInt = 34, + }, + ["Metadata/Items/Gems/SupportGemReducedMana"] = { + name = "Reduced Mana", + grantedEffectId = "SupportReducedMana", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIncreasedCriticalStrikes"] = { + name = "Increased Critical Strikes", + grantedEffectId = "SupportIncreasedCriticalStrikes", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemIncreasedCriticalDamage"] = { + name = "Increased Critical Damage", + grantedEffectId = "SupportIncreasedCriticalDamage", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemKnockback"] = { + name = "Knockback", + grantedEffectId = "SupportKnockback", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLifeLeech"] = { + name = "Life Leech", + grantedEffectId = "SupportLifeLeech", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemManaLeech"] = { + name = "Mana Leech", + grantedEffectId = "SupportManaLeech", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAddedChaosDamage"] = { + name = "Added Chaos Damage", + grantedEffectId = "SupportAddedChaosDamage", + tags = { + chaos = true, + intelligence = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFlickerStrike"] = { + name = "Flicker Strike", + grantedEffectId = "FlickerStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + movement = true, + }, + tagString = "Attack, Melee, Movement", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSpark"] = { + name = "Spark", + grantedEffectId = "Spark", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalSpark"] = { + name = "Vaal Spark", + grantedEffectId = "VaalSparkSpiralNova", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Vaal, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemStun"] = { + name = "Stun", + grantedEffectId = "SupportStun", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemIceSpear"] = { + name = "Ice Spear", + grantedEffectId = "IceSpear", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + cold = true, + }, + tagString = "Projectile, Spell, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemPierce"] = { + name = "Pierce", + grantedEffectId = "SupportPierce", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemTrap"] = { + name = "Trap", + grantedEffectId = "SupportTrap", + tags = { + dexterity = true, + support = true, + trap = true, + duration = true, + }, + tagString = "Support, Trap, Duration", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemRaiseSpectre"] = { + name = "Raise Spectre", + grantedEffectId = "RaiseSpectre", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + }, + tagString = "Spell, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemInfernalBlow"] = { + name = "Infernal Blow", + grantedEffectId = "InfernalBlow", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + fire = true, + }, + tagString = "Attack, AoE, Melee, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemGlacialHammer"] = { + name = "Glacial Hammer", + grantedEffectId = "GlacialHammer", + tags = { + strength = true, + active_skill = true, + attack = true, + melee = true, + cold = true, + }, + tagString = "Attack, Melee, Cold", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalGlacialHammer"] = { + name = "Vaal Glacial Hammer", + grantedEffectId = "VaalGlacialHammer", + tags = { + strength = true, + active_skill = true, + vaal = true, + attack = true, + melee = true, + duration = true, + area = true, + cold = true, + }, + tagString = "Vaal, Attack, Melee, Duration, AoE, Cold", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostWall"] = { + name = "Frost Wall", + grantedEffectId = "FrostWall", + tags = { + intelligence = true, + active_skill = true, + spell = true, + duration = true, + cold = true, + }, + tagString = "Spell, Duration, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFreezingPulse"] = { + name = "Freezing Pulse", + grantedEffectId = "FreezingPulse", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + cold = true, + }, + tagString = "Projectile, Spell, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemShockNova"] = { + name = "Shock Nova", + grantedEffectId = "ShockNova", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemViperStrike"] = { + name = "Viper Strike", + grantedEffectId = "ViperStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + duration = true, + melee = true, + chaos = true, + }, + tagString = "Attack, Duration, Melee, Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemNewPhaseRun"] = { + name = "Phase Run", + grantedEffectId = "NewPhaseRun", + tags = { + dexterity = true, + active_skill = true, + spell = true, + duration = true, + movement = true, + }, + tagString = "Spell, Duration, Movement", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMeleePhysicalDamage"] = { + name = "Melee Physical Damage", + grantedEffectId = "SupportMeleePhysicalDamage", + tags = { + melee = true, + strength = true, + support = true, + attack = true, + }, + tagString = "Melee, Support, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemItemQuantity"] = { + name = "Item Quantity", + grantedEffectId = "SupportItemQuantity", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemItemRarity"] = { + name = "Item Rarity", + grantedEffectId = "SupportItemRarity", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemFasterCast"] = { + name = "Faster Casting", + grantedEffectId = "SupportFasterCast", + tags = { + intelligence = true, + support = true, + spell = true, + }, + tagString = "Support, Spell", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemExplosiveArrow"] = { + name = "Explosive Arrow", + grantedEffectId = "ExplosiveArrow", + tags = { + fire = true, + dexterity = true, + active_skill = true, + attack = true, + area = true, + duration = true, + bow = true, + }, + tagString = "Fire, Attack, AoE, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemTemporalChains"] = { + name = "Temporal Chains", + grantedEffectId = "TemporalChains", + tags = { + curse = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemElementalWeakness"] = { + name = "Elemental Weakness", + grantedEffectId = "ElementalWeakness", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemWarlordsMark"] = { + name = "Warlord's Mark", + grantedEffectId = "WarlordsMark", + tags = { + curse = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemPunishment"] = { + name = "Punishment", + grantedEffectId = "Punishment", + tags = { + curse = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemEnfeeble"] = { + name = "Enfeeble", + grantedEffectId = "Enfeeble", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemCriticalWeakness"] = { + name = "Assassin's Mark", + grantedEffectId = "AssassinsMark", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemProjectileWeakness"] = { + name = "Projectile Weakness", + grantedEffectId = "ProjectileWeakness", + tags = { + curse = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVulnerability"] = { + name = "Vulnerability", + grantedEffectId = "Vulnerability", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemLightningWarp"] = { + name = "Lightning Warp", + grantedEffectId = "LightningWarp", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + movement = true, + lightning = true, + }, + tagString = "Spell, AoE, Duration, Movement, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalLightningWarp"] = { + name = "Vaal Lightning Warp", + grantedEffectId = "VaalLightningWarpInstant", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSummonSkeletons"] = { + name = "Summon Skeletons", + grantedEffectId = "SummonSkeletons", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + duration = true, + }, + tagString = "Spell, Minion, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalSummonSkeletons"] = { + name = "Vaal Summon Skeletons", + grantedEffectId = "VaalSummonSkeletons", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + minion = true, + duration = true, + }, + tagString = "Vaal, Spell, Minion, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemHeavyStrike"] = { + name = "Heavy Strike", + grantedEffectId = "HeavyStrike", + tags = { + strength = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDominatingBlow"] = { + name = "Dominating Blow", + grantedEffectId = "DominatingBlow", + tags = { + strength = true, + active_skill = true, + attack = true, + minion = true, + duration = true, + melee = true, + }, + tagString = "Attack, Minion, Duration, Melee", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemRainOfArrows"] = { + name = "Rain of Arrows", + grantedEffectId = "RainOfArrows", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalRainOfArrows"] = { + name = "Vaal Rain of Arrows", + grantedEffectId = "VaalRainOfArrows", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + duration = true, + bow = true, + }, + tagString = "Vaal, Attack, AoE, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemConcentratedEffect"] = { + name = "Concentrated Effect", + grantedEffectId = "SupportConcentratedEffect", + tags = { + intelligence = true, + support = true, + area = true, + }, + tagString = "Support, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinionDamage"] = { + name = "Minion Damage", + grantedEffectId = "SupportMinionDamage", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemIncreasedDuration"] = { + name = "Increased Duration", + grantedEffectId = "SupportIncreasedDuration", + tags = { + strength = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemColdToFire"] = { + name = "Cold to Fire", + grantedEffectId = "SupportColdToFire", + tags = { + cold = true, + fire = true, + strength = true, + support = true, + }, + tagString = "Cold, Fire, Support", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemChanceToIgnite"] = { + name = "Chance to Ignite", + grantedEffectId = "SupportChanceToIgnite", + tags = { + fire = true, + intelligence = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinionSpeed"] = { + name = "Minion Speed", + grantedEffectId = "SupportMinionSpeed", + tags = { + movement = true, + intelligence = true, + support = true, + minion = true, + }, + tagString = "Movement, Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinionLife"] = { + name = "Minion Life", + grantedEffectId = "SupportMinionLife", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemWeaponElementalDamage"] = { + name = "Weapon Elemental Damage", + grantedEffectId = "SupportWeaponElementalDamage", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemBloodlust"] = { + name = "Bloodlust", + grantedEffectId = "SupportBloodlust", + tags = { + attack = true, + strength = true, + support = true, + melee = true, + }, + tagString = "Attack, Support, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLifeGainOnHit"] = { + name = "Life Gain on Hit", + grantedEffectId = "SupportLifeGainOnHit", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFirestorm"] = { + name = "Firestorm", + grantedEffectId = "Firestorm", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Spell, AoE, Duration, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemLightningStrike"] = { + name = "Lightning Strike", + grantedEffectId = "LightningStrike", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + lightning = true, + }, + tagString = "Projectile, Attack, Melee, Lightning", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVaalLightningStrike"] = { + name = "Vaal Lightning Strike", + grantedEffectId = "VaalLightningStrike", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + melee = true, + duration = true, + lightning = true, + }, + tagString = "Vaal, Attack, Melee, Duration, Lightning", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemTempestShield"] = { + name = "Tempest Shield", + grantedEffectId = "TempestShield", + tags = { + intelligence = true, + active_skill = true, + spell = true, + lightning = true, + chaining = true, + duration = true, + }, + tagString = "Spell, Lightning, Chaining, Duration", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemMoltenShell"] = { + name = "Molten Shell", + grantedEffectId = "MoltenShell", + tags = { + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Spell, AoE, Duration, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalMoltenShell"] = { + name = "Vaal Molten Shell", + grantedEffectId = "VaalMoltenShell", + tags = { + strength = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemPowerSiphon"] = { + name = "Power Siphon", + grantedEffectId = "PowerSiphon", + tags = { + intelligence = true, + active_skill = true, + attack = true, + projectile = true, + }, + tagString = "Attack, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalPowerSiphon"] = { + name = "Vaal Power Siphon", + grantedEffectId = "VaalPowerSiphon", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + attack = true, + projectile = true, + }, + tagString = "Vaal, Attack, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPuncture"] = { + name = "Puncture", + grantedEffectId = "Puncture", + tags = { + dexterity = true, + active_skill = true, + attack = true, + duration = true, + melee = true, + bow = true, + }, + tagString = "Attack, Duration, Melee, Bow", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemLightningArrow"] = { + name = "Lightning Arrow", + grantedEffectId = "LightningArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + lightning = true, + bow = true, + }, + tagString = "Attack, AoE, Lightning, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemHaste"] = { + name = "Haste", + grantedEffectId = "Haste", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalHaste"] = { + name = "Vaal Haste", + grantedEffectId = "VaalHaste", + tags = { + aura = true, + dexterity = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemPurity"] = { + name = "Purity of Elements", + grantedEffectId = "Purity", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVitality"] = { + name = "Vitality", + grantedEffectId = "Vitality", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDiscipline"] = { + name = "Discipline", + grantedEffectId = "Discipline", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalDiscipline"] = { + name = "Vaal Discipline", + grantedEffectId = "VaalDiscipline", + tags = { + aura = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemGrace"] = { + name = "Grace", + grantedEffectId = "Grace", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalGrace"] = { + name = "Vaal Grace", + grantedEffectId = "VaalGrace", + tags = { + aura = true, + dexterity = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDetermination"] = { + name = "Determination", + grantedEffectId = "Determination", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAnger"] = { + name = "Anger", + grantedEffectId = "Anger", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Aura, Spell, AoE, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHatred"] = { + name = "Hatred", + grantedEffectId = "Hatred", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Aura, Spell, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemWrath"] = { + name = "Wrath", + grantedEffectId = "Wrath", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Aura, Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBurningArrow"] = { + name = "Burning Arrow", + grantedEffectId = "BurningArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + fire = true, + bow = true, + }, + tagString = "Attack, Fire, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalBurningArrow"] = { + name = "Vaal Burning Arrow", + grantedEffectId = "VaalBurningArrow", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + fire = true, + bow = true, + }, + tagString = "Vaal, Attack, AoE, Fire, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemElementalProliferation"] = { + name = "Elemental Proliferation", + grantedEffectId = "SupportElementalProliferation", + tags = { + cold = true, + fire = true, + lightning = true, + intelligence = true, + support = true, + area = true, + }, + tagString = "Cold, Fire, Lightning, Support, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemBloodMagic"] = { + name = "Blood Magic", + grantedEffectId = "SupportBloodMagic", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemClarity"] = { + name = "Clarity", + grantedEffectId = "Clarity", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalClarity"] = { + name = "Vaal Clarity", + grantedEffectId = "VaalClarity", + tags = { + aura = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemCullingStrike"] = { + name = "Culling Strike", + grantedEffectId = "SupportCullingStrike", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemPointBlank"] = { + name = "Point Blank", + grantedEffectId = "SupportPointBlank", + tags = { + projectile = true, + attack = true, + dexterity = true, + support = true, + }, + tagString = "Projectile, Attack, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIronGrip"] = { + name = "Iron Grip", + grantedEffectId = "SupportIronGrip", + tags = { + projectile = true, + strength = true, + support = true, + }, + tagString = "Projectile, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIronWill"] = { + name = "Iron Will", + grantedEffectId = "SupportIronWill", + tags = { + spell = true, + strength = true, + support = true, + }, + tagString = "Spell, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMeleeDamageOnFullLife"] = { + name = "Melee Damage on Full Life", + grantedEffectId = "SupportMeleeDamageOnFullLife", + tags = { + melee = true, + strength = true, + support = true, + attack = true, + }, + tagString = "Melee, Support, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemSpellTotem"] = { + name = "Spell Totem", + grantedEffectId = "SupportSpellTotem", + tags = { + strength = true, + support = true, + totem = true, + duration = true, + }, + tagString = "Support, Totem, Duration", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemRemoteMine"] = { + name = "Remote Mine", + grantedEffectId = "SupportRemoteMine", + tags = { + intelligence = true, + support = true, + mine = true, + duration = true, + }, + tagString = "Support, Mine, Duration", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemDetonateMines"] = { + name = "Detonate Mines", + grantedEffectId = "GemDetonateMines", + tags = { + low_max_level = true, + active_skill = true, + spell = true, + }, + tagString = "Spell", + reqStr = 33, + reqDex = 33, + reqInt = 34, + }, + ["Metadata/Items/Gems/SkillGemShockwaveTotem"] = { + name = "Shockwave Totem", + grantedEffectId = "ShockwaveTotem", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Totem, Spell, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemRejuvenationTotem"] = { + name = "Rejuvenation Totem", + grantedEffectId = "RejuvenationTotem", + tags = { + totem = true, + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Totem, Aura, Spell, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFreezeMine"] = { + name = "Freeze Mine", + grantedEffectId = "FreezeMine", + tags = { + mine = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Mine, Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemConversionTrap"] = { + name = "Conversion Trap", + grantedEffectId = "ConversionTrap", + tags = { + trap = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Trap, Spell, Duration", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemBearTrap"] = { + name = "Bear Trap", + grantedEffectId = "BearTrap", + tags = { + trap = true, + dexterity = true, + active_skill = true, + duration = true, + cast = true, + }, + tagString = "Trap, Duration, Cast", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemChanceToFlee"] = { + name = "Chance to Flee", + grantedEffectId = "SupportChanceToFlee", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFireTrap"] = { + name = "Fire Trap", + grantedEffectId = "FireTrap", + tags = { + trap = true, + dexterity = true, + active_skill = true, + spell = true, + duration = true, + area = true, + fire = true, + }, + tagString = "Trap, Spell, Duration, AoE, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemDecoyTotem"] = { + name = "Decoy Totem", + grantedEffectId = "DecoyTotem", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + duration = true, + area = true, + }, + tagString = "Totem, Spell, Duration, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDevouringTotem"] = { + name = "Devouring Totem", + grantedEffectId = "DevouringTotem", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Totem, Spell, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemEtherealKnives"] = { + name = "Ethereal Knives", + grantedEffectId = "EtherealKnives", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + spell = true, + }, + tagString = "Projectile, Spell", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemBlind"] = { + name = "Blind", + grantedEffectId = "SupportBlind", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemIceShot"] = { + name = "Ice Shot", + grantedEffectId = "IceShot", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + duration = true, + cold = true, + bow = true, + }, + tagString = "Attack, AoE, Duration, Cold, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemArcticBreath"] = { + name = "Arctic Breath", + grantedEffectId = "ArcticBreath", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + area = true, + cold = true, + }, + tagString = "Projectile, Spell, Duration, AoE, Cold", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemArc"] = { + name = "Arc", + grantedEffectId = "Arc", + tags = { + intelligence = true, + active_skill = true, + spell = true, + chaining = true, + lightning = true, + }, + tagString = "Spell, Chaining, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalArc"] = { + name = "Vaal Arc", + grantedEffectId = "VaalArcChain", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + chaining = true, + lightning = true, + }, + tagString = "Vaal, Spell, Chaining, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemNewArcticArmour"] = { + name = "Arctic Armour", + grantedEffectId = "NewArcticArmour", + tags = { + dexterity = true, + active_skill = true, + spell = true, + duration = true, + cold = true, + }, + tagString = "Spell, Duration, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFlameTotem"] = { + name = "Flame Totem", + grantedEffectId = "FlameTotem", + tags = { + projectile = true, + totem = true, + strength = true, + active_skill = true, + spell = true, + duration = true, + fire = true, + }, + tagString = "Projectile, Totem, Spell, Duration, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemRangedAttackTotem"] = { + name = "Ranged Attack Totem", + grantedEffectId = "SupportRangedAttackTotem", + tags = { + bow = true, + projectile = true, + strength = true, + support = true, + totem = true, + attack = true, + duration = true, + }, + tagString = "Bow, Projectile, Support, Totem, Attack, Duration", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFirePenetration"] = { + name = "Fire Penetration", + grantedEffectId = "SupportFirePenetration", + tags = { + fire = true, + strength = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemColdPenetration"] = { + name = "Cold Penetration", + grantedEffectId = "SupportColdPenetration", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLightningPenetration"] = { + name = "Lightning Penetration", + grantedEffectId = "SupportLightningPenetration", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemChain"] = { + name = "Chain", + grantedEffectId = "SupportChain", + tags = { + dexterity = true, + support = true, + chaining = true, + projectile = true, + }, + tagString = "Support, Chaining, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFork"] = { + name = "Fork", + grantedEffectId = "SupportFork", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFlammability"] = { + name = "Flammability", + grantedEffectId = "Flammability", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Curse, Spell, AoE, Duration, Fire", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemFrostbite"] = { + name = "Frostbite", + grantedEffectId = "Frostbite", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Curse, Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemConductivity"] = { + name = "Conductivity", + grantedEffectId = "Conductivity", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Curse, Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemIncinerate"] = { + name = "Incinerate", + grantedEffectId = "Incinerate", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + fire = true, + channelling = true, + }, + tagString = "Projectile, Spell, Fire, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemCyclone"] = { + name = "Cyclone", + grantedEffectId = "Cyclone", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + movement = true, + melee = true, + }, + tagString = "Attack, AoE, Movement, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalCyclone"] = { + name = "Vaal Cyclone", + grantedEffectId = "VaalCyclone", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + duration = true, + melee = true, + }, + tagString = "Vaal, Attack, AoE, Duration, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMultistrike"] = { + name = "Multistrike", + grantedEffectId = "SupportMultistrike", + tags = { + attack = true, + melee = true, + strength = true, + support = true, + }, + tagString = "Attack, Melee, Support", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMulticast"] = { + name = "Spell Echo", + grantedEffectId = "SupportMulticast", + tags = { + spell = true, + intelligence = true, + support = true, + }, + tagString = "Spell, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMeleeSplash"] = { + name = "Melee Splash", + grantedEffectId = "SupportMeleeSplash", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + area = true, + }, + tagString = "Support, Melee, Attack, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemPowerChargeOnCrit"] = { + name = "Power Charge On Critical", + grantedEffectId = "SupportPowerChargeOnCrit", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSearingBond"] = { + name = "Searing Bond", + grantedEffectId = "SearingBond", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + duration = true, + fire = true, + }, + tagString = "Totem, Spell, Duration, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemIncreasedBurningDamage"] = { + name = "Increased Burning Damage", + grantedEffectId = "SupportIncreasedBurningDamage", + tags = { + fire = true, + strength = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemSummonElementalResistance"] = { + name = "Minion and Totem Elemental Resistance", + grantedEffectId = "SupportSummonElementalResistances", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemCurseOnHit"] = { + name = "Curse On Hit", + grantedEffectId = "SupportCurseOnHit", + tags = { + curse = true, + trigger = true, + intelligence = true, + support = true, + }, + tagString = "Curse, Trigger, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemReave"] = { + name = "Reave", + grantedEffectId = "Reave", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVaalReave"] = { + name = "Vaal Reave", + grantedEffectId = "VaalReave", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Vaal, Attack, AoE, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnCrit"] = { + name = "Cast On Critical Strike", + grantedEffectId = "SupportCastOnCrit", + tags = { + dexterity = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnKill"] = { + name = "Cast on Melee Kill", + grantedEffectId = "SupportCastOnMeleeKill", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + spell = true, + trigger = true, + }, + tagString = "Support, Melee, Attack, Spell, Trigger", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemMultiTrap"] = { + name = "Multiple Traps", + grantedEffectId = "SupportMultiTrap", + tags = { + dexterity = true, + support = true, + trap = true, + }, + tagString = "Support, Trap", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemAdditionalLevel"] = { + name = "Empower", + grantedEffectId = "SupportAdditionalLevel", + tags = { + low_max_level = true, + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemLightningTrap"] = { + name = "Lightning Trap", + grantedEffectId = "LightningTrap", + tags = { + projectile = true, + trap = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Trap, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVaalLightningTrap"] = { + name = "Vaal Lightning Trap", + grantedEffectId = "VaalLightningTrap", + tags = { + projectile = true, + trap = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Trap, Vaal, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemSmokeMine"] = { + name = "Smoke Mine", + grantedEffectId = "SmokeMine", + tags = { + mine = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + movement = true, + }, + tagString = "Mine, Spell, AoE, Duration, Movement", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemEnduranceChargeOnMeleeStun"] = { + name = "Endurance Charge on Melee Stun", + grantedEffectId = "EnduranceChargeOnMeleeStun", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + }, + tagString = "Support, Melee, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAnimateArmour"] = { + name = "Animate Guardian", + grantedEffectId = "AnimateArmour", + tags = { + strength = true, + active_skill = true, + spell = true, + minion = true, + }, + tagString = "Spell, Minion", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemThrownWeapon"] = { + name = "Spectral Throw", + grantedEffectId = "ThrownWeapon", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + }, + tagString = "Projectile, Attack", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalThrownWeapon"] = { + name = "Vaal Spectral Throw", + grantedEffectId = "VaalThrownWeapon", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + }, + tagString = "Projectile, Vaal, Attack", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemSlowerProjectiles"] = { + name = "Slower Projectiles", + grantedEffectId = "SupportSlowerProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemReducedDuration"] = { + name = "Less Duration", + grantedEffectId = "SupportReducedDuration", + tags = { + strength = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemCastOnDeath"] = { + name = "Cast on Death", + grantedEffectId = "SupportCastOnDeath", + tags = { + dexterity = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnDamageTaken"] = { + name = "Cast when Damage Taken", + grantedEffectId = "SupportCastOnDamageTaken", + tags = { + strength = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnStunned"] = { + name = "Cast when Stunned", + grantedEffectId = "SupportCastOnStunned", + tags = { + intelligence = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemAnimateWeapon"] = { + name = "Animate Weapon", + grantedEffectId = "AnimateWeapon", + tags = { + dexterity = true, + active_skill = true, + duration = true, + minion = true, + spell = true, + }, + tagString = "Duration, Minion, Spell", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemAdditionalQuality"] = { + name = "Enhance", + grantedEffectId = "SupportAdditionalQuality", + tags = { + low_max_level = true, + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFireResistAura"] = { + name = "Purity of Fire", + grantedEffectId = "FireResistAura", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Aura, Spell, AoE, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemColdResistAura"] = { + name = "Purity of Ice", + grantedEffectId = "ColdResistAura", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Aura, Spell, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemLightningResistAura"] = { + name = "Purity of Lightning", + grantedEffectId = "LightningResistAura", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Aura, Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemStormCall"] = { + name = "Storm Call", + grantedEffectId = "StormCall", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalStormCall"] = { + name = "Vaal Storm Call", + grantedEffectId = "VaalStormCall", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFlameblast"] = { + name = "Flameblast", + grantedEffectId = "Flameblast", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + channelling = true, + }, + tagString = "Spell, AoE, Fire, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalFlameblast"] = { + name = "Vaal Flameblast", + grantedEffectId = "VaalFlameblast", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Vaal, Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBarrage"] = { + name = "Barrage", + grantedEffectId = "Barrage", + tags = { + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBallLightning"] = { + name = "Ball Lightning", + grantedEffectId = "BallLightning", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Projectile, Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemPhysicalProjectileAttackDamage"] = { + name = "Physical Projectile Attack Damage", + grantedEffectId = "SupportPhysicalProjectileAttackDamage", + tags = { + projectile = true, + dexterity = true, + support = true, + }, + tagString = "Projectile, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSummonRagingSpirit"] = { + name = "Summon Raging Spirit", + grantedEffectId = "SummonRagingSpirit", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + duration = true, + fire = true, + }, + tagString = "Spell, Minion, Duration, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFlameWhip"] = { + name = "Flame Surge", + grantedEffectId = "FlameWhip", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemAdditionalXP"] = { + name = "Enlighten", + grantedEffectId = "SupportAdditionalXP", + tags = { + low_max_level = true, + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemDesecrate"] = { + name = "Desecrate", + grantedEffectId = "Desecrate", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Spell, AoE, Duration, Chaos", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFleshOffering"] = { + name = "Flesh Offering", + grantedEffectId = "FleshOffering", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBoneOffering"] = { + name = "Bone Offering", + grantedEffectId = "BoneOffering", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSpiritOffering"] = { + name = "Spirit Offering", + grantedEffectId = "SpiritOffering", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemGlacialCascade"] = { + name = "Glacial Cascade", + grantedEffectId = "GlacialCascade", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemBlockChanceReduction"] = { + name = "Block Chance Reduction", + grantedEffectId = "SupportBlockReduction", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemMoltenStrike"] = { + name = "Molten Strike", + grantedEffectId = "MoltenStrike", + tags = { + projectile = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + fire = true, + }, + tagString = "Projectile, Attack, AoE, Melee, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemConvocation"] = { + name = "Convocation", + grantedEffectId = "Convocation", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFireNovaMine"] = { + name = "Fire Nova Mine", + grantedEffectId = "FireNovaMine", + tags = { + area = true, + mine = true, + intelligence = true, + active_skill = true, + spell = true, + fire = true, + duration = true, + }, + tagString = "AoE, Mine, Spell, Fire, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemTornadoShot"] = { + name = "Tornado Shot", + grantedEffectId = "TornadoShot", + tags = { + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemGenerosity"] = { + name = "Generosity", + grantedEffectId = "SupportGenerosity", + tags = { + strength = true, + support = true, + aura = true, + }, + tagString = "Support, Aura", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHeraldOfAsh"] = { + name = "Herald of Ash", + grantedEffectId = "HeraldOfAsh", + tags = { + strength = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHeraldOfIce"] = { + name = "Herald of Ice", + grantedEffectId = "HeraldOfIce", + tags = { + dexterity = true, + active_skill = true, + cast = true, + area = true, + cold = true, + }, + tagString = "Cast, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHeraldOfThunder"] = { + name = "Herald of Thunder", + grantedEffectId = "HeraldOfThunder", + tags = { + intelligence = true, + active_skill = true, + cast = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Cast, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPoachersMark"] = { + name = "Poacher's Mark", + grantedEffectId = "PoachersMark", + tags = { + curse = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemLightningTendrils"] = { + name = "Lightning Tendrils", + grantedEffectId = "LightningTendrils", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemKineticBlast"] = { + name = "Kinetic Blast", + grantedEffectId = "ClusterBurst", + tags = { + intelligence = true, + active_skill = true, + attack = true, + area = true, + projectile = true, + }, + tagString = "Attack, AoE, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBlinkArrow"] = { + name = "Blink Arrow", + grantedEffectId = "BlinkArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + minion = true, + duration = true, + movement = true, + bow = true, + }, + tagString = "Attack, Minion, Duration, Movement, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemMirrorArrow"] = { + name = "Mirror Arrow", + grantedEffectId = "MirrorArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + minion = true, + duration = true, + bow = true, + }, + tagString = "Attack, Minion, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemRiposte"] = { + name = "Riposte", + grantedEffectId = "Riposte", + tags = { + trigger = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Trigger, Attack, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemReckoning"] = { + name = "Reckoning", + grantedEffectId = "Reckoning", + tags = { + trigger = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Trigger, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemStaticStrike"] = { + name = "Static Strike", + grantedEffectId = "StaticStrike", + tags = { + strength = true, + active_skill = true, + attack = true, + melee = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Attack, Melee, AoE, Duration, Lightning", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemPhysicalToLightning"] = { + name = "Physical to Lightning", + grantedEffectId = "SupportPhysicalToLightning", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVengeance"] = { + name = "Vengeance", + grantedEffectId = "Vengeance", + tags = { + trigger = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Trigger, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSummonChaosGolem"] = { + name = "Summon Chaos Golem", + grantedEffectId = "SummonChaosGolem", + tags = { + intelligence = true, + active_skill = true, + chaos = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Chaos, Minion, Spell, Golem", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSummonIceGolem"] = { + name = "Summon Ice Golem", + grantedEffectId = "SummonIceGolem", + tags = { + dexterity = true, + active_skill = true, + cold = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Cold, Minion, Spell, Golem", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSummonFlameGolem"] = { + name = "Summon Flame Golem", + grantedEffectId = "SummonFireGolem", + tags = { + strength = true, + active_skill = true, + fire = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Fire, Minion, Spell, Golem", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSummonLightningGolem"] = { + name = "Summon Lightning Golem", + grantedEffectId = "SummonLightningGolem", + tags = { + intelligence = true, + active_skill = true, + lightning = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Lightning, Minion, Spell, Golem", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemBlasphemy"] = { + name = "Blasphemy", + grantedEffectId = "SupportBlasphemy", + tags = { + intelligence = true, + support = true, + curse = true, + aura = true, + }, + tagString = "Support, Curse, Aura", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemIceCrash"] = { + name = "Ice Crash", + grantedEffectId = "IceCrash", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + cold = true, + melee = true, + }, + tagString = "Attack, AoE, Cold, Melee", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemRallyingCry"] = { + name = "Rallying Cry", + grantedEffectId = "RallyingCry", + tags = { + warcry = true, + strength = true, + active_skill = true, + area = true, + duration = true, + }, + tagString = "Warcry, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAbyssalCry"] = { + name = "Abyssal Cry", + grantedEffectId = "AbyssalCry", + tags = { + warcry = true, + strength = true, + active_skill = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Warcry, AoE, Duration, Chaos", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFlameDash"] = { + name = "Flame Dash", + grantedEffectId = "FlameDash", + tags = { + intelligence = true, + active_skill = true, + spell = true, + movement = true, + duration = true, + fire = true, + }, + tagString = "Spell, Movement, Duration, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVigilantStrike"] = { + name = "Vigilant Strike", + grantedEffectId = "VigilantStrike", + tags = { + attack = true, + strength = true, + active_skill = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemFortify"] = { + name = "Fortify", + grantedEffectId = "SupportFortify", + tags = { + attack = true, + strength = true, + support = true, + melee = true, + }, + tagString = "Attack, Support, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostBlades"] = { + name = "Frost Blades", + grantedEffectId = "FrostBlades", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + cold = true, + }, + tagString = "Projectile, Attack, Melee, Cold", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFrenzyChargeOnSlayingFrozenEnemy"] = { + name = "Ice Bite", + grantedEffectId = "SupportFrenzyChargeOnSlayingFrozenEnemy", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemDamageAgainstChilled"] = { + name = "Hypothermia", + grantedEffectId = "SupportDamageAgainstChilled", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemOnslaughtOnSlayingShockedEnemy"] = { + name = "Innervate", + grantedEffectId = "SupportOnslaughtOnSlayingShockedEnemy", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemMagmaOrb"] = { + name = "Magma Orb", + grantedEffectId = "MagmaOrb", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + chaining = true, + }, + tagString = "Projectile, Spell, AoE, Fire, Chaining", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemTrapAndMineDamage"] = { + name = "Trap and Mine Damage", + grantedEffectId = "SupportTrapAndMineDamage", + tags = { + dexterity = true, + support = true, + trap = true, + mine = true, + }, + tagString = "Support, Trap, Mine", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemWildStrike"] = { + name = "Wild Strike", + grantedEffectId = "WildStrike", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + lightning = true, + cold = true, + fire = true, + area = true, + chaining = true, + }, + tagString = "Projectile, Attack, Melee, Lightning, Cold, Fire, AoE, Chaining", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemIceTrap"] = { + name = "Ice Trap", + grantedEffectId = "IceTrap", + tags = { + trap = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + duration = true, + }, + tagString = "Trap, Spell, AoE, Cold, Duration", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemBlastRain"] = { + name = "Blast Rain", + grantedEffectId = "BlastRain", + tags = { + fire = true, + dexterity = true, + active_skill = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Fire, Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemShrapnelShot"] = { + name = "Shrapnel Shot", + grantedEffectId = "ShrapnelShot", + tags = { + lightning = true, + dexterity = true, + active_skill = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Lightning, Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBladefall"] = { + name = "Bladefall", + grantedEffectId = "Bladefall", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Spell, AoE", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBladeVortex"] = { + name = "Blade Vortex", + grantedEffectId = "BladeVortex", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostBomb"] = { + name = "Frost Bomb", + grantedEffectId = "FrostBomb", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSiegeBallista"] = { + name = "Siege Ballista", + grantedEffectId = "SiegeBallista", + tags = { + totem = true, + dexterity = true, + active_skill = true, + attack = true, + duration = true, + bow = true, + }, + tagString = "Totem, Attack, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemOrbOfStorms"] = { + name = "Orb of Storms", + grantedEffectId = "OrbOfStorms", + tags = { + lightning = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + area = true, + chaining = true, + }, + tagString = "Lightning, Spell, Duration, AoE, Chaining", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSummonRockGolem"] = { + name = "Summon Stone Golem", + grantedEffectId = "SummonRockGolem", + tags = { + strength = true, + active_skill = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Minion, Spell, Golem", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemEarthquake"] = { + name = "Earthquake", + grantedEffectId = "Earthquake", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + duration = true, + melee = true, + }, + tagString = "Attack, AoE, Duration, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemPoison"] = { + name = "Poison", + grantedEffectId = "SupportPoison", + tags = { + chaos = true, + dexterity = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemContagion"] = { + name = "Contagion", + grantedEffectId = "Contagion", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Spell, AoE, Duration, Chaos", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemWither"] = { + name = "Wither", + grantedEffectId = "Wither", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + channelling = true, + }, + tagString = "Spell, AoE, Duration, Chaos, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBlight"] = { + name = "Blight", + grantedEffectId = "Blight", + tags = { + intelligence = true, + active_skill = true, + spell = true, + chaos = true, + area = true, + channelling = true, + duration = true, + }, + tagString = "Spell, Chaos, AoE, Channelling, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemEssenceDrain"] = { + name = "Essence Drain", + grantedEffectId = "EssenceDrain", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + chaos = true, + }, + tagString = "Projectile, Spell, Duration, Chaos", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemVoidManipulation"] = { + name = "Void Manipulation", + grantedEffectId = "SupportVoidManipulation", + tags = { + chaos = true, + dexterity = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemControlledDestruction"] = { + name = "Controlled Destruction", + grantedEffectId = "SupportControlledDestruction", + tags = { + spell = true, + intelligence = true, + support = true, + }, + tagString = "Spell, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemRapidDecay"] = { + name = "Rapid Decay", + grantedEffectId = "SupportRapidDecay", + tags = { + dexterity = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemClusterTrap"] = { + name = "Cluster Traps", + grantedEffectId = "SupportClusterTrap", + tags = { + trap = true, + dexterity = true, + support = true, + }, + tagString = "Trap, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemMeleeTotem"] = { + name = "Ancestral Protector", + grantedEffectId = "TotemMelee", + tags = { + totem = true, + strength = true, + active_skill = true, + attack = true, + duration = true, + melee = true, + }, + tagString = "Totem, Attack, Duration, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAncestralWarchief"] = { + name = "Ancestral Warchief", + grantedEffectId = "AncestorTotemSlam", + tags = { + totem = true, + strength = true, + active_skill = true, + attack = true, + duration = true, + area = true, + melee = true, + }, + tagString = "Totem, Attack, Duration, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSunder"] = { + name = "Sunder", + grantedEffectId = "Sunder", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostBolt"] = { + name = "Frostbolt", + grantedEffectId = "FrostBolt", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + cold = true, + }, + tagString = "Projectile, Spell, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFrostBoltNova"] = { + name = "Vortex", + grantedEffectId = "FrostBoltNova", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + duration = true, + }, + tagString = "Spell, AoE, Cold, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemElementalFocus"] = { + name = "Elemental Focus", + grantedEffectId = "SupportElementalFocus", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinefield"] = { + name = "Minefield", + grantedEffectId = "SupportMinefield", + tags = { + intelligence = true, + support = true, + mine = true, + }, + tagString = "Support, Mine", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemTrapCooldown"] = { + name = "Trap Cooldown", + grantedEffectId = "SupportTrapCooldown", + tags = { + trap = true, + dexterity = true, + support = true, + }, + tagString = "Trap, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFireBeam"] = { + name = "Scorching Ray", + grantedEffectId = "FireBeam", + tags = { + intelligence = true, + active_skill = true, + spell = true, + fire = true, + duration = true, + channelling = true, + }, + tagString = "Spell, Fire, Duration, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemCastWhileChannelling"] = { + name = "Cast while Channelling", + grantedEffectId = "SupportCastWhileChannelling", + tags = { + intelligence = true, + support = true, + channelling = true, + spell = true, + }, + tagString = "Support, Channelling, Spell", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, +} \ No newline at end of file diff --git a/Data/2_6/ModCache.lua b/Data/2_6/ModCache.lua index 1f020dd9..c1bd3048 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["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["-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["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["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["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Ice Bite",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["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["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=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["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["+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["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["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"}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["300% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EvasionAndEnergyShield",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["Prefix: IncreasedLife6"]={nil,"Prefix: IncreasedLife6"}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["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["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["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:1}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["+26% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=26,name="LightningResist",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["You have Onslaught while not on Low Mana Lose 33.5 Mana per Second"]={nil,"You have Onslaught while not on Low Mana Lose 33.5 Mana per Second"}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["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=true,type="FLAG",keywordFlags=0,name="MinionInstability",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["+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["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["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["Gain 5 Souls for Vaal Skills on Rampage Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage Rampage"}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["28% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=28,name="BlockChanceConv",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["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["23% increased Spell Damage"]={{[1]={flags=2,type="INC",value=23,name="Damage",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["+180 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=180,name="EnergyShield",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["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=60,name="LightningDamageConvertToChaos",keywordFlags=0}},nil}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["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"]={nil,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["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["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["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["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}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["+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["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["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["217% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=217,name="EvasionAndEnergyShield",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["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["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["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes"}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["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["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["Minions deal 37% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=37,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}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["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["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}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["+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["+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["18% increased Spell Damage"]={{[1]={flags=2,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["65% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="ArmourAndEnergyShield",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["Grants Level 15 Blood Offering Skill 120% increased Evasion and Energy Shield"]={nil,nil}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["+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["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second"}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["10% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=10,name="Speed",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["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["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill"}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["Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration"}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["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["+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["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["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["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["+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["+6 to maximum Life"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}},nil}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["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={name="Increased Area of Effect",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["1% increased Movement Speed per 450 Evasion Rating, up to 100% -40 Physical Damage taken when hit by Animals"]={{[1]={[1]={type="PerStat",stat="Evasion",div=450},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}}," , up to 100% -40 Physical Damage taken when hit by Animals"}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["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["10% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskLifeRecovery",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["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["40% increased Armour"]={{[1]={flags=0,type="INC",value=40,name="Armour",keywordFlags=0}},nil}c["Grants Level 20 Aspect of the Cat Skill 220% increased Evasion and Energy Shield"]={nil,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={level=22,name="Blight"},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["50% increased Blind duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Blind "}c["+30 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="ManaOnKill",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["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["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["10% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 20 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"}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={level=1,name="Temporal Chains",noSupports=true},name="ExtraSkill",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["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]={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["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["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["+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["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["Damage Penetrates 2% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=2,name="LightningPenetration",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=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["+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["+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={name="Melee Splash",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["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellDamageAppliesToAttacks",flags=0}},nil}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["+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["24% increased Elemental Damage with Attack Skills Adds 40 to 60 Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills Adds 40 to 60 Cold Damage"}c["22% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=22,name="ElementalDamage",keywordFlags=0}},nil}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["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["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={level=5,name="Vulnerability",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={name="Endurance Charge on Melee Stun",level=20},name="ExtraSupport",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% 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["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=10,name="Speed",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["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["10% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",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["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["14% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}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["16% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=16,name="Accuracy",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["+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["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["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["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 46% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 46% increased Damage to Shocked 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["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["25% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-25,name="FlaskDuration",keywordFlags=0}},nil}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["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["+1% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=1,name="ColdResistMax",keywordFlags=0}},nil}c["Adds an additional Arrow"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=1}},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["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["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 6% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=6,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=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["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["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["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination"}c["Grants Level 20 Aspect of the Spider Skill"]={nil,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["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,type="INC",value=65,name="IgniteBurnSlower",keywordFlags=0}},nil}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower"}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=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["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["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["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 22 to 35 Chaos Damage"]={{[1]={flags=0,type="BASE",value=22,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ChaosMax",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["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["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["15% increased Spell Damage"]={{[1]={flags=2,type="INC",value=15,name="Damage",keywordFlags=0}},nil}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["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=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["7% increased Intelligence"]={{[1]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}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["Grants level 20 Summon Beastial Ursa Skill +400 to Accuracy Rating"]={nil,nil}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["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["+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={level=20,name="Animate Weapon"},name="ExtraSkill",keywordFlags=0}},nil}c["8% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["400 Cold Damage taken per second per Frenzy Charge while moving Elder Item"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving Elder Item"}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["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["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=33,name="CritMultiplier",keywordFlags=0}},nil}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["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["-100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=-100,name="Accuracy",keywordFlags=0}},nil}c["+350 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=350,name="Evasion",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["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}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["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={level=10,name="TriggeredConsecrate"},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["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["+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["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=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"]={nil,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["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="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["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["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability"}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["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["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["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground"}c["Elemental Hit deals 10% increased Damage"]={nil,"Elemental Hit deals 10% increased Damage"}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["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["+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["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["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["Hits with this Weapon deal 57% increased Damage to Ignited Enemies Hits with this Weapon deal 52% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 57% increased Damage to Ignited Enemies Hits with this Weapon deal 52% increased Damage to Frozen Enemies"}c["+15 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=15,name="Evasion",keywordFlags=0}},nil}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["+60 to Strength"]={{[1]={flags=0,type="BASE",value=60,name="Str",keywordFlags=0}},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["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy"}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["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["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["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["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 31% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 31% 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={level=20,name="Bear Trap"},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["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding"}c["+(-20--10)% to Chaos Resistance"]={nil,"+(-20--10)% to Chaos Resistance"}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["+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["Damage Penetrates 2% Fire Resistance"]={{[1]={flags=0,type="BASE",value=2,name="FirePenetration",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["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["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=3,name="Speed",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["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["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["+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["120% increased Physical Damage"]={{[1]={flags=0,type="INC",value=120,name="PhysicalDamage",keywordFlags=0}},nil}c["200% increased Physical Damage"]={{[1]={flags=0,type="INC",value=200,name="PhysicalDamage",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["+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["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["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["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["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["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["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["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={nil,"deal 100 to 200 added Physical Damage to Ignited Enemies Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"}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["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["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=8192}},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["+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["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["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["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of"}c["30% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=4096}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="Mana",keywordFlags=0}},nil}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["Your Cold Damage can Poison"]={nil,"Your Cold Damage can Poison"}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["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["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed 10% chance to gain an Endurance, Frenzy or Power Charge when a Trap 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 a Trap is Triggered by an Enemy"}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={level=25,name="Scorching Ray"},name="ExtraSkill",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["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["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill"}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["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["30% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=30,name="ElementalDamage",keywordFlags=0}},nil}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["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["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["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["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["You have Far Shot while you do not have Iron Reflexes Elder Item"]={nil,"You have Far Shot while you do not have Iron Reflexes Elder Item"}c["60% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=60,name="LightningDamage",keywordFlags=0}},nil}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]={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["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently"}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["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"}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 Beastial Ursa Skill"]={nil,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["25% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=25,name="CooldownRecovery",keywordFlags=4096}},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["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["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["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["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["+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["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}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"]={nil,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["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["Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"}c["+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={name="Pierce",level=15},name="ExtraSupport",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["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["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["to 30% increased Damage to targets Skills fire an additional Projectile"]={nil,"to 30% increased Damage to targets Skills fire an additional Projectile"}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.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["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={level=5,name="Frostbite"},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={name="Chance to Flee",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["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={level=7,name="RepeatingShockwave"},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["20% increased Totem Life"]={{[1]={flags=0,type="INC",value=20,name="TotemLife",keywordFlags=0}},nil}c["80% increased Armour"]={{[1]={flags=0,type="INC",value=80,name="Armour",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["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["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["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["+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["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["Your Critical Strikes do not deal extra Damage during Flask effect"]={nil,"Your Critical Strikes do not deal extra Damage during Flask effect"}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 33% more Damage during effect"]={nil,"Vaal Skills deal 33% 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["+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["Triggers Level 20 Cold Aegis when Equipped 250% increased Armour and Evasion"]={nil,"Triggers Level 20 Cold Aegis when Equipped 250% increased Armour and Evasion"}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["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["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["15% increased Attack and Movement Speed while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion"}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["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["+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=8,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}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["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item"}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,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["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=150,name="EnergyShieldRechargeFaster",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["Triggers Level 20 Fire Aegis when Equipped 250% increased Armour and Energy Shield"]={nil,"Triggers Level 20 Fire Aegis when Equipped 250% increased Armour and Energy Shield"}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["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"}c["Adds 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["Grants level 20 Death Aura Skill +50 to all Attributes"]={nil,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["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["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["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["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Cold Damage",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["178% increased Physical Damage"]={{[1]={flags=0,type="INC",value=178,name="PhysicalDamage",keywordFlags=0}},nil}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["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["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["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["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when"}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["20% less Minimum Physical Attack Damage 20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum 20% more Maximum Physical Attack Damage"}c["10% increased Damage over Time"]={{[1]={flags=8,type="INC",value=10,name="Damage",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["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}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["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=0}}," of Ailments "}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["20% increased Elemental Damage with Attack Skills 100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills 100% increased Armour and Energy Shield"}c["15% increased Attack and Movement Speed while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"}c["+24 to Strength"]={{[1]={flags=0,type="BASE",value=24,name="Str",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["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["+58 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=58,name="EnergyShield",keywordFlags=0}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use"}c["+16 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=16,name="EnergyShield",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["+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["Vaal Skills deal 69% increased Damage during effect"]={nil,"Vaal Skills deal 69% increased Damage during effect"}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["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["Hits with this Weapon deal 52% increased Damage to Frozen Enemies Hits with this Weapon deal 46% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 52% increased Damage to Frozen Enemies Hits with this Weapon deal 46% 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["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["+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["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["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["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["+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["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["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["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["+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["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["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["25% increased Poison Duration at least 150 Intelligence"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=1048576}}," at least 150 Intelligence"}c["6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Attacks have Blood Magic"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=1}},nil}c["Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons have Avatar of Fire"}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["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["You can have one additional Curse"]={nil,"You can have one additional Curse"}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=19,name="LifeOnHit",keywordFlags=0}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life"}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"}c["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["1% increased Movement Speed per 450 Evasion Rating, up to 100%"]={{[1]={[1]={type="PerStat",stat="Evasion",div=450},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}}," , up to 100%"}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["100% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=100,name="ChaosDamage",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["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["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["Damage Penetrates 3% Cold Resistance"]={{[1]={flags=0,type="BASE",value=3,name="ColdPenetration",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["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["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% 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 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 20 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["+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["5% chance to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"}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["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["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["60% increased Cold Damage"]={{[1]={flags=0,type="INC",value=60,name="ColdDamage",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={name="Fortify",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 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["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["+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["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["+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["+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["+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["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["45% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="FlaskEffect",keywordFlags=0}}," of Chill on You"}c["44% increased Spell Damage"]={{[1]={flags=2,type="INC",value=44,name="Damage",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["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["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["You can have one additional Curse 20% increased Damage per Curse on you"]={nil,"You can have one additional Curse 20% increased Damage per Curse on you"}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["+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["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["30% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=30,name="PhysicalDamage",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["+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["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["+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["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["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 Two Handed Melee Weapons"]={{[1]={flags=35651584,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["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",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["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 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["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["18% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="LifeRecoveryRate",keywordFlags=0}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy Skills which throw Traps have Blood Magic"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy Skills which throw Traps have Blood Magic"}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=true,type="FLAG",keywordFlags=0,name="MinionCausticCloudOnDeath",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["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["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["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["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block"}c["Using Warcries is Instant Warcries cost no Mana"]={nil,"Using Warcries is Instant Warcries cost 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["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={nil,"Hits ignore Enemy Monster Fire Resistance while you are Ignited"}c["Grants level 20 Summon Beastial Snake Skill {variant:3}Grants level 20 Summon Beastial Ursa Skill"]={nil,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["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={level=10,name="Purity of Elements"},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["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["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["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["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["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={name="Generosity",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["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["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["9% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["135% increased Charges used"]={{[1]={flags=0,type="INC",value=135,name="FlaskChargesUsed",keywordFlags=0}},nil}c["10% chance of Arrows Piercing"]={{[1]={flags=8192,type="BASE",value=10,name="PierceChance",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Echo",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["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["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["-5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",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["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["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["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 20 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 20 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={name="Cast on Death",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"}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["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["+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["Arrows Pierce all Targets"]={nil,"Arrows Pierce all Targets"}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["You are Immune to Silence"]={nil,"You are Immune to Silence"}c["30% increased Attack Speed"]={{[1]={flags=1,type="INC",value=30,name="Speed",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={name="Increased Area of Effect",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["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["+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage"]={nil,"+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage"}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,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["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=16384}},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["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["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 20% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 20% 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["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["8% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=8,name="Evasion",keywordFlags=0}},nil}c["25% increased Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=25,name="FireResist",keywordFlags=0}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=90,name="CritChance",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["20% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=20,name="EnemyStunDuration",keywordFlags=0}}," to double "}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 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["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["+45 to Strength"]={{[1]={flags=0,type="BASE",value=45,name="Str",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["18% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["Grants level 20 Summon Beastial Snake Skill"]={nil,nil}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["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["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["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["Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect"}c["+200 Strength Requirement"]={{[1]={flags=0,type="BASE",value=200,name="StrRequirement",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 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["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["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["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage"}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["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["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["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["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["Adds 21 to 35 Cold Damage"]={{[1]={flags=0,type="BASE",value=21,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,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["Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"}c["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={name="Hypothermia",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["10 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="ManaRegen",keywordFlags=0}},nil}c["5% increased Defences"]={{[1]={flags=0,type="INC",value=5,name="Defences",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["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["24% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=24,name="PhysicalDamage",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["+13 to Dexterity"]={{[1]={flags=0,type="BASE",value=13,name="Dex",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["+190 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=190,name="EnergyShield",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["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["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["30% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=30,name="LootRarity",keywordFlags=0}},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["Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion {variant:3}Adds 16-25 Physical Damage to Attacks while you have a Beastial 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 Beastial Minion {variant:3}Adds 16-25 to Attacks while you have a Beastial Minion"}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["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["5% chance to gain Onslaught for 3 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," to gain Onslaught for 3 seconds on Kill Recover 1% of on Kill"}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=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["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 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill"}c["10% of Wand Physical Damage Added as Cold Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsCold",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["Adds 65 to 195 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"}c["Onslaught"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=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 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["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["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blood Magic",level=1},name="ExtraSupport",keywordFlags=0}},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["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit"}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice"}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=150,name="EnemyChillDuration",keywordFlags=0}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-8,name="ManaCost",keywordFlags=0}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=435,name="Accuracy",keywordFlags=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={name="Elemental Proliferation",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage"}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["You have Onslaught while on Low Life"]={nil,"You have Onslaught while on Low Life"}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["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["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={name="Minion Damage",level=17},name="ExtraSupport",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["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["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["50% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-50,name="Damage",keywordFlags=16384}},nil}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["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["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["+20% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0}},nil}c["190% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=190,name="Evasion",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["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["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["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["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion"}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["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["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["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["+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["20% increased Attack Speed"]={{[1]={flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Elemental Hit deals 10% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"Elemental Hit deals 10% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"}c["Your Chaos Damage Poisons Enemies"]={{[1]={value=100,type="BASE",keywordFlags=0,name="ChaosPoisonChance",flags=0}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,type="INC",value=190,name="PhysicalDamage",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["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["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={name="Concentrated Effect",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["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% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="Defences",keywordFlags=0}},nil}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["+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["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun"}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["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["12% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill"}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["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["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["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["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["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["6% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["65% increased Armour"]={{[1]={flags=0,type="INC",value=65,name="Armour",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["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["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={name="Life Leech",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["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["50% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=50,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["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["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy"}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked 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% 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["+240 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=240,name="Accuracy",keywordFlags=0}},nil}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["4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}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["33% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-33,name="CurseEffect",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=30,name="CritMultiplier",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["140% increased Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EnergyShield",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["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["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["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["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["16% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=16,name="Damage",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["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["Hits with this Weapon deal 52% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 52% increased Damage to Frozen Enemies"}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["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["+150 to maximum Life"]={{[1]={flags=0,type="BASE",value=150,name="Life",keywordFlags=0}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum "}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["8% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=8,name="ElementalDamage",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["+30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ColdResist",keywordFlags=0}},nil}c["40% increased Totem Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=16384}},nil}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEnergyShield",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["+12% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=15,name="FlaskManaRecovery",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["13% increased Movement Speed"]={{[1]={flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["+18 to maximum Life"]={{[1]={flags=0,type="BASE",value=18,name="Life",keywordFlags=0}},nil}c["+58 to Dexterity"]={{[1]={flags=0,type="BASE",value=58,name="Dex",keywordFlags=0}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["180% increased Physical Damage"]={{[1]={flags=0,type="INC",value=180,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=60,name="StunRecovery",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["4% additional Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["Remove Bleeding on Flask use"]={nil,"Remove Bleeding on Flask use"}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["Grants Level 20 Summon Petrification Statue Skill"]={nil,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["20% chance to Trigger Level 20 Tentacle Whip on Kill Elder Item"]={{}," to Trigger Level 20 Tentacle Whip on Kill Elder Item"}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["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["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["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask"}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"}c["10% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=10,name="EnergyShield",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["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["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["Your Lightning Damage can Ignite"]={nil,"Your Lightning Damage can Ignite"}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["+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["Perfect Agony"]={nil,"Perfect Agony"}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["+13% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",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["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage"}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["+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 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["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["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=-100,type="MORE",keywordFlags=0,name="Damage",flags=0}},nil}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["10% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-10,name="ManaCost",keywordFlags=0}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}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["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies"}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["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited"}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["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["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block"}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["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["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["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 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["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["12% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=12,name="LootQuantity",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["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["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["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["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["Grants level 30 Reckoning Skill"]={{[1]={flags=0,type="LIST",value={level=30,name="Reckoning"},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["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["+370 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=370,name="Accuracy",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["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["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 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["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["+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["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["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["175% increased Armour"]={{[1]={flags=0,type="INC",value=175,name="Armour",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["Immune to Elemental Status Ailments while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask"}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}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["+40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},nil}c["+10 to Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}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["50% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=50,name="MineLayingSpeed",keywordFlags=0}},nil}c["+35 to Intelligence"]={{[1]={flags=0,type="BASE",value=35,name="Int",keywordFlags=0}},nil}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-18,name="EnemyStunThreshold",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["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned"}c["2% increased Movement Speed"]={{[1]={flags=0,type="INC",value=2,name="MovementSpeed",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["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["0% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootRarity",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["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["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsCold",keywordFlags=0}},nil}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["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["Enemies Become Chilled as they Unfreeze 5% chance to Freeze"]={nil,"Enemies Become Chilled as they Unfreeze 5% chance to Freeze"}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["+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["18% increased Cold Damage"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",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["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item"}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["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["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"}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["30% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="ColdDamage",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["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 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["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["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["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={level=12,name="LightningSpell"},name="ExtraSkill",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["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 Damage with Channelling Skills"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}}," with Channelling Skills"}c["12% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=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["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["15% increased Physical Damage"]={{[1]={flags=0,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}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["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRecoveryRate",keywordFlags=0}},nil}c["Grants level 20 Doryani's Touch Skill +30 to maximum Energy Shield"]={nil,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 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["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 Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," of Elemental Ailments "}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["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["15% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=15,name="Damage",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["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["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy"}c["Arrows that Pierce have 50% chance to cause Bleeding Arrows always Pierce after Chaining"]={nil,"Arrows that Pierce have 50% chance to cause Bleeding Arrows always Pierce after Chaining"}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["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 Beastial 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 Beastial Minion"}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["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["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack"}c["77% increased Spell Damage"]={{[1]={flags=2,type="INC",value=77,name="Damage",keywordFlags=0}},nil}c["+3000 to Armour"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",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 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["+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["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["+23% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ChaosResist",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["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["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["20% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=20,name="FlaskDuration",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["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit"}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["+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["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["+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["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,type="LIST",value={level=1,name="TriggeredSummonSpider"},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["+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["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["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["160% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=160,name="Evasion",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Attacks",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["92% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["200% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=200,name="Evasion",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["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Unknown",level=20},name="ExtraSupport",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["+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["+23 to Armour"]={{[1]={flags=0,type="BASE",value=23,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["8% increased Armour"]={{[1]={flags=0,type="INC",value=8,name="Armour",keywordFlags=0}},nil}c["92% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=92,name="ArmourAndEvasion",keywordFlags=0}},nil}c["60% reduced Duration"]={{[1]={flags=0,type="INC",value=-60,name="Duration",keywordFlags=0}},nil}c["+39 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=39,name="EnergyShield",keywordFlags=0}},nil}c["You always Ignite while Burning"]={nil,"You always Ignite while Burning"}c["+12% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",keywordFlags=0}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=48,name="Evasion",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["92% increased Armour"]={{[1]={flags=0,type="INC",value=92,name="Armour",keywordFlags=0}},nil}c["Reflects 61 Physical Damage to Melee Attackers"]={{},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,type="INC",value=50,name="IgniteBurnFaster",keywordFlags=0}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-50,name="ElementalResist",keywordFlags=0}},nil}c["+20 to Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["+75% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=75,name="ColdResist",keywordFlags=0}},nil}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["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["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=10,name="CritMultiplier",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["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=30,name="FlaskManaRecovery",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["Reflects 17 Physical Damage to Melee Attackers"]={{},nil}c["92% increased Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="EnergyShield",keywordFlags=0}},nil}c["10% increased Dexterity"]={{[1]={flags=0,type="INC",value=10,name="Dex",keywordFlags=0}},nil}c["+5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegen",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["23% increased Poison Duration"]={{[1]={flags=0,type="INC",value=23,name="Duration",keywordFlags=1048576}},nil}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["+20% chance to be Shocked"]={{}," to be Shocked"}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["20% increased Elemental Damage with Attack Skills +55 to maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills +55 to maximum Mana"}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["10% increased Radius of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=10,name="AreaOfEffect",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["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=58,name="CritChance",keywordFlags=0}},nil}c["5% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-5,name="ManaReserved",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["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["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{},""}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["75% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=75,name="BlockChanceConv",keywordFlags=0}},nil}c["Cannot Block Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockAttacks",flags=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["80% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=80,name="BlockChanceConv",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=120,name="BlockChanceConv",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["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["+8% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResistMax",keywordFlags=0}},nil}c["20 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}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["6 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="LifeRegen",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["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["+50 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=50,name="Evasion",keywordFlags=0}},nil}c["1% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,type="INC",value=-50,name="EnemyFreezeDuration",keywordFlags=0}}," on You"}c["+4% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalResist",keywordFlags=0}},nil}c["Acrobatics"]={{[1]={value="Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="ArmourAndEnergyShield",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["250% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently Shaper Item"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently Shaper Item"}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["Triggers Level 20 Fire Aegis when Equipped"]={nil,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["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["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["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["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["-10% Chance to Block"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChance",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["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.4,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["18% increased Fire Damage"]={{[1]={flags=0,type="INC",value=18,name="FireDamage",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["+32 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=32,name="EnergyShield",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["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block"}c["+8 to Armour"]={{[1]={flags=0,type="BASE",value=8,name="Armour",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["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["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["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["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["Has 6 Sockets"]={{[1]={flags=0,type="BASE",value=6,name="SocketCount",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["Triggers Level 20 Cold Aegis when Equipped"]={nil,nil}c["Can Allocate Passives from the Duelist's starting point"]={{},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["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 Movement Speed"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",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["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["120% increased Block Recovery"]={{[1]={flags=0,type="INC",value=120,name="BlockRecovery",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 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["40% increased Physical Damage"]={{[1]={flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["5 Maximum Void Charges Gain a Void Charge every second"]={nil,"5 Maximum Void Charges Gain a Void Charge every second"}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={level=8,name="Summon Raging Spirit"},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["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["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["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["+10% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=10,name="FireResist",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["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["60% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=60,name="BlockChanceConv",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["+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["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit"}c["+2 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=2,name="PowerChargesMax",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["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["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["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 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% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=8192}},nil}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies"}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 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["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["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["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"}c["260% increased Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EnergyShield",keywordFlags=0}},nil}c["+38% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=38,name="LightningResist",keywordFlags=0}},nil}c["Shock Reflection"]={nil,"Shock Reflection"}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry"}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["110% increased Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EnergyShield",keywordFlags=0}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy"}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["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=80,name="CritChance",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["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["90% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["25% Increased Warcry Effect"]={{[1]={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=4}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks"}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["50% increased Physical Damage"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamage",keywordFlags=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["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["230% increased Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="EnergyShield",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["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["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["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["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Innervate",level=18},name="ExtraSupport",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["+14 to all Attributes"]={{[1]={flags=0,type="BASE",value=14,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=14,name="Int",keywordFlags=0}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",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["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["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["12% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=12,name="SpellBlockChance",keywordFlags=0}},nil}c["20% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-20,name="ProjectileSpeed",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["7 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=7,name="LifeRegen",keywordFlags=0}},nil}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["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsLightning",keywordFlags=0}},nil}c["Instant Recovery"]={{[1]={value=100,type="BASE",keywordFlags=0,name="FlaskInstantRecovery",flags=0}},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["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["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["Socketed Gems are Supported by Level 30 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Cold to Fire",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Reduced Mana",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["100% increased Curse Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=2}},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["4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegenPercent",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["20% increased Area Damage"]={{[1]={flags=512,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["20% additional Spell Block chance while Cursed"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," while Cursed"}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=4,name="LifeOnHit",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["15% increased Mine Duration"]={{[1]={flags=0,type="INC",value=15,name="MineDuration",keywordFlags=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["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["+30 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}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["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active Blood Magic"}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["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=16384}},nil}c["20% increased Cold Damage"]={{[1]={flags=0,type="INC",value=20,name="ColdDamage",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["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=15,name="BleedChance",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["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 12 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Attacks",level=12},name="ExtraSupport",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["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["-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["+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["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy"}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["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["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["+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% 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["15% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=15,name="ProjectileSpeed",keywordFlags=0}},nil}c["Triggers Level 20 Elemental Aegis when Equipped 220% increased Armour"]={nil,"Triggers Level 20 Elemental Aegis when Equipped 220% increased Armour"}c["Triggers Level 20 Elemental Aegis when Equipped"]={nil,nil}c["+4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["Gain a Void Charge every second Elder Item"]={nil,"Gain a Void Charge every second Elder Item"}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["116% increased Physical Damage"]={{[1]={flags=0,type="INC",value=116,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",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["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks"}c["3% increased Movement Speed"]={{[1]={flags=0,type="INC",value=3,name="MovementSpeed",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently 60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently 60% increased Damage for each 200 total Mana you have Spent Recently"}c["+43% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=43,name="FireResist",keywordFlags=0}},nil}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["135% increased Armour"]={{[1]={flags=0,type="INC",value=135,name="Armour",keywordFlags=0}},nil}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["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["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit"}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["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["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["10% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=10,name="PhysicalDamage",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["8% increased Physical Damage"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}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["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["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["+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["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["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block"}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges"}c["170% increased Armour"]={{[1]={flags=0,type="INC",value=170,name="Armour",keywordFlags=0}},nil}c["140% increased Armour"]={{[1]={flags=0,type="INC",value=140,name="Armour",keywordFlags=0}},nil}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block"}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,type="LIST",value={level=1,name="Flammability",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["+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["40% increased maximum Mana"]={{[1]={flags=0,type="INC",value=40,name="Mana",keywordFlags=0}},nil}c["Adds 55 to 76 Chaos Damage"]={{[1]={flags=0,type="BASE",value=55,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="ChaosMax",keywordFlags=0}},nil}c["12% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="LightningDamage",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["26% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["You have Onslaught while at maximum Endurance Charges"]={nil,"You have Onslaught while at maximum Endurance Charges"}c["-10% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChanceMax",keywordFlags=0}},nil}c["100% increased Charge Recovery"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargeRecovery",keywordFlags=0}},nil}c["63% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=63,name="CritChance",keywordFlags=0}},nil}c["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike"}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}c["75% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=75,name="CritChance",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["10% increased Skeleton Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}}," Skeleton "}c["500% increased Physical Damage"]={{[1]={flags=0,type="INC",value=500,name="PhysicalDamage",keywordFlags=0}},nil}c["+8% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ColdResist",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["+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["Can Allocate Passives from the Ranger's starting point"]={{},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["3% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Grants level 20 Death Aura Skill"]={nil,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["+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 Totem Placement speed"]={{[1]={flags=0,type="INC",value=10,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["+185 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=185,name="Accuracy",keywordFlags=0}},nil}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["10% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-10,name="EnergyShield",keywordFlags=0}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration"}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["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["10% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=10,name="FireDamageTaken",keywordFlags=0}},nil}c["90% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=90,name="ElementalDamage",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["Far Shot Elder Item"]={nil,"Far Shot Elder Item"}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently Elder Item"]={nil,"400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently Elder Item"}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["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["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamageConvertToFire",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["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use"}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["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["+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=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["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["+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["22% increased Damage"]={{[1]={flags=0,type="INC",value=22,name="Damage",keywordFlags=0}},nil}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["40% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-40,name="Damage",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["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["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["+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["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["+30 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=30,name="Evasion",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["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["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["18% Chance to Shock"]={{[1]={flags=0,type="BASE",value=18,name="EnemyShockChance",keywordFlags=0}},nil}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["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["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["Socketed Gems are Supported by level 18 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",level=18},name="ExtraSupport",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["19% increased Attack Speed"]={{[1]={flags=1,type="INC",value=19,name="Speed",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["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["110% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=110,name="CritChance",keywordFlags=0}},nil}c["25% increased Physical Damage"]={{[1]={flags=0,type="INC",value=25,name="PhysicalDamage",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["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}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["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes"}c["20% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=20,name="FlaskEffect",keywordFlags=0}}," of Chill"}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["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=2,type="BASE",value=50,name="ColdMin",keywordFlags=0},[2]={flags=2,type="BASE",value=100,name="ColdMax",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["11% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=11,name="LootRarity",keywordFlags=0}},nil}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["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["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}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["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["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["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["+2 to Weapon Range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",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["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="LightningDamageConvertToCold",keywordFlags=0}},nil}c["135% increased Physical Damage"]={{[1]={flags=0,type="INC",value=135,name="PhysicalDamage",keywordFlags=0}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",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["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["Has no Attribute Requirements"]={nil,"Has no Attribute Requirements"}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["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["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["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["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["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["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing"}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["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["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["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["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill"}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["+33 to Maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",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["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["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["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge"}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["Grants level 15 Envy Skill"]={{[1]={flags=0,type="LIST",value={level=15,name="Envy"},name="ExtraSkill",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["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["+125 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=125,name="Accuracy",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["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["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["130% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEvasion",keywordFlags=0}},nil}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["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["180% increased Armour"]={{[1]={flags=0,type="INC",value=180,name="Armour",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["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["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["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["40% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=40,name="PhysicalDamage",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["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["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["16% increased Totem Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=16384}},nil}c["83% increased Spell Damage"]={{[1]={flags=2,type="INC",value=83,name="Damage",keywordFlags=0}},nil}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",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["+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["40% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=40,name="Accuracy",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["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["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["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["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["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=8,name="Speed",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["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["+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block"}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 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["13% increased Attack Speed"]={{[1]={flags=1,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["Adds 70 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",keywordFlags=0}},nil}c["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=1000,name="PhysicalDamage",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["45% increased Cold Damage"]={{[1]={flags=0,type="INC",value=45,name="ColdDamage",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["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy"}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["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["-30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="ColdResist",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["150% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEvasion",keywordFlags=0}},nil}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["10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Ghosts"}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["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",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["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["Charan's Sword Sockets: R-R-R-R-R-R"]={nil,"Charan's Sword Sockets: R-R-R-R-R-R"}c["+45% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",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["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["Socketed Gems are supported by level 1 Multistrike"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Multistrike",level=1},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 30 Iron Will"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Iron Will",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["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["+60% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=60,name="CritMultiplier",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["10% increased Effect of Buffs on you"]={{[1]={flags=0,type="INC",value=10,name="BuffEffectOnSelf",keywordFlags=0}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-15,name="Damage",keywordFlags=0}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="AlliesAurasCannotAffectSelf",flags=0}},nil}c["Grants Summon Harbinger of Focus Skill +80 to maximum Life"]={nil,"Grants Summon Harbinger of Focus Skill +80 to maximum Life"}c["95% increased Physical Damage"]={{[1]={flags=0,type="INC",value=95,name="PhysicalDamage",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 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={level=20,name="LightningSpell"},name="ExtraSkill",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["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["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 Elder Item"]={nil,"Iron Reflexes while stationary Elder Item"}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["Iron Reflexes while stationary"]={nil,"Iron Reflexes while stationary"}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["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["+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["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["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["50% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=1048576}},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["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["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["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["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["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["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["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage"}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EvasionAndEnergyShield",keywordFlags=0}},nil}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["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["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["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.8,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["25% increased Movement Speed"]={{[1]={flags=0,type="INC",value=25,name="MovementSpeed",keywordFlags=0}},nil}c["10% reduced Maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["4% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=4,name="Speed",keywordFlags=0}},nil}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["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["+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["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["+475 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=475,name="Accuracy",keywordFlags=0}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant"}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill"}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["+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["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Unknown",level=16},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["-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["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["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use"}c["18% increased Intelligence"]={{[1]={flags=0,type="INC",value=18,name="Int",keywordFlags=0}},nil}c["Arrows always Pierce after Chaining"]={nil,"Arrows always Pierce after Chaining"}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["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["15% reduced Accuracy Rating"]={{[1]={flags=0,type="INC",value=-15,name="Accuracy",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["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,type="LIST",value={level=10,name="Assassin's Mark",noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["+150 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=150,name="Accuracy",keywordFlags=0}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",keywordFlags=0}},nil}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["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["165% increased Armour"]={{[1]={flags=0,type="INC",value=165,name="Armour",keywordFlags=0}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}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["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["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={nil,"deal 80-120 added Chaos Damage against"}c["+120 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShield",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["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["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["+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["300% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEvasion",keywordFlags=0}},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["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["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy"}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["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["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["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["Increases and Reductions to Minion Damage also affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MinionDamageAppliesToPlayer",flags=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["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["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["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Cold Penetration",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["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["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,type="INC",value=-25,name="ChaosDamageTakenOverTime",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["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["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Attacks",level=10},name="ExtraSupport",keywordFlags=0}},nil}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["+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["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 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["100% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"}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["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["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["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["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 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["28% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=28,name="ElementalDamage",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["Manifested Dancing Dervish dies when Rampage ends"]={{},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["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["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["10% increased Totem Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=16384}},nil}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=46,name="LifeOnHit",keywordFlags=0}},nil}c["10% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,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["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies"}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["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["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["+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 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["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["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=31,name="LifeOnHit",keywordFlags=0}},nil}c["25% reduced Bleed duration"]={{[1]={flags=0,type="INC",value=-25,name="Duration",keywordFlags=2097152}},nil}c["+350 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=350,name="Accuracy",keywordFlags=0}},nil}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["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill Shaper Item"]={{}," to Trigger Level 20 Summon Volatile Anomaly on Kill Shaper Item"}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 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["+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["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["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["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["+120 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=120,name="Accuracy",keywordFlags=0}},nil}c["120% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEvasion",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["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["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike"}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,type="LIST",value={level=1,name="Abyssal Cry"},name="ExtraSkill",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["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["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["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-5,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["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["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["+1 Maximum Power Charge"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},nil}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["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You"}c["+28% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=28,name="ElementalResist",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["8% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",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["+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["+60 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=60,name="EnergyShield",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["Grants Summon Harbinger of Storms Skill"]={nil,"Grants Summon Harbinger of Storms Skill"}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["245% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=245,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["-40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-40,name="ColdResist",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["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill"}c["30% increased maximum Mana"]={{[1]={flags=0,type="INC",value=30,name="Mana",keywordFlags=0}},nil}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["20% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=20,name="ManaCost",keywordFlags=0}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Elemental Hit deals 10% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"Elemental Hit deals 10% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"}c["+25% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",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["+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["Socketed Curse Gems are Supported by Level 22 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blasphemy",level=22},name="ExtraSupport",keywordFlags=0}},nil}c["Converted to Cold Damage"]={nil,"Converted to Cold Damage"}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["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["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% reduced Maximum number of Summoned Raging Spirits"]={{}," Maximum number of Summoned Raging Spirits"}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage"}c["20% increased Onslaught duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Onslaught "}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["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["+15 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill"}c["10% chance to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block"}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,type="LIST",value={level=1,name="TriggeredSummonLesserShrine"},name="ExtraSkill",keywordFlags=0}},nil}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire"}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["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["+32% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=32,name="FireResist",keywordFlags=0}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["21% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=21,name="StunRecovery",keywordFlags=0}},nil}c["Attacks have 30% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=22,name="Defences",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["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["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block"}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["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["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["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["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 with Claws"]={{[1]={flags=16384,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["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["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You"}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["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["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["Gain Armour equal to your Reserved Mana"]={nil,"Gain Armour equal to your Reserved Mana"}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["20% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="EnergyShield",keywordFlags=0}},nil}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["+144 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=144,name="EnergyShield",keywordFlags=0}},nil}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["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["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill"}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["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["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["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["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% of Wand Physical Damage Added as Lightning Damage"]={{[1]={flags=524288,type="BASE",value=30,name="PhysicalDamageGainAsLightning",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["Grants level 20 Doryani's Touch Skill"]={nil,nil}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Fire Penetration",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["100% increased Spell Damage"]={{[1]={flags=2,type="INC",value=100,name="Damage",keywordFlags=0}},nil}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningResist",keywordFlags=0}},nil}c["+90 to maximum Mana"]={{[1]={flags=0,type="BASE",value=90,name="Mana",keywordFlags=0}},nil}c["+52% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=52,name="ChaosResist",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["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["-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["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["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["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["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["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["+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["+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["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["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["-1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",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["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["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["Mercury Footprints"]={nil,"Mercury Footprints"}c["+65 to Dexterity"]={{[1]={flags=0,type="BASE",value=65,name="Dex",keywordFlags=0}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,type="INC",value=30,name="Damage",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["20% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=20,name="AvoidStun",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["Your Chaos Damage has 60% chance to Poison Enemies"]={nil,"Your Chaos Damage has 60% chance to Poison Enemies"}c["30% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-30,name="FlaskDuration",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["16% increased Totem Life"]={{[1]={flags=0,type="INC",value=16,name="TotemLife",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["+140 to maximum Life"]={{[1]={flags=0,type="BASE",value=140,name="Life",keywordFlags=0}},nil}c["250% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEvasion",keywordFlags=0}},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["Can't use Chest armour"]={nil,"Can't use Chest armour"}c["82% increased Spell Damage"]={{[1]={flags=2,type="INC",value=82,name="Damage",keywordFlags=0}},nil}c["+121 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=121,name="EnergyShield",keywordFlags=0}},nil}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["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["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["Socketed Gems are Supported by level 6 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",level=6},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["+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["10% increased Intelligence"]={{[1]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["5% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=5,name="PierceChance",keywordFlags=0}},nil}c["15% increased Intelligence"]={{[1]={flags=0,type="INC",value=15,name="Int",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% 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["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["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["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["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}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["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow"}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,type="LIST",value={level=10,name="TriggeredShockedGround"},name="ExtraSkill",keywordFlags=0}},nil}c["+1000 to Spectre maximum Life"]={{[1]={flags=0,type="BASE",value=1000,name="Life",keywordFlags=0}}," Spectre "}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["20% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["80% increased Burning Damage"]={{[1]={flags=8,type="INC",value=80,name="FireDamage",keywordFlags=0}},nil}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={name="Concentrated Effect",level=20},name="ExtraSupport",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["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["50% increased Charges used"]={{[1]={flags=0,type="INC",value=50,name="FlaskChargesUsed",keywordFlags=0}},nil}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["+80 to maximum Mana"]={{[1]={flags=0,type="BASE",value=80,name="Mana",keywordFlags=0}},nil}c["Trigger level 10 Void Gaze when you use a Skill +80 to maximum Mana"]={nil,"Trigger level 10 Void Gaze when you use a Skill +80 to maximum Mana"}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["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=4,name="Speed",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["40% increased Curse Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=2}},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["10% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",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["+280 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=280,name="EnergyShield",keywordFlags=0}},nil}c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=30,name="EnergyShieldRecharge",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["200% increased Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EnergyShield",keywordFlags=0}},nil}c["Adds 65 to 325 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=325,name="PhysicalMax",keywordFlags=0}},nil}c["+300 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=300,name="EnergyShield",keywordFlags=0}},nil}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["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement"}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["Socketed Gems have Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=0}},nil}c["+18% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",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["135% increased Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EnergyShield",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["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["+70 to Dexterity"]={{[1]={flags=0,type="BASE",value=70,name="Dex",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 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 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["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=75,name="CritChance",keywordFlags=0}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing"}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["Socketed Gems are Supported by level 10 Knockback"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Knockback",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["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["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["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["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["-30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="FireResist",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["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["+120 to Armour"]={{[1]={flags=0,type="BASE",value=120,name="Armour",keywordFlags=0}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=125,name="CritMultiplier",keywordFlags=0}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=400,name="Accuracy",keywordFlags=0}},nil}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["+25 to Armour"]={{[1]={flags=0,type="BASE",value=25,name="Armour",keywordFlags=0}},nil}c["Grants Level 20 Aspect of the Crab Skill 350% increased Armour"]={nil,nil}c["Projectiles Pierce an additional Target"]={nil,"Projectiles Pierce an additional Target"}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["625% increased Armour"]={{[1]={flags=0,type="INC",value=625,name="Armour",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["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={type="SkillName",skillName="Vulnerability"},flags=0,type="INC",value=-100,name="ManaReserved",keywordFlags=0}},nil}c["45% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 16 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap",level=16},name="ExtraSupport",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["+188% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=188,name="CritMultiplier",keywordFlags=0}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-40,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["120% increased Armour"]={{[1]={flags=0,type="INC",value=120,name="Armour",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["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=225,name="CritMultiplier",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["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["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["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% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="BASE",value=10,name="SpellDodgeChance",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["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["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["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["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["14% increased Totem Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=16384}},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["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=50,name="AreaOfEffect",keywordFlags=0}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges"}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["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["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["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["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["5% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill"}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["+5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=5,name="ElementalResist",keywordFlags=0}},nil}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["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["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",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["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["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["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["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=2,type="BASE",value=31,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=100,name="LightningMax",keywordFlags=0}},nil}c["Has 2 Abyssal Sockets"]={nil,"Has 2 Abyssal Sockets"}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["120% 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=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"}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["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["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["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["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["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["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 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["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["+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["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=14,name="PhysicalDamageGainAsChaos",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["29% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=29,name="CritChance",keywordFlags=0}},nil}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges"}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["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["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 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsChaos",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["10% increased Movement Speed"]={{[1]={flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,type="INC",value=35,name="Damage",keywordFlags=0}},nil}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["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["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["Socketed Gems are supported by level 20 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["Socketed Gems are supported by level 5 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",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["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["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["26% increased Spell Damage"]={{[1]={flags=2,type="INC",value=26,name="Damage",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["+18 to maximum Mana"]={{[1]={flags=0,type="BASE",value=18,name="Mana",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["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 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["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["360% increased Physical Damage"]={{[1]={flags=0,type="INC",value=360,name="PhysicalDamage",keywordFlags=0}},nil}c["19% chance to Ignite"]={{[1]={flags=0,type="BASE",value=19,name="EnemyIgniteChance",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["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["6% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["22% chance to Ignite"]={{[1]={flags=0,type="BASE",value=22,name="EnemyIgniteChance",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["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["40% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",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["30% increased Cast Speed"]={{[1]={flags=16,type="INC",value=30,name="Speed",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["20% increased Spell Damage"]={{[1]={flags=2,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["17% increased Spell Damage"]={{[1]={flags=2,type="INC",value=17,name="Damage",keywordFlags=0}},nil}c["15 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}},nil}c["Spectres have a Base Duration of 20 seconds"]={nil,"a Base Duration of 20 seconds"}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["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage"}c["10% of Wand Physical Damage Added as Fire Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsFire",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["+40 to Maximum Life"]={{[1]={flags=0,type="BASE",value=40,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["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["35% increased Trap Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=4096}},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["+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["80% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-80,name="TrapDuration",keywordFlags=0}},nil}c["40% increased Trap Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=4096}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}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["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["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["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Melee Physical Damage",level=18},name="ExtraSupport",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["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",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["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["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield"}c["Grants Summon Harbinger of Directions Skill"]={nil,"Grants Summon Harbinger of Directions Skill"}c["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"}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["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum "}c["60% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},nil}c["1% of Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="ManaRegenPercent",keywordFlags=0}},nil}c["+7% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}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["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["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["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["+35 to Dexterity"]={{[1]={flags=0,type="BASE",value=35,name="Dex",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["Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun"}c["16% increased Intelligence"]={{[1]={flags=0,type="INC",value=16,name="Int",keywordFlags=0}},nil}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["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"]={nil,"You have Vaal Pact if you've dealt a Critical Strike Recently"}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you"}c["33% increased Physical Damage"]={{[1]={flags=0,type="INC",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["Your Curses can apply to Hexproof Enemies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CursesIgnoreHexproof",flags=0}},nil}c["71 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=71,name="LifeRegen",keywordFlags=0}},nil}c["+88 to maximum Life"]={{[1]={flags=0,type="BASE",value=88,name="Life",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["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["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}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["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=75,name="LifeRegen",keywordFlags=0}},nil}c["+48 to Dexterity"]={{[1]={flags=0,type="BASE",value=48,name="Dex",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]={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["+48 to Strength"]={{[1]={flags=0,type="BASE",value=48,name="Str",keywordFlags=0}},nil}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["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["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["+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["20% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=18,name="CooldownRecovery",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["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="EnergyShieldRecoveryRate",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["13% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun"}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",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["220% increased Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EnergyShield",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["40% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,type="LIST",value={level=20,name="MerveilWarp"},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["15% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",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["Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap and Mine Damage",level=16},name="ExtraSupport",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["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["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["60% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",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["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["Enemies Ignited by an Attack Burn 20% faster"]={{[1]={flags=1,type="INC",value=20,name="IgniteBurnFaster",keywordFlags=0}},nil}c["+325 to Armour"]={{[1]={flags=0,type="BASE",value=325,name="Armour",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["100% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=100,name="OnslaughtEffect",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["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["+40% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=40,name="CritMultiplier",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["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["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=50,name="CooldownRecovery",keywordFlags=4}},nil}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["+350 to Armour"]={{[1]={flags=0,type="BASE",value=350,name="Armour",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["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level"}c["Has 1 Abyssal Socket 50% increased Effect of Socketed Jewels"]={nil,"Has 1 Abyssal Socket 50% increased Effect of Socketed Jewels"}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["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["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["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["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["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["210% increased Armour"]={{[1]={flags=0,type="INC",value=210,name="Armour",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["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["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["60% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=60,name="MineLayingSpeed",keywordFlags=0}},nil}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["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,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["+55 to maximum Mana"]={{[1]={flags=0,type="BASE",value=55,name="Mana",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["+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["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,type="INC",value=10,name="MovementSpeed",keywordFlags=0}},nil}c["Melee Attacks cause Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},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["+45 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=45,name="EnergyShield",keywordFlags=0}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour"}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=4,type="BASE",value=60,name="PoisonChance",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["Counts as Dual Wielding"]={{[1]={value={key="countsAsDualWielding",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=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["+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 Gems are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Increased Area of Effect",level=20},name="ExtraSupport",keywordFlags=0}},nil}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={level=20,name="TriggeredBoneNova"},name="ExtraSkill",keywordFlags=0}},nil}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect"}c["25% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-25,name="Speed",keywordFlags=0}},nil}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["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["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use"}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["35% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=35,name="LootRarity",keywordFlags=0}},nil}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded"}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["+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={level=16,name="TriggeredMoltenStrike"},name="ExtraSkill",keywordFlags=0}},nil}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEnergyShield",keywordFlags=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["+100 to Maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill"}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["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}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["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["25% increased Defences"]={{[1]={flags=0,type="INC",value=25,name="Defences",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["Nearby Allies have Culling Strike"]={nil,"Culling Strike"}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike"}c["40% increased Movement Speed"]={{[1]={flags=0,type="INC",value=40,name="MovementSpeed",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["Mana Reservation of Herald Skills is always 45%"]={nil,"Mana Reservation of Herald Skills is always 45%"}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["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["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["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["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["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["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["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["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["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["+23 to Strength"]={{[1]={flags=0,type="BASE",value=23,name="Str",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["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalDamageGainAsFire",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["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,type="BASE",value=200,name="Accuracy",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["50% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=50,name="ManaCost",keywordFlags=0}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ColdResist",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 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["Your Physical Damage can Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PhysicalCanChill",flags=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 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["270% increased Physical Damage"]={{[1]={flags=0,type="INC",value=270,name="PhysicalDamage",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["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["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["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["100% increased Mine Arming Speed"]={{}," Arming Speed"}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["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["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["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="Lightning Warp"},name="ExtraSkill",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 20 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Totem",level=20},name="ExtraSupport",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["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["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["Grants Level 20 Aspect of the Avian Skill 150% increased Armour and Evasion"]={nil,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["+6 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=6,name="LifeOnKill",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["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["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["30% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyChillDuration",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["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["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["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FirePenetration",keywordFlags=0}},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["Golems have 13% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",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["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["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["Socketed Gems are Supported by level 30 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Echo",level=30},name="ExtraSupport",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["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["4% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-4,name="ManaCost",keywordFlags=0}},nil}c["15% increased Burning Damage"]={{[1]={flags=8,type="INC",value=15,name="FireDamage",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["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["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 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["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["165% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=165,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,nil}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["30% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-30,name="Speed",keywordFlags=0}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=30,name="PoisonChance",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["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["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["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["+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["+13% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=13,name="LightningResist",keywordFlags=0}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=13,name="FireResist",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["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["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life"}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["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["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["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["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["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=50,name="LifeOnHit",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["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="ManaOnHit",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["+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["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=60,name="LifeOnHit",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["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="LifeOnHit",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["Can't use other Rings"]={nil,"Can't use other Rings"}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["+12 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}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["35% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=35,name="StunRecovery",keywordFlags=0}},nil}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=50,name="AvoidChilled",keywordFlags=0}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",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["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["+50 to maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",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["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["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["30% chance for Attacks to Maim on Hit against Bleeding Enemies"]={{}," to Maim on Hit "}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["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=15,name="MovementSpeed",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["Spells have an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=2}},nil}c["14% increased Melee Damage"]={{[1]={flags=256,type="INC",value=14,name="Damage",keywordFlags=0}},nil}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=25,name="ElementalDamage",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["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["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["220% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EvasionAndEnergyShield",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["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["180% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["20% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-20,name="LootRarity",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["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["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["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["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["+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["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: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={type="SlotNumber",num=2},flags=0,type="INC",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," Reflected "}c["+75 to Intelligence"]={{[1]={flags=0,type="BASE",value=75,name="Int",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={name="Lesser Multiple Projectiles",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["100% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=100,name="ManaRegen",keywordFlags=0}},nil}c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill"}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["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdDamageConvertToFire",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["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["-6 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-6,name="ManaCost",keywordFlags=0}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="ManaRegen",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["+8% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=8,name="LightningResist",keywordFlags=0}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="ManaRegen",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["55% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=55,name="ManaRegen",keywordFlags=0}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=1048576,type="BASE",value=7,name="CritChance",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["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 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 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["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["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting 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["Socketed Gems are Supported by level 16 Increased Minion Speed"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Minion Speed",level=16},name="ExtraSupport",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["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["20% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["29% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-29,name="CurseEffect",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["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["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},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["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",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 Trap Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=4096}},nil}c["10% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",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["15% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-15,name="Life",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["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["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={name="Unknown",level=10},name="ExtraSupport",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["10% reduced Character Size"]={{}," Character Size"}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium"}c["All Sockets are White"]={nil,"All Sockets are White"}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["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["10% increased Fire Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=0}},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["+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["+20% chance to be Pierced by Projectiles {variant:2}Projectiles Pierce you"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by {variant:2}Projectiles Pierce you"}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["+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["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you"}c["Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"}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["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["50% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-50,name="Speed",keywordFlags=0}},nil}c["20% increased Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",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["20% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-20,name="CurseEffectOnSelf",keywordFlags=0}},nil}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["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["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["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit"}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["70% increased Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="EnergyShield",keywordFlags=0}},nil}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["15% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",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["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Controlled Destruction",level=1},name="ExtraSupport",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["Lose 33.5 Mana per Second"]={nil,"Lose 33.5 Mana per Second"}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["19% increased maximum Mana"]={{[1]={flags=0,type="INC",value=19,name="Mana",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["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["40% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=40,name="ManaReserved",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["20% increased Fire Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=0}},nil}c["Has 1 Abyssal Socket"]={nil,"Has 1 Abyssal Socket"}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy"}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion"}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["Socketed Gems are Supported by level 10 Remote Mine"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Remote Mine",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["+5 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",keywordFlags=0}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",keywordFlags=0}},nil}c["+280 to Armour"]={{[1]={flags=0,type="BASE",value=280,name="Armour",keywordFlags=0}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=325,name="Accuracy",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={name="Minion Life",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["35% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=35,name="ManaRegen",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["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=40,name="LightningDamageConvertToCold",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["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["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Concentrated Effect",level=15},name="ExtraSupport",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["+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["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["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["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee"}c["9% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=9,name="Damage",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["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["28% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=28,name="LightningDamage",keywordFlags=0}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-40,name="CurseEffectOnSelf",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["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["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["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["30% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=30,name="ManaRegen",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["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["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["+85 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=85,name="EnergyShield",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["Socketed Gems are Supported by level 14 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Totem",level=14},name="ExtraSupport",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["28% increased Cold Damage"]={{[1]={flags=0,type="INC",value=28,name="ColdDamage",keywordFlags=0}},nil}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["13% increased Fire Damage"]={{[1]={flags=0,type="INC",value=13,name="FireDamage",keywordFlags=0}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire"}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["4% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=4,name="PhysicalDamage",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["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="PhysicalDamage",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["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["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["-20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-20,name="ElementalResist",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["5% increased Dexterity"]={{[1]={flags=0,type="INC",value=5,name="Dex",keywordFlags=0}},nil}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["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["25% increased effect of Fortify on You"]={{[1]={flags=0,type="INC",value=25,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers"}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={name="Faster Attacks",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["Grants level 1 Icestorm Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="IcestormUniqueStaff12"},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["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time"}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["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage"}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["8% chance to Freeze"]={{[1]={flags=0,type="BASE",value=8,name="EnemyFreezeChance",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["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 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["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Unknown",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["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["100% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=100,name="Damage",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["+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["40% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=40,name="CooldownRecovery",keywordFlags=4096}},nil}c["70% increased Burning Damage"]={{[1]={flags=8,type="INC",value=70,name="FireDamage",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% 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["60% increased Armour"]={{[1]={flags=0,type="INC",value=60,name="Armour",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 5 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Cold to Fire",level=5},name="ExtraSupport",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["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["+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["160% increased Spell Damage"]={{[1]={flags=2,type="INC",value=160,name="Damage",keywordFlags=0}},nil}c["30% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=30,name="ElementalDamage",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["Adds 140 to 225 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=140,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=225,name="FireMax",keywordFlags=0}},nil}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified"}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["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["Grants level 15 Vengeance Skill"]={{[1]={flags=0,type="LIST",value={level=15,name="Vengeance"},name="ExtraSkill",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["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 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["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["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["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["Socketed Gems are Supported by level 8 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap",level=8},name="ExtraSupport",keywordFlags=0}},nil}c["Adds 25 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=25,name="CritChance",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["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["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas"}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["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["+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["2% additional Block Chance"]={{[1]={flags=0,type="BASE",value=2,name="BlockChance",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["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["8% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=8,name="AvoidStun",keywordFlags=0}},nil}c["Socketed Gems are supported by level 10 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Life Leech",level=10},name="ExtraSupport",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["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["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Elemental Proliferation",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["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["+100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=100,name="Accuracy",keywordFlags=0}},nil}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["+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 Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,type="INC",value=16,name="AreaOfEffect",keywordFlags=0}},nil}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["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=3,name="ElementalDamage",keywordFlags=0}}," Experience gain 20% increased "}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["50% increased Attack Speed"]={{[1]={flags=1,type="INC",value=50,name="Speed",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["33% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=33,name="ChaosDamage",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["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["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=5,name="LightningResistMax",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["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted"}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["Uses both hand slots"]={nil,"Uses both hand slots"}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["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item"}c["Celestial Footprints"]={nil,"Celestial Footprints"}c["50% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EvasionAndEnergyShield",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["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["420% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=420,name="Evasion",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["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["+200 to maximum Life"]={{[1]={flags=0,type="BASE",value=200,name="Life",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["Triggers level 20 Death Walk when Equipped 4% increased maximum Life"]={nil,"Triggers level 20 Death Walk when Equipped 4% increased maximum Life"}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,type="INC",value=3,name="Int",keywordFlags=0}}," Character Size 6% increased "}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["18% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=40,name="EnergyShield",keywordFlags=0}},nil}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}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["Fire Skills have 20% chance to Poison on Hit"]={nil,"Fire Skills have 20% chance to Poison on Hit"}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["+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=4,type="INC",value=40,name="Damage",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["35% increased maximum Life"]={{[1]={flags=0,type="INC",value=35,name="Life",keywordFlags=0}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=20,name="Accuracy",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["+145 to maximum Life"]={{[1]={flags=0,type="BASE",value=145,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["+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["17% increased Strength"]={{[1]={flags=0,type="INC",value=17,name="Str",keywordFlags=0}},nil}c["Hits with this Weapon deal 57% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon deal 57% increased Damage to Ignited Enemies"}c["+220 to Armour"]={{[1]={flags=0,type="BASE",value=220,name="Armour",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["Flasks gain a Charge every 3 seconds"]={nil,"Flasks gain a Charge every 3 seconds"}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["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["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground"}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["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=70,name="CritChance",keywordFlags=0}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,type="INC",value=18,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["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,type="INC",value=30,name="CritChance",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% of maximum Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill"}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["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["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds"}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["70% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=13,name="EnergyShield",keywordFlags=0}},nil}c["5% increased Physical Damage"]={{[1]={flags=0,type="INC",value=5,name="PhysicalDamage",keywordFlags=0}},nil}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["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["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["+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["+120 to maximum Mana"]={{[1]={flags=0,type="BASE",value=120,name="Mana",keywordFlags=0}},nil}c["15% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=15,name="StunRecovery",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["30% increased Fire Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",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["23% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=23,name="BlockChanceConv",keywordFlags=0}},nil}c["10% increased Mine Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=8192}},nil}c["25% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=25,name="BlockChanceConv",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["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["+24% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=24,name="ElementalResist",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["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["80% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-80,name="Damage",keywordFlags=0}},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["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["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["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["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="CritChance",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["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["12% increased Attack Speed"]={{[1]={flags=1,type="INC",value=12,name="Speed",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["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["Gain 5% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsChaos",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["20% increased Poison Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=1048576}},nil}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["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["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["13% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=13,name="FlaskRecoveryRate",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["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["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["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["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=16384}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",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 Projectile Speed"]={{[1]={flags=0,type="INC",value=10,name="ProjectileSpeed",keywordFlags=0}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=4096}},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["16% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=16,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["Elemental Hit deals 10% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"Elemental Hit deals 10% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"}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["6% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=6,name="AuraEffect",keywordFlags=0}},nil}c["Rquires Level 64 60% increased Spell Damage"]={nil,"Rquires Level 64 60% increased Spell Damage"}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level"}c["+51 to maximum Mana"]={{[1]={flags=0,type="BASE",value=51,name="Mana",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["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["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["9% chance to Freeze"]={{[1]={flags=0,type="BASE",value=9,name="EnemyFreezeChance",keywordFlags=0}},nil}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["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["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",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["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["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=340,name="Defences",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 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["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["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["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["135% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=135,name="Evasion",keywordFlags=0}},nil}c["40% increased Cold Damage"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",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["+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["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["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["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["18% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["You have Onslaught while not on Low Mana"]={nil,"You have Onslaught while not on Low Mana"}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["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["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["Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="ElementalDamageTakenAsChaos",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["+6 to Maximum Life per Elder Item Equipped"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}}," per Elder Item Equipped"}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 Mine Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8192}},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["+30 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=30,name="EnergyShield",keywordFlags=0}},nil}c["+500 to Accuracy against Bleeding Enemies"]={{}," Accuracy "}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["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=25,name="CritChance",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["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life"}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["+3% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=3,name="ElementalResist",keywordFlags=0}},nil}c["75% increased Charges used"]={{[1]={flags=0,type="INC",value=75,name="FlaskChargesUsed",keywordFlags=0}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["Never deal Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NeverCrit",flags=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["24% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=24,name="LootQuantity",keywordFlags=0}},nil}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["100% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=100,name="ManaCost",keywordFlags=0}},nil}c["150% increased Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EnergyShield",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block"}c["14% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=14,name="Evasion",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["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["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,type="INC",value=-10,name="DamageTakenOverTime",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["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=5,name="LifeOnHit",keywordFlags=0}},nil}c["35% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=35,name="Accuracy",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["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["+25 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Dex",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["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["20% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="LifeRecoveryRate",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={name="Added Chaos Damage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["45% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=45,name="EnergyShieldRechargeFaster",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["120% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["12% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["14% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=14,name="LootQuantity",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={name="Blasphemy",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["+175 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=175,name="Accuracy",keywordFlags=0}},nil}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.8,name="LifeRegenPercent",keywordFlags=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["10% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=10,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["15% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=15,name="PoisonChance",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["13% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-13,name="Mana",keywordFlags=0}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=460,name="Accuracy",keywordFlags=0}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",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["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies"}c["15% increased Cast Speed"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["+20 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",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["Grants 1 Passive Skill Point"]={{[1]={flags=0,type="BASE",value=1,name="ExtraPoints",keywordFlags=0}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=25,name="Accuracy",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["Damage Penetrates 25% Cold Resistance if you've"]={{[1]={flags=0,type="BASE",value=25,name="ColdPenetration",keywordFlags=0}}," if you've"}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["-40 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-40,name="ChaosDamageTaken",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Nearby Enemies have 25% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 25% reduced Life Regeneration rate"}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="LIST",value={name="Unknown",level=21},name="ExtraCurse",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["4% increased maximum Mana"]={{[1]={flags=0,type="INC",value=4,name="Mana",keywordFlags=0}},nil}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["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["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["650% increased Armour"]={{[1]={flags=0,type="INC",value=650,name="Armour",keywordFlags=0}},nil}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["8% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["12% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=12,name="FlaskDuration",keywordFlags=0}},nil}c["10% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesGained",keywordFlags=0}},nil}c["50% less Damage to surrounding targets"]={{[1]={flags=0,type="MORE",value=-50,name="Damage",keywordFlags=0}}," to surrounding targets"}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["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=5,name="ElementalPenetration",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["+25 to maximum Mana"]={{[1]={flags=0,type="BASE",value=25,name="Mana",keywordFlags=0}},nil}c["6% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=6,name="EnergyShield",keywordFlags=0}},nil}c["+25 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}},nil}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["+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["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["12% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=12,name="PhysicalDamage",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={name="Added Chaos Damage",level=10},name="ExtraSupport",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["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["20% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",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["+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["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["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=3,name="Speed",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["50% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-50,name="Damage",keywordFlags=0}},nil}c["100% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=100,name="ProjectileSpeed",keywordFlags=0}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=15,name="ElementalDamage",keywordFlags=0}},nil}c["30% increased Damage against Rare and Unique Enemies"]={{[1]={[1]={type="Condition",var="EnemyRareOrUnique"},flags=4,type="INC",value=30,name="Damage",keywordFlags=0}},nil}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["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["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["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["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use"}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["15% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=9,name="ElementalResist",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["20% increased Totem Duration"]={{[1]={flags=0,type="INC",value=20,name="TotemDuration",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["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["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage."}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["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["20% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=20,name="PhysicalDamage",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["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies"}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["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["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 Totem Placement speed"]={{[1]={flags=0,type="INC",value=15,name="TotemPlacementSpeed",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["Grants Perfect Agony during Flask effect"]={nil,"Grants Perfect Agony during Flask effect"}c["90% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",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["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked"}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["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["130% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["15% reduced Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",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["8 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=8,name="LifeRegen",keywordFlags=0}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill"}c["16% increased Cast Speed"]={{[1]={flags=16,type="INC",value=16,name="Speed",keywordFlags=0}},nil}c["10% increased Armour"]={{[1]={flags=0,type="INC",value=10,name="Armour",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["+100 to Strength"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,type="BASE",value=65,name="Mana",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["35% increased Fire Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",keywordFlags=0}},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["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use"}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}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["20% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=20,name="ManaLeechRate",keywordFlags=0}},nil}c["25% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",keywordFlags=0}},nil}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["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["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["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=0}},nil}c["5% increased Damage taken"]={{[1]={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},nil}c["15% increased Trap Damage"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=4096}},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["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["Grants Summon Harbinger of Brutality Skill 5% Chance to Block"]={nil,"Grants Summon Harbinger of Brutality Skill 5% Chance to Block"}c["30% increased Trap Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=4096}},nil}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,type="INC",value=3,name="Defences",keywordFlags=0}}," Character Size 5% increased "}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["4% reduced Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-4,name="ElementalDamageTaken",keywordFlags=0}},nil}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskLifeRecovery",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["+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["-1 Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=4,name="Speed",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["20% increased Mine Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8192}},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["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["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["25% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=25,name="LightningDamage",keywordFlags=0}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies"}c["+18% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ElementalResist",keywordFlags=0}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Beastial 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 Beastial Minion"}c["10% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=4096}},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["25% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="PhysicalDamage",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["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["+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["When Hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",keywordFlags=0}},nil}c["Blood Magic"]={{[1]={value="Blood Magic",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you"}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["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-15,name="EnemyStunThreshold",keywordFlags=0}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",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["4% increased Movement Speed"]={{[1]={flags=0,type="INC",value=4,name="MovementSpeed",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["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,type="LIST",value={level=10,name="Temporal Chains",noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootQuantity",keywordFlags=0}},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["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["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["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["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["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["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["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["20% increased Arrow Speed"]={{[1]={flags=8192,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}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["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Casting",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike"}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,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["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["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["+2 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["30% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=30,name="BlockChanceConv",keywordFlags=0}},nil}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-3,name="ManaCost",keywordFlags=0}},nil}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=8}},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["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["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToCold",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["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["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["+250 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=250,name="EnergyShield",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["When Hit, 30% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=30,name="DamageTakenFromManaBeforeLife",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["Can Allocate Passives from the Templar's starting point"]={{},nil}c["5% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=5,name="Speed",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["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="FirePenetration",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["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=-25,name="GlobalAttributeRequirements",keywordFlags=0}},nil}c["15% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=15,name="Evasion",keywordFlags=0}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,type="BASE",value=14,name="Mana",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["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["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["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["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["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["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}c["+10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",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% 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["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% more Damage"]={{[1]={flags=0,type="MORE",value=10,name="Damage",keywordFlags=0}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=16,name="LightningDamage",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="LightningPenetration",keywordFlags=0}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["190% increased Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="EnergyShield",keywordFlags=0}},nil}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["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry"}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["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["4% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,type="INC",value=25,name="ColdDamage",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["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["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["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["8% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=8,name="CritChance",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["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["35% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=35,name="PhysicalDamage",keywordFlags=0}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-50,name="FireResist",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["18% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="EnduranceChargesDuration",keywordFlags=0}},nil}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["150% increased Armour"]={{[1]={flags=0,type="INC",value=150,name="Armour",keywordFlags=0}},nil}c["10% increased Scorching Ray beam length"]={{},"beam length"}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["Melee Attacks have 15% chance to cause Bleeding"]={{[1]={flags=256,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},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["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["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["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["22% increased Cold Damage"]={{[1]={flags=0,type="INC",value=22,name="ColdDamage",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["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill"}c["10% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=10,name="ManaLeechRate",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["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["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["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["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["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}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["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["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=4096}},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["45% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=45,name="LootRarity",keywordFlags=0}},nil}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=4,name="Speed",keywordFlags=0}},nil}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["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="PhysicalDamage",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["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["Gain 25% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=25,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["+175 to maximum Life"]={{[1]={flags=0,type="BASE",value=175,name="Life",keywordFlags=0}},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["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["20% increased Trap Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=4096}},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["110% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="ArmourAndEnergyShield",keywordFlags=0}},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["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["15% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=15,name="CurseEffect",keywordFlags=0}},nil}c["20% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=-20,name="Duration",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["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["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["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["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["12% increased Cast Speed"]={{[1]={flags=16,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["110% increased Physical Damage"]={{[1]={flags=0,type="INC",value=110,name="PhysicalDamage",keywordFlags=0}},nil}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["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["+80 to Armour"]={{[1]={flags=0,type="BASE",value=80,name="Armour",keywordFlags=0}},nil}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed"}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% chance to Dodge Attacks while affected by Grace"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}}," while affected by Grace"}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["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["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=65536,type="BASE",value=25,name="CritMultiplier",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["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=20,name="Accuracy",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["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["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine"}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect"}c["12% increased Cold Damage"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",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["10% reduced Damage taken from Traps and Mines"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=4096}}," from s and Mines"}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="DamageLifeLeech",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["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["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["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Fire Damage",level=10},name="ExtraSupport",keywordFlags=0}},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["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["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"}c["10% reduced Physical Damage"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamage",keywordFlags=0}},nil}c["+16 to maximum Life"]={{[1]={flags=0,type="BASE",value=16,name="Life",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["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends"}c["Cannot Be Stunned while on Full Energy Shield"]={nil,"Cannot Be Stunned while on Full Energy Shield"}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["20% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",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["+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["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["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["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=700,name="PhysicalDamage",keywordFlags=0}},nil}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["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["20% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="PowerChargesDuration",keywordFlags=0}},nil}c["10% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=8192}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=4096}},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["Vaal Skills deal 69% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills deal 69% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"}c["Grants Level 15 Blood Offering Skill"]={nil,nil}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life"}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["6% increased Fire Damage"]={{[1]={flags=0,type="INC",value=6,name="FireDamage",keywordFlags=0}},nil}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom"}c["2% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=2,name="Speed",keywordFlags=0}},nil}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% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=128}},nil}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses"}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,type="MORE",value=40,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyIgniteDuration",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["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies Every 8 seconds, gain Avatar of Fire for 4 seconds"]={{}," to inflict Bleeding Every 8 seconds, gain Avatar of Fire for 4 seconds"}c["5% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=5,name="AuraEffect",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["+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["18% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=18,name="PhysicalDamage",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["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["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="ManaGainAsEnergyShield",keywordFlags=0}},nil}c["Cannot be Stunned if you've Killed Recently"]={nil,"Cannot be Stunned if you've Killed Recently"}c["35% increased Burning Damage"]={{[1]={flags=8,type="INC",value=35,name="FireDamage",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["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["Your Lightning Damage can Poison"]={nil,"Your Lightning Damage can Poison"}c["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect"}c["Attack Projectiles Return to You after hitting targets"]={nil,"Attack Projectiles Return to You after hitting targets"}c["100% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=100,name="FlaskRecoveryRate",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["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["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["20% increased Armour"]={{[1]={flags=0,type="INC",value=20,name="Armour",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["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["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["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["15% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-15,name="Speed",keywordFlags=0}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootRarity",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["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["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["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",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["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 Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}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["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 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["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["40% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ColdDamage",keywordFlags=0}},nil}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["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["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["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members"}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["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["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["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Chaos Damage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=40,name="CritChance",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["65% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-65,name="FlaskRecovery",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["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["10% reduced Charges used"]={{[1]={flags=0,type="INC",value=-10,name="FlaskChargesUsed",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["24% increased Trap Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=4096}},nil}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["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["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,type="BASE",value=2,name="ActiveTrapLimit",keywordFlags=0}},nil}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["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill"}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["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["10% chance to gain a Power Charge on Hit against Enemies that are on Full Life"]={{}," to gain a Power Charge on Hit "}c["18% increased Strength"]={{[1]={flags=0,type="INC",value=18,name="Str",keywordFlags=0}},nil}c["+2000 to Armour"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",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["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["Grants level 20 Summon Beastial Rhoa Skill {variant:2}Grants level 20 Summon Beastial Snake Skill"]={nil,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["30% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-30,name="TrapThrowingSpeed",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["Cannot Be Slowed to Below Base Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=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["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=20,name="Damage",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["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["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["20% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootRarity",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["135% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=135,name="ArmourAndEvasion",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["+76 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=76,name="EnergyShield",keywordFlags=0}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={nil,"Projectile Attack Skills have 60% increased Critical Strike Chance"}c["5% increased maximum Mana"]={{[1]={flags=0,type="INC",value=5,name="Mana",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["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 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["30% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["30% increased Totem Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=16384}},nil}c["-10 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-10,name="ChaosDamageTaken",keywordFlags=0}},nil}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["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% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["90% increased Charges used"]={{[1]={flags=0,type="INC",value=90,name="FlaskChargesUsed",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["6% increased Spell Damage"]={{[1]={flags=2,type="INC",value=6,name="Damage",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% increased maximum Mana"]={{[1]={flags=0,type="INC",value=6,name="Mana",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["+12% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",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["+20 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",keywordFlags=0}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=40,name="LootRarity",keywordFlags=0}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="LifeOnKill",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["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["3% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=3,name="Speed",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["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances"}c["100% increased Armour"]={{[1]={flags=0,type="INC",value=100,name="Armour",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["8% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=8,name="Speed",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["18% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=18,name="CurseEffect",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["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",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["+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["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["+450 to Armour"]={{[1]={flags=0,type="BASE",value=450,name="Armour",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"}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["235% increased Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EnergyShield",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["6% increased Damage with Bows"]={{[1]={flags=8192,type="INC",value=6,name="Damage",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["Take 30 Chaos Damage per Second during Flask effect"]={nil,"30 Chaos Damage per Second during Flask effect"}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["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["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["160% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEnergyShield",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["15% reduced Flask Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}c["12% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=12,name="PhysicalDamage",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 to Intelligence"]={{[1]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}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["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["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["14% increased Trap Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=4096}},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["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["10% increased Cold Damage"]={{[1]={flags=0,type="INC",value=10,name="ColdDamage",keywordFlags=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["+5 to Strength"]={{[1]={flags=0,type="BASE",value=5,name="Str",keywordFlags=0}},nil}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["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["70 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=70,name="LifeRegen",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["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["6% additional Block Chance with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyStunDuration",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["15% increased maximum Mana"]={{[1]={flags=0,type="INC",value=15,name="Mana",keywordFlags=0}},nil}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["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["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["began Recently"]={nil,"began Recently"}c["Gain a Void Charge every second"]={nil,"Gain a Void Charge every second"}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["20% increased Light Radius"]={{[1]={flags=0,type="INC",value=20,name="LightRadius",keywordFlags=0}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,type="MORE",value=-50,name="ManaReserved",keywordFlags=0}},nil}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["Primordial"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:PrimordialJewel",flags=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["+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["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["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,type="INC",value=24,name="FireDamage",keywordFlags=0}},nil}c["3% additional chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=3,name="AttackDodgeChance",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["Extra gore"]={nil,"Extra gore"}c["Trigger level 10 Void Gaze when you use a Skill"]={nil,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["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["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["Gain Life and Mana from Leech instantly on Critical Strike"]={nil,"Gain Life and Mana from Leech instantly on Critical Strike"}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["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["10% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}c["33% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=33,name="ElementalDamage",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["5% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}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["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life"}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use"}c["5% increased Experience gain {variant:2,3}3% increased Experience gain"]={{}," Experience gain {variant:2,3}3% increased Experience gain"}c["Socketed Gems are Supported by level 18 Added Lightning Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Lightning Damage",level=18},name="ExtraSupport",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["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["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge"}c["You are Cursed with Level 20 Vulnerability"]={nil,"You are Cursed with Level 20 Vulnerability"}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",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["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["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["+10 to maximum Life"]={{[1]={flags=0,type="BASE",value=10,name="Life",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["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["+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["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,nil}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["+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["+12 to maximum Life"]={{[1]={flags=0,type="BASE",value=12,name="Life",keywordFlags=0}},nil}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["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["43% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=43,name="ManaRegen",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["+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["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 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["+5 to Dexterity"]={{[1]={flags=0,type="BASE",value=5,name="Dex",keywordFlags=0}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=60,name="CritChance",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["+33 to maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",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["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["100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEnergyShield",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["+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["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["60 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=60,name="LifeRegen",keywordFlags=0}},nil}c["You are Cursed with Level 20 Vulnerability You count as on Low Life while you are Cursed with Vulnerability"]={nil,"You are Cursed with Level 20 Vulnerability You count as on Low Life while you are Cursed with Vulnerability"}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=16,name="PhysicalDamage",keywordFlags=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["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["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"}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["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["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death"}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["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["Melee Attacks have 8% chance to cause Bleeding"]={{[1]={flags=256,type="BASE",value=8,name="BleedChance",keywordFlags=0}},nil}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used"}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["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["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["28% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=28,name="PhysicalDamage",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["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by "}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["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["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["Grants Level 20 Aspect of the Spider Skill 170% increased Evasion and Energy Shield"]={nil,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["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"}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["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["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["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["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken"}c["+212 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=212,name="IntRequirement",keywordFlags=0}},nil}c["+60 to Intelligence"]={{[1]={flags=0,type="BASE",value=60,name="Int",keywordFlags=0}},nil}c["30% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["Curse Reflection"]={nil,"Curse Reflection"}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["4% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=4,name="Speed",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["40% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-40,name="LootRarity",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=16384,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["9% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting"}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["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["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["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy"}c["6% increased maximum Life"]={{[1]={flags=0,type="INC",value=6,name="Life",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["15% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["30% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-30,name="StrRequirement",keywordFlags=0}},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=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["+30% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",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["22% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=22,name="PhysicalDamage",keywordFlags=0}},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["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,type="LIST",value={level=15,name="UniqueAnimateWeapon"},name="ExtraSkill",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["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["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["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["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["Requiresd level 54"]={nil,"Requiresd level 54"}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 to maximum Mana"]={{[1]={flags=0,type="BASE",value=15,name="Mana",keywordFlags=0}},nil}c["15% chance to Ignite"]={{[1]={flags=0,type="BASE",value=15,name="EnemyIgniteChance",keywordFlags=0}},nil}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["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["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["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["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges"}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["+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["7% increased Movement Speed"]={{[1]={flags=0,type="INC",value=7,name="MovementSpeed",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["+35% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=35,name="LightningResist",keywordFlags=0}},nil}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["25% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyStunDuration",keywordFlags=0}},nil}c["18% Chance to Block"]={{[1]={flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}},nil}c["50% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=50,name="FlaskRecovery",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["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["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["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,type="INC",value=60,name="FireDamage",keywordFlags=0}},nil}c["20% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-20,name="MovementSpeed",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["70% increased Physical Damage"]={{[1]={flags=0,type="INC",value=70,name="PhysicalDamage",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["Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite 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["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies"}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["35% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}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["3% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=3,name="Speed",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["20% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=20,name="PhysicalDamage",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["+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["8% increased Cast Speed"]={{[1]={flags=16,type="INC",value=8,name="Speed",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["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["+650 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=650,name="Evasion",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["Cannot be Frozen"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=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["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ElementalDamage",keywordFlags=0}},nil}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% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,type="LIST",value={level=12,name="Summon Stone Golem"},name="ExtraSkill",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["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning"}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["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["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["310% increased Physical Damage"]={{[1]={flags=0,type="INC",value=310,name="PhysicalDamage",keywordFlags=0}},nil}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["+45% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=45,name="FireResist",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["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["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["Unaffected by Temporal Chains"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["Lose 7% of maximum Mana per Second"]={nil,"Lose 7% of maximum Mana per Second"}c["15% increased Area Damage"]={{[1]={flags=512,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskManaRecovery",keywordFlags=0}},nil}c["145% increased Physical Damage"]={{[1]={flags=0,type="INC",value=145,name="PhysicalDamage",keywordFlags=0}},nil}c["13% increased Area Damage"]={{[1]={flags=512,type="INC",value=13,name="Damage",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["Damage Penetrates 3% Fire Resistance"]={{[1]={flags=0,type="BASE",value=3,name="FirePenetration",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["Socketed Gems are Supported by level 11 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap",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["90% increased Armour"]={{[1]={flags=0,type="INC",value=90,name="Armour",keywordFlags=0}},nil}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"]={nil,"400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}}," with Attack Skills"}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="BleedChance",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["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,type="INC",value=3,name="Dex",keywordFlags=0}}," Character Size 6% increased "}c["+10% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalResist",keywordFlags=0}},nil}c["+46 to maximum Life"]={{[1]={flags=0,type="BASE",value=46,name="Life",keywordFlags=0}},nil}c["35% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=35,name="LightningDamage",keywordFlags=0}},nil}c["25% increased Knockback Distance"]={{[1]={flags=0,type="INC",value=25,name="EnemyKnockbackDistance",keywordFlags=0}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}},nil}c["24% increased Armour"]={{[1]={flags=0,type="INC",value=24,name="Armour",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["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["25% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=25,name="FlaskEffect",keywordFlags=0}}," of Shock"}c["12% increased Armour"]={{[1]={flags=0,type="INC",value=12,name="Armour",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["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["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["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["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["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["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["80% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=80,name="ChaosDamage",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["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=16777217,type="INC",value=5,name="Speed",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["+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["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}},nil}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["26% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",keywordFlags=0}},nil}c["50% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",keywordFlags=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["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 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["+55 to maximum Life"]={{[1]={flags=0,type="BASE",value=55,name="Life",keywordFlags=0}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,type="INC",value=17,name="Speed",keywordFlags=0}},nil}c["32% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=32,name="ElementalDamage",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["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["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["You have Resolute Technique while you do not have Elemental Overload Elder Item"]={nil,"You have Resolute Technique while you do not have Elemental Overload Elder Item"}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["25% increased Light Radius"]={{[1]={flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["Culling Strike"]={{},"Culling Strike"}c["Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"]={nil,"Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-8,name="ManaCost",keywordFlags=0}},nil}c["10% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time"}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["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["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["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["5% increased Experience gain"]={{}," Experience gain"}c["20% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}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["15% chance to Shock"]={{[1]={flags=0,type="BASE",value=15,name="EnemyShockChance",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["20% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["+26 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=26,name="LifeOnKill",keywordFlags=0}},nil}c["14% increased Physical Damage"]={{[1]={flags=0,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",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["Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"]={nil,"Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"}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["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["+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["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% 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["+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["+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["60% increased Block Recovery"]={{[1]={flags=0,type="INC",value=60,name="BlockRecovery",keywordFlags=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["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=45,name="FireDamageConvertToChaos",keywordFlags=0}},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["15% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you"}c["15% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootRarity",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={name="Cold to Fire",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["10% increased Area of Effect for Traps"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=4096}},nil}c["10% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=10,name="LightningDamage",keywordFlags=0}},nil}c["Adds 1 to 51 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=51,name="LightningMax",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["30% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",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["75% increased Physical Damage"]={{[1]={flags=0,type="INC",value=75,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["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["Items and Gems have 50% increased Attribute Requirements"]={nil,"Items and Gems have 50% increased Attribute Requirements"}c["20% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-20,name="LightRadius",keywordFlags=0}},nil}c["Rquires Level 64"]={nil,"Rquires Level 64"}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["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["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["10% increased Area Damage"]={{[1]={flags=512,type="INC",value=10,name="Damage",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["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds"}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill"}c["2% chance to Freeze"]={{[1]={flags=0,type="BASE",value=2,name="EnemyFreezeChance",keywordFlags=0}},nil}c["22% increased Fire Damage"]={{[1]={flags=0,type="INC",value=22,name="FireDamage",keywordFlags=0}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=60,name="ChaosResist",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["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["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["Elemental Equilibrium"]={{[1]={value="Elemental Equilibrium",type="LIST",keywordFlags=0,name="Keystone",flags=0}},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["Eldritch Battery"]={{[1]={value="Eldritch Battery",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}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["25% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}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["4% additional Block Chance"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",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["+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["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["100% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=100,name="LightningDamage",keywordFlags=0}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned"}c["225% increased Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EnergyShield",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["+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["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage"}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["8% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=263,name="EvasionAndEnergyShield",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 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["24% increased Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ColdDamage",keywordFlags=0}},nil}c["100% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=100,name="BlockChanceConv",keywordFlags=0}},nil}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,type="INC",value=20,name="AreaOfEffect",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["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTrapLimit",keywordFlags=0}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=20,name="Evasion",keywordFlags=0}},nil}c["40% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-40,name="LightRadius",keywordFlags=0}},nil}c["8% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["Vaal Skills deal 33% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills deal 33% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"}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% 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["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["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["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["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["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["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["+10 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",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["18% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=18,name="EnergyShield",keywordFlags=0}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You"}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning"}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["+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["+50 to Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}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["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["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["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["12% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=12,name="ChaosDamage",keywordFlags=0}},nil}c["70% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=70,name="ChaosDamage",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["80% less Burning Damage"]={{[1]={flags=8,type="MORE",value=-80,name="FireDamage",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["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["15% increased Cold Damage"]={{[1]={flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["Your hits can't be Evaded"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["13% increased Cold Damage"]={{[1]={flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=0}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=28,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["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["30% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=30,name="Accuracy",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["160% increased Armour"]={{[1]={flags=0,type="INC",value=160,name="Armour",keywordFlags=0}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use"}c["10% increased Damage taken"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",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["180% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=180,name="Evasion",keywordFlags=0}},nil}c["Grants Level 20 Aspect of the Crab Skill"]={nil,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["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,type="INC",value=20,name="CritChance",keywordFlags=8192}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",keywordFlags=0}},nil}c["13% increased Light Radius"]={{[1]={flags=0,type="INC",value=13,name="LightRadius",keywordFlags=0}},nil}c["15% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=2}},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["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["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["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy"}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle {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 35% 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["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=25,name="CritChance",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["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["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,type="INC",value=15,name="Accuracy",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["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["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["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["+18% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["Damage Penetrates 2% Cold Resistance"]={{[1]={flags=0,type="BASE",value=2,name="ColdPenetration",keywordFlags=0}},nil}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["Grants level 20 Summon Beastial Rhoa Skill"]={nil,nil}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=4,type="INC",value=80,name="CritChance",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["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Generosity",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["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["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=16}},nil}c["25% increased Zombie Size"]={{}," Size"}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["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["+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["Crimson Dance"]={nil,"Crimson Dance"}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered"}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["20% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=20,name="ManaRegen",keywordFlags=0}},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["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["+500 to maximum Life"]={{[1]={flags=0,type="BASE",value=500,name="Life",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["+30 to Dexterity"]={{[1]={flags=0,type="BASE",value=30,name="Dex",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 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["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["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Ice Bite",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["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["+5% of maximum Life per second to maximum Life Leech rate"]={{[1]={flags=0,type="BASE",value=5,name="MaxLifeLeechRate",keywordFlags=0}},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["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["5% increased Intelligence"]={{[1]={flags=0,type="INC",value=5,name="Int",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["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second"}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["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["+10% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ChaosResist",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["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["20% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=20,name="CurseEffect",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-20,name="EnemyStunThreshold",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["Socketed Gems are Supported by level 10 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=1}},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["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["+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["10% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=10,name="Accuracy",keywordFlags=0}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius"}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["8% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies 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 Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"}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["20% increased Melee Damage"]={{[1]={flags=256,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["12% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="Damage",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["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["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["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use"}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={level=10,name="VaalAuraElementalDamageHealing"},name="ExtraSkill",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["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={level=18,name="SummonRigwaldsPack"},name="ExtraSkill",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["+6% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdResistMax",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["10% increased Fortify duration"]={{[1]={flags=0,type="INC",value=10,name="FortifyDuration",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={level=10,name="Flammability",noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock"}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=100,name="CritMultiplier",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["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["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["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish"}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=60,name="ManaCost",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["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["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["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["28% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}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 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["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["+250 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=250,name="Accuracy",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["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["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["25% increased Spell Damage"]={{[1]={flags=2,type="INC",value=25,name="Damage",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["+110 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=110,name="EnergyShield",keywordFlags=0}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=6,name="LootQuantity",keywordFlags=0}},nil}c["30% increased Light Radius"]={{[1]={flags=0,type="INC",value=30,name="LightRadius",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["10% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}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["Requiresd level 54 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}},"Requiresd level 54 "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block"}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted"}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["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["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["Arrows that Pierce cause Bleeding"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ArrowsThatPierceCauseBleeding",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["+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["0.3% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.3,name="LifeRegenPercent",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=4,type="MORE",value=100,name="CritChance",keywordFlags=0}},nil}c["10% Chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},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["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["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies"}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["30% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=30,name="SpellDodgeChance",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["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["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds"}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["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRechargeFaster",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["+30% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}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["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["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=16,name="PhysicalDamage",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["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["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,type="INC",value=18,name="Mana",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["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["14% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=14,name="FlaskEffect",keywordFlags=0}},nil}c["+67 to maximum Life"]={{[1]={flags=0,type="BASE",value=67,name="Life",keywordFlags=0}},nil}c["8% increased Dexterity"]={{[1]={flags=0,type="INC",value=8,name="Dex",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["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["Strength provides no bonus to Maximum Life"]={nil,"Strength provides no bonus to Maximum Life"}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["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["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["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["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["Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect"}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=90,name="CritMultiplier",keywordFlags=0}},nil}c["+65 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=65,name="EnergyShield",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["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=90,name="CritChance",keywordFlags=0}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EnergyShield",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["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour"}c["75% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=75,name="ProjectileSpeed",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["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellDodgeChance",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["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["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["Extra Gore"]={nil,"Extra Gore"}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["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed"}c["+5 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="LifeOnKill",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["20% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["Iron Reflexes"]={{[1]={value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Unwavering Stance"]={{[1]={value="Unwavering Stance",type="LIST",keywordFlags=0,name="Keystone",flags=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 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["50% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEvasion",keywordFlags=0}},nil}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["+20 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=20,name="Evasion",keywordFlags=0}},nil}c["+6 to maximum Mana"]={{[1]={flags=0,type="BASE",value=6,name="Mana",keywordFlags=0}},nil}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["+28% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=28,name="LightningResist",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["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["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["6% Chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",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["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["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["10% chance to Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=63,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+75 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=75,name="EnergyShield",keywordFlags=0}},nil}c["+8 to Dexterity"]={{[1]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0}},nil}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["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["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["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageConvertToChaos",keywordFlags=0}},nil}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=115,name="EvasionAndEnergyShield",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["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["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["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen"}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Mana Leech",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["Adds 16-25 Physical Damage to Attacks while you have a Beastial 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 Beastial Minion"}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["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["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["5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",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["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["+22% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=22,name="ElementalResist",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["Gore Footprints"]={nil,"Gore Footprints"}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["+30 to maximum Life"]={{[1]={flags=0,type="BASE",value=30,name="Life",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["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["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["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 Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["+28% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=28,name="ColdResist",keywordFlags=0}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit"}c["16% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["If you have 3 Primordial Jewels, can Summon up to 1 additional Golem at a time"]={{[1]={[1]={type="MultiplierThreshold",threshold=3,var="PrimordialJewel"},flags=0,type="BASE",value=1,name="ActiveGolemLimit",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["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use"}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["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage"}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["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["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["20% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Avatar of Fire"]={{[1]={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["24% increased maximum Life"]={{[1]={flags=0,type="INC",value=24,name="Life",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["16% increased Mine Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=8192}},nil}c["9% increased Movement Speed"]={{[1]={flags=0,type="INC",value=9,name="MovementSpeed",keywordFlags=0}},nil}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsCold",keywordFlags=0}},nil}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsFire",keywordFlags=0}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,type="INC",value=11,name="Speed",keywordFlags=0}},nil}c["4% increased Attack Speed"]={{[1]={flags=1,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+40 to Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=50,name="BleedChance",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["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["+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["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["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=40,name="LifeOnHit",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={name="Cast when Stunned",level=10},name="ExtraSupport",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["+38% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=38,name="ColdResist",keywordFlags=0}},nil}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,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["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["-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["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["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["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["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["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=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["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["+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["20% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=20,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 {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["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["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"}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["+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["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["300% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EvasionAndEnergyShield",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["Prefix: IncreasedLife6"]={nil,"Prefix: IncreasedLife6"}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["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["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["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:1}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["+26% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=26,name="LightningResist",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["You have Onslaught while not on Low Mana Lose 33.5 Mana per Second"]={nil,"You have Onslaught while not on Low Mana Lose 33.5 Mana per Second"}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["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=true,type="FLAG",keywordFlags=0,name="MinionInstability",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["+10 to maximum Life"]={{[1]={flags=0,type="BASE",value=10,name="Life",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["+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["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["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["Gain 5 Souls for Vaal Skills on Rampage Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage Rampage"}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["10% reduced Charges used"]={{[1]={flags=0,type="INC",value=-10,name="FlaskChargesUsed",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["28% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=28,name="BlockChanceConv",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["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["23% increased Spell Damage"]={{[1]={flags=2,type="INC",value=23,name="Damage",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["+180 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=180,name="EnergyShield",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["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=60,name="LightningDamageConvertToChaos",keywordFlags=0}},nil}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["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["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["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}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["+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["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["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["217% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=217,name="EvasionAndEnergyShield",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["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["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["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes"}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["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["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["Minions deal 37% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=37,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}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["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["+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["+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["18% increased Spell Damage"]={{[1]={flags=2,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["65% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="ArmourAndEnergyShield",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["+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["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second"}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["18% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",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["10% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=10,name="Speed",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["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["8% increased Cold Damage"]={{[1]={flags=0,type="INC",value=8,name="ColdDamage",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["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["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill"}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["Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration"}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["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["+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["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["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["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["+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["16% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=16,name="PhysicalDamage",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["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["1% increased Movement Speed per 450 Evasion Rating, up to 100% -40 Physical Damage taken when hit by Animals"]={{[1]={[1]={type="PerStat",stat="Evasion",div=450},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}}," , up to 100% -40 Physical Damage taken when hit by Animals"}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["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["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["40% increased Armour"]={{[1]={flags=0,type="INC",value=40,name="Armour",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["50% increased Blind duration"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Blind "}c["+30 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="ManaOnKill",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["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["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["10% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 20 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"}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["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["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["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["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]={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["10% increased Damage taken"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",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["+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["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["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["+30% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",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["+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["+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["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellDamageAppliesToAttacks",flags=0}},nil}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["+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["24% increased Elemental Damage with Attack Skills Adds 40 to 60 Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ElementalDamage",keywordFlags=0}}," with Attack Skills Adds 40 to 60 Cold Damage"}c["22% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=22,name="ElementalDamage",keywordFlags=0}},nil}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["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["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["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% 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["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=10,name="Speed",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["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["10% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",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["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["14% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}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["16% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=16,name="Accuracy",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["+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["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["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["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 46% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 46% increased Damage to Shocked 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["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["25% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-25,name="FlaskDuration",keywordFlags=0}},nil}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["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["+1% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=1,name="ColdResistMax",keywordFlags=0}},nil}c["Adds an additional Arrow"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=1}},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["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["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 5% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=5,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=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["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["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["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["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,type="INC",value=65,name="IgniteBurnSlower",keywordFlags=0}},nil}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower"}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=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["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["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["+50 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=50,name="Accuracy",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["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 22 to 35 Chaos Damage"]={{[1]={flags=0,type="BASE",value=22,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ChaosMax",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["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["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["15% increased Spell Damage"]={{[1]={flags=2,type="INC",value=15,name="Damage",keywordFlags=0}},nil}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["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=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["7% increased Intelligence"]={{[1]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}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["Grants level 20 Summon Beastial Ursa Skill +400 to Accuracy Rating"]={nil,nil}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["+35 to Dexterity"]={{[1]={flags=0,type="BASE",value=35,name="Dex",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["8% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["400 Cold Damage taken per second per Frenzy Charge while moving Elder Item"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving Elder Item"}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["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["45% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=45,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}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["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=33,name="CritMultiplier",keywordFlags=0}},nil}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["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["Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect"}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["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["-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["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}c["20% chance to Ignite"]={{[1]={flags=0,type="BASE",value=20,name="EnemyIgniteChance",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["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["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["+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"]={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["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["+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["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=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["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="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["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["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability"}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["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["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["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground"}c["Elemental Hit deals 10% increased Damage"]={nil,"Elemental Hit deals 10% increased Damage"}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["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["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,type="INC",value=3,name="Defences",keywordFlags=0}}," Character Size 5% increased "}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["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["Hits with this Weapon deal 57% increased Damage to Ignited Enemies Hits with this Weapon deal 52% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 57% increased Damage to Ignited Enemies Hits with this Weapon deal 52% increased Damage to Frozen Enemies"}c["+15 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=15,name="Evasion",keywordFlags=0}},nil}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["+60 to Strength"]={{[1]={flags=0,type="BASE",value=60,name="Str",keywordFlags=0}},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["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy"}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["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["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 31% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 31% 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["+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["+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["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding"}c["+(-20--10)% to Chaos Resistance"]={nil,"+(-20--10)% to Chaos Resistance"}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["+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["Damage Penetrates 2% Fire Resistance"]={{[1]={flags=0,type="BASE",value=2,name="FirePenetration",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["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["+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["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["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["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["+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["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["+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["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["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["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["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["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={nil,"deal 100 to 200 added Physical Damage to Ignited Enemies Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"}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["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["+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["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["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["30% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=4096}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="Mana",keywordFlags=0}},nil}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["Your Cold Damage can Poison"]={nil,"Your Cold Damage can Poison"}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["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["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed 10% chance to gain an Endurance, Frenzy or Power Charge when a Trap 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 a Trap is Triggered by an Enemy"}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["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 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["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["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["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"}c["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["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["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["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["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["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["You have Far Shot while you do not have Iron Reflexes Elder Item"]={nil,"You have Far Shot while you do not have Iron Reflexes Elder Item"}c["60% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=60,name="LightningDamage",keywordFlags=0}},nil}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]={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["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["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"}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 Beastial Ursa Skill"]={nil,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["25% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=25,name="CooldownRecovery",keywordFlags=4096}},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["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["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["Cannot be Blinded"]={nil,"Cannot be Blinded"}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["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["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}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["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["Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"}c["+13% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=13,name="ColdResist",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["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["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["to 30% increased Damage to targets Skills fire an additional Projectile"]={nil,"to 30% increased Damage to targets Skills fire an additional Projectile"}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.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["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["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["20% increased Totem Life"]={{[1]={flags=0,type="INC",value=20,name="TotemLife",keywordFlags=0}},nil}c["80% increased Armour"]={{[1]={flags=0,type="INC",value=80,name="Armour",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["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["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["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["Elemental Hit deals 10% increased Damage With 40 total Intelligence and Dexterity in Radius, Elemental Hit cannot choose Fire"]={nil,"Elemental Hit deals 10% 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["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["Your Critical Strikes do not deal extra Damage during Flask effect"]={nil,"Your Critical Strikes do not deal extra Damage during Flask effect"}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 33% more Damage during effect"]={nil,"Vaal Skills deal 33% 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["+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["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["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["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["15% increased Attack and Movement Speed while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion"}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["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["+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=8,type="INC",value=100,name="FireDamage",keywordFlags=0}},nil}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["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=150,name="EnergyShieldRechargeFaster",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["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["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"}c["Adds 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["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["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["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["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["178% increased Physical Damage"]={{[1]={flags=0,type="INC",value=178,name="PhysicalDamage",keywordFlags=0}},nil}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["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["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["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["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["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["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when"}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["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["5% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-5,name="ManaCost",keywordFlags=0}},nil}c["20% less Minimum Physical Attack Damage 20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum 20% more Maximum Physical Attack Damage"}c["10% increased Damage over Time"]={{[1]={flags=8,type="INC",value=10,name="Damage",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["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,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["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["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=0}}," of Ailments "}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["20% increased Elemental Damage with Attack Skills 100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills 100% increased Armour and Energy Shield"}c["15% increased Attack and Movement Speed while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"}c["+24 to Strength"]={{[1]={flags=0,type="BASE",value=24,name="Str",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["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["+58 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=58,name="EnergyShield",keywordFlags=0}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use"}c["+16 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=16,name="EnergyShield",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["+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["Vaal Skills deal 69% increased Damage during effect"]={nil,"Vaal Skills deal 69% increased Damage during effect"}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["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["Hits with this Weapon deal 52% increased Damage to Frozen Enemies Hits with this Weapon deal 46% increased Damage to Shocked Enemies"]={nil,"Hits with this Weapon deal 52% increased Damage to Frozen Enemies Hits with this Weapon deal 46% 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["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["+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["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["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["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["+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["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["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["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["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["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["25% increased Poison Duration at least 150 Intelligence"]={{[1]={flags=0,type="INC",value=25,name="Duration",keywordFlags=1048576}}," at least 150 Intelligence"}c["6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Attacks have Blood Magic"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=1}},nil}c["Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons have Avatar of Fire"}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["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["You can have one additional Curse"]={nil,"You can have one additional Curse"}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=19,name="LifeOnHit",keywordFlags=0}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life"}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"}c["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["1% increased Movement Speed per 450 Evasion Rating, up to 100%"]={{[1]={[1]={type="PerStat",stat="Evasion",div=450},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}}," , up to 100%"}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["100% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=100,name="ChaosDamage",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["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["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 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["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% 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 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 20 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["+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["5% chance to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"}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["15% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",keywordFlags=0}},nil}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["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["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["60% increased Cold Damage"]={{[1]={flags=0,type="INC",value=60,name="ColdDamage",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 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["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["+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["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["+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["+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["+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["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["45% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="FlaskEffect",keywordFlags=0}}," of Chill on You"}c["44% increased Spell Damage"]={{[1]={flags=2,type="INC",value=44,name="Damage",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["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["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["You can have one additional Curse 20% increased Damage per Curse on you"]={nil,"You can have one additional Curse 20% increased Damage per Curse on you"}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["+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["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["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["+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["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["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 Two Handed Melee Weapons"]={{[1]={flags=35651584,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["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",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["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["18% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="LifeRecoveryRate",keywordFlags=0}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy Skills which throw Traps have Blood Magic"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy Skills which throw Traps have Blood Magic"}c["Enemies killed by Zombies explode dealing Fire Damage"]={nil,"Enemies killed by Zombies explode dealing Fire Damage"}c["30% increased Damage against Rare and Unique Enemies"]={{[1]={[1]={type="Condition",var="EnemyRareOrUnique"},flags=4,type="INC",value=30,name="Damage",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=true,type="FLAG",keywordFlags=0,name="MinionCausticCloudOnDeath",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["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["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block"}c["Using Warcries is Instant Warcries cost no Mana"]={nil,"Using Warcries is Instant Warcries cost 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["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={nil,"Hits ignore Enemy Monster Fire Resistance while you are Ignited"}c["Grants level 20 Summon Beastial Snake Skill {variant:3}Grants level 20 Summon Beastial Ursa Skill"]={nil,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["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["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["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["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["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=10,name="LifeOnHit",keywordFlags=0}},nil}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["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["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["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["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["9% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["135% increased Charges used"]={{[1]={flags=0,type="INC",value=135,name="FlaskChargesUsed",keywordFlags=0}},nil}c["10% chance of Arrows Piercing"]={{[1]={flags=8192,type="BASE",value=10,name="PierceChance",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=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["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["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["-5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",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["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 20 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 20 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["50% of Physical Damage Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"}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["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["+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["Arrows Pierce all Targets"]={nil,"Arrows Pierce all Targets"}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["15% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-15,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["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["You are Immune to Silence"]={nil,"You are Immune to Silence"}c["30% increased Attack Speed"]={{[1]={flags=1,type="INC",value=30,name="Speed",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["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["+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage"]={nil,"+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage"}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,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["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=16384}},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["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["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["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["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 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% 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["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 Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=20,name="LightningDamageManaLeech",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["8% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=8,name="Evasion",keywordFlags=0}},nil}c["25% increased Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=25,name="FireResist",keywordFlags=0}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=90,name="CritChance",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["20% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=20,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["+45 to Strength"]={{[1]={flags=0,type="BASE",value=45,name="Str",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["18% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["Grants level 20 Summon Beastial Snake Skill"]={nil,nil}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["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["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["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["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["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["Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect"}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["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["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage"}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["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["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["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["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["Adds 21 to 35 Cold Damage"]={{[1]={flags=0,type="BASE",value=21,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,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["Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"}c["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["10 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="ManaRegen",keywordFlags=0}},nil}c["5% increased Defences"]={{[1]={flags=0,type="INC",value=5,name="Defences",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["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["24% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=24,name="PhysicalDamage",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["+13 to Dexterity"]={{[1]={flags=0,type="BASE",value=13,name="Dex",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["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["also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill"}c["25% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,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["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["30% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=30,name="LootRarity",keywordFlags=0}},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["Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion {variant:3}Adds 16-25 Physical Damage to Attacks while you have a Beastial 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 Beastial Minion {variant:3}Adds 16-25 to Attacks while you have a Beastial Minion"}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["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["5% chance to gain Onslaught for 3 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," to gain Onslaught for 3 seconds on Kill Recover 1% of on Kill"}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=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["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 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 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["Adds 65 to 195 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"}c["Onslaught"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=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 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["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["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["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 gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit"}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice"}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=150,name="EnemyChillDuration",keywordFlags=0}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-8,name="ManaCost",keywordFlags=0}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=435,name="Accuracy",keywordFlags=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["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage"}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["You have Onslaught while on Low Life"]={nil,"You have Onslaught while on Low Life"}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["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["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["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["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["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}c["50% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-50,name="Damage",keywordFlags=16384}},nil}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["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["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["45% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=45,name="EnemyStunDuration",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["+20% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ColdResist",keywordFlags=0}},nil}c["190% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=190,name="Evasion",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["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["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["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["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion"}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["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["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["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["+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["20% increased Attack Speed"]={{[1]={flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["Elemental Hit deals 10% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"]={nil,"Elemental Hit deals 10% increased Damage With 40 total Strength and Intelligence in Radius, Elemental Hit cannot choose Cold"}c["Your Chaos Damage Poisons Enemies"]={{[1]={value=100,type="BASE",keywordFlags=0,name="ChaosPoisonChance",flags=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["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["15% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=15,name="CurseEffect",keywordFlags=0}},nil}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["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% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="Defences",keywordFlags=0}},nil}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["+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["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun"}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["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["12% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill"}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["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["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["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["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["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["6% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",keywordFlags=0}},nil}c["65% increased Armour"]={{[1]={flags=0,type="INC",value=65,name="Armour",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["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["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["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["50% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=50,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["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["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy"}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked 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% 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["+240 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=240,name="Accuracy",keywordFlags=0}},nil}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["4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}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["33% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-33,name="CurseEffect",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=30,name="CritMultiplier",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["140% increased Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EnergyShield",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["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["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["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["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["16% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=16,name="Damage",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["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["Hits with this Weapon deal 52% increased Damage to Frozen Enemies"]={nil,"Hits with this Weapon deal 52% increased Damage to Frozen Enemies"}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["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["+150 to maximum Life"]={{[1]={flags=0,type="BASE",value=150,name="Life",keywordFlags=0}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum "}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["8% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=8,name="ElementalDamage",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["+30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ColdResist",keywordFlags=0}},nil}c["40% increased Totem Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=16384}},nil}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEnergyShield",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["+12% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=15,name="FlaskManaRecovery",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["13% increased Movement Speed"]={{[1]={flags=0,type="INC",value=13,name="MovementSpeed",keywordFlags=0}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["+18 to maximum Life"]={{[1]={flags=0,type="BASE",value=18,name="Life",keywordFlags=0}},nil}c["+58 to Dexterity"]={{[1]={flags=0,type="BASE",value=58,name="Dex",keywordFlags=0}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["180% increased Physical Damage"]={{[1]={flags=0,type="INC",value=180,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=60,name="StunRecovery",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["4% additional Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=0}},nil}c["Remove Bleeding on Flask use"]={nil,"Remove Bleeding on Flask use"}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["Grants Level 20 Summon Petrification Statue Skill"]={nil,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["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["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["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["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask"}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"}c["10% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=10,name="EnergyShield",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["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["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["Your Lightning Damage can Ignite"]={nil,"Your Lightning Damage can Ignite"}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["+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["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["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["+13% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",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["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage"}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["+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 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["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["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=-100,type="MORE",keywordFlags=0,name="Damage",flags=0}},nil}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["10% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-10,name="ManaCost",keywordFlags=0}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}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["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies"}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["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited"}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["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["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block"}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["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["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["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 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["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["12% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=12,name="LootQuantity",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["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["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["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["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["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["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["+370 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=370,name="Accuracy",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 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["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["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["+2000 to Armour"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",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["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["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["175% increased Armour"]={{[1]={flags=0,type="INC",value=175,name="Armour",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["Immune to Elemental Status Ailments while using a Flask"]={nil,"Immune to Elemental Status Ailments while using a Flask"}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}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["+40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},nil}c["+10 to Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}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["50% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=50,name="MineLayingSpeed",keywordFlags=0}},nil}c["+35 to Intelligence"]={{[1]={flags=0,type="BASE",value=35,name="Int",keywordFlags=0}},nil}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-18,name="EnemyStunThreshold",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["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned"}c["2% increased Movement Speed"]={{[1]={flags=0,type="INC",value=2,name="MovementSpeed",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["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["0% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootRarity",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["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["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsCold",keywordFlags=0}},nil}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["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["Enemies Become Chilled as they Unfreeze 5% chance to Freeze"]={nil,"Enemies Become Chilled as they Unfreeze 5% chance to Freeze"}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["+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["18% increased Cold Damage"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",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["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item"}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["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["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"}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["30% increased Cold Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=30,name="ColdDamage",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["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 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["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["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["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["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["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 Damage with Channelling Skills"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=0}}," with Channelling Skills"}c["12% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=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["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["15% increased Physical Damage"]={{[1]={flags=0,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}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["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 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["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 Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," of Elemental Ailments "}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["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["15% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=15,name="Damage",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["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["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy"}c["Arrows that Pierce have 50% chance to cause Bleeding Arrows always Pierce after Chaining"]={nil,"Arrows that Pierce have 50% chance to cause Bleeding Arrows always Pierce after Chaining"}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["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 Beastial 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 Beastial Minion"}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["+3000 to Armour"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",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["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["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of"}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["+20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningResist",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["20% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=20,name="FlaskDuration",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["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["6% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=6,name="Speed",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 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["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["172% increased Physical Damage"]={{[1]={flags=0,type="INC",value=172,name="PhysicalDamage",keywordFlags=0}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=160,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["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=27,name="CritChance",keywordFlags=0}},nil}c["200% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=200,name="Evasion",keywordFlags=0}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-25,name="Speed",keywordFlags=0}},nil}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["+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["+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["+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["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["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["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies"}c["60% reduced Duration"]={{[1]={flags=0,type="INC",value=-60,name="Duration",keywordFlags=0}},nil}c["92% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% increased Dexterity"]={{[1]={flags=0,type="INC",value=10,name="Dex",keywordFlags=0}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",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["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["+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["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["+20 to Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Int",keywordFlags=0}},nil}c["92% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=92,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+39 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=39,name="EnergyShield",keywordFlags=0}},nil}c["23% increased Trap Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=4096}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=48,name="Evasion",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["92% increased Armour"]={{[1]={flags=0,type="INC",value=92,name="Armour",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["Reflects 61 Physical Damage to Melee Attackers"]={{},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["-50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-50,name="ElementalResist",keywordFlags=0}},nil}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=30,name="EnergyShield",keywordFlags=0}},nil}c["92% increased Energy Shield"]={{[1]={flags=0,type="INC",value=92,name="EnergyShield",keywordFlags=0}},nil}c["Reflects 241 Physical Damage to Melee Attackers"]={{},nil}c["+5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegen",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["23% increased Poison Duration"]={{[1]={flags=0,type="INC",value=23,name="Duration",keywordFlags=1048576}},nil}c["300% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEvasion",keywordFlags=0}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}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["20% increased Elemental Damage with Attack Skills +55 to maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=0}}," with Attack Skills +55 to maximum Mana"}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["-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["Reflects 17 Physical Damage to Melee Attackers"]={{},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=58,name="CritChance",keywordFlags=0}},nil}c["You always Ignite while Burning"]={nil,"You always Ignite while Burning"}c["4% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-4,name="ManaReserved",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["50% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-50,name="Damage",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["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["10% increased Radius of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=10,name="AreaOfEffect",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["40% reduced Stun Recovery"]={{[1]={flags=0,type="INC",value=-40,name="StunRecovery",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["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["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["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{},""}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["75% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=75,name="BlockChanceConv",keywordFlags=0}},nil}c["Cannot Block Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBlockAttacks",flags=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["80% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=80,name="BlockChanceConv",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=120,name="BlockChanceConv",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["+8% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResistMax",keywordFlags=0}},nil}c["20 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["Acrobatics"]={{[1]={value="Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="LifeRegen",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["+60 Maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently Shaper Item"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently Shaper Item"}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["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["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["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=45,name="FireDamageConvertToChaos",keywordFlags=0}},nil}c["1% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",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["50% reduced Freeze Duration on You"]={{[1]={flags=0,type="INC",value=-50,name="EnemyFreezeDuration",keywordFlags=0}}," on You"}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["+4% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalResist",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["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["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["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=8,name="PhysicalDamageGainAsChaos",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["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds"}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["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["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["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["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["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["-10% Chance to Block"]={{[1]={flags=0,type="BASE",value=-10,name="BlockChance",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["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},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 Critical Strike Chance"]={{[1]={flags=0,type="INC",value=20,name="CritChance",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["+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["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block"}c["+8 to Armour"]={{[1]={flags=0,type="BASE",value=8,name="Armour",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["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["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["14% increased Melee Damage"]={{[1]={flags=256,type="INC",value=14,name="Damage",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["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy"}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["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["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["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["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["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends"}c["120% increased Block Recovery"]={{[1]={flags=0,type="INC",value=120,name="BlockRecovery",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["+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["6 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="ManaRegen",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["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=35651584,type="INC",value=20,name="EnemyStunDuration",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["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["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["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack"}c["60% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=60,name="BlockChanceConv",keywordFlags=0}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=8192}},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["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 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["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["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"}c["+2 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=2,name="PowerChargesMax",keywordFlags=0}},nil}c["Lose 7% of maximum Mana per Second"]={nil,"Lose 7% of maximum Mana per Second"}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 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["110% increased Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EnergyShield",keywordFlags=0}},nil}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["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["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["260% increased Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EnergyShield",keywordFlags=0}},nil}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["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["+38% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=38,name="LightningResist",keywordFlags=0}},nil}c["Shock Reflection"]={nil,"Shock Reflection"}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks"}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry"}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["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy"}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["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["230% increased Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="EnergyShield",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["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["90% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["25% Increased Warcry Effect"]={{[1]={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=4}},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 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["+14 to all Attributes"]={{[1]={flags=0,type="BASE",value=14,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=14,name="Int",keywordFlags=0}},nil}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["+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["8% increased Fire Damage"]={{[1]={flags=0,type="INC",value=8,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["100% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",keywordFlags=0}},nil}c["20% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-20,name="ProjectileSpeed",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["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=4,name="Speed",keywordFlags=0}},nil}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["Your Physical Damage can Chill"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PhysicalCanChill",flags=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["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["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},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["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["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["12% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=12,name="SpellBlockChance",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["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["7 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=7,name="LifeRegen",keywordFlags=0}},nil}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="FirePenetration",keywordFlags=0}},nil}c["100% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=100,name="FlaskRecoveryRate",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["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["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["100% increased Curse Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=2}},nil}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["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["20% increased Area Damage"]={{[1]={flags=512,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["20% additional Spell Block chance while Cursed"]={{[1]={flags=2,type="BASE",value=20,name="BlockChance",keywordFlags=0}}," while Cursed"}c["20% increased Cold Damage"]={{[1]={flags=0,type="INC",value=20,name="ColdDamage",keywordFlags=0}},nil}c["18% Chance to Block"]={{[1]={flags=0,type="BASE",value=18,name="BlockChance",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["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["25% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="PhysicalDamage",keywordFlags=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["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active Blood Magic"}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["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["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=16384}},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["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["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["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["200% increased Armour against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles"}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["+78 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=78,name="EnergyShield",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["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds"}c["Gain a Void Charge every second Elder Item"]={nil,"Gain a Void Charge every second Elder Item"}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["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy"}c["+18% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=18,name="LightningResist",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["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["3% increased Movement Speed"]={{[1]={flags=0,type="INC",value=3,name="MovementSpeed",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently 60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently 60% increased Damage for each 200 total Mana you have Spent Recently"}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["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["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["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["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["50% increased Spell Damage"]={{[1]={flags=2,type="INC",value=50,name="Damage",keywordFlags=0}},nil}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["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["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks"}c["10% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["+43% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=43,name="FireResist",keywordFlags=0}},nil}c["8% increased Physical Damage"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",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=0},[2]={flags=0,type="BASE",value=33,name="FireMax",keywordFlags=0}},nil}c["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit"}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% 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["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges"}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit"}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}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["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 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["40% increased maximum Mana"]={{[1]={flags=0,type="INC",value=40,name="Mana",keywordFlags=0}},nil}c["Adds 55 to 76 Chaos Damage"]={{[1]={flags=0,type="BASE",value=55,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="ChaosMax",keywordFlags=0}},nil}c["12% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="LightningDamage",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["26% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=26,name="PhysicalDamage",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["100% increased Charge Recovery"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargeRecovery",keywordFlags=0}},nil}c["170% increased Armour"]={{[1]={flags=0,type="INC",value=170,name="Armour",keywordFlags=0}},nil}c["140% increased Armour"]={{[1]={flags=0,type="INC",value=140,name="Armour",keywordFlags=0}},nil}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground"}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["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["10% increased Skeleton Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}}," Skeleton "}c["You have Onslaught while at maximum Endurance Charges"]={nil,"You have Onslaught while at maximum Endurance Charges"}c["+8% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ColdResist",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["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike"}c["75% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=75,name="CritChance",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["Grants level 20 Death Aura Skill"]={{[1]={flags=0,type="LIST",value={skillId="ChaosDegenAuraUnique",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["500% increased Physical Damage"]={{[1]={flags=0,type="INC",value=500,name="PhysicalDamage",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["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["10% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=10,name="TotemPlacementSpeed",keywordFlags=0}},nil}c["650% increased Armour"]={{[1]={flags=0,type="INC",value=650,name="Armour",keywordFlags=0}},nil}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["+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["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, Ethereal Knives fires 5 additional Projectiles"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles"}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["+1 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["90% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=90,name="ElementalDamage",keywordFlags=0}},nil}c["+1 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["Far Shot Elder Item"]={nil,"Far Shot Elder Item"}c["+185 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=185,name="Accuracy",keywordFlags=0}},nil}c["20% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-20,name="LightRadius",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["50% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=50,name="Damage",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["10% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=10,name="FireDamageTaken",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["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["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["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["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy"}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["22% increased Damage"]={{[1]={flags=0,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=40,name="EnergyShield",keywordFlags=0}},nil}c["40% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-40,name="Damage",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["+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["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["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["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["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 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["+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["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["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["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["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["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["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["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["+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["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["25% increased Physical Damage"]={{[1]={flags=0,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["20% Chance to Shock"]={{[1]={flags=0,type="BASE",value=20,name="EnemyShockChance",keywordFlags=0}},nil}c["Can't use Chest armour"]={nil,"Can't use Chest armour"}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["19% increased Attack Speed"]={{[1]={flags=1,type="INC",value=19,name="Speed",keywordFlags=0}},nil}c["20% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=20,name="FlaskEffect",keywordFlags=0}}," of Chill"}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["Stygian Vise League: Abyss"]={nil,"Stygian Vise League: Abyss"}c["22% increased Attack Speed"]={{[1]={flags=1,type="INC",value=22,name="Speed",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["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["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["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["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}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["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["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill"}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["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["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["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="LightningDamageConvertToCold",keywordFlags=0}},nil}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["+5 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",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["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["Has no Attribute Requirements"]={nil,"Has no Attribute Requirements"}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["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["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["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["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["+2 to Weapon Range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",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["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing"}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["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["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["+45% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=45,name="FireResist",keywordFlags=0}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill"}c["With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill"}c["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["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["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge"}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["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["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["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["+125 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=125,name="Accuracy",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["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["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["130% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEvasion",keywordFlags=0}},nil}c["17% increased Spell Damage"]={{[1]={flags=2,type="INC",value=17,name="Damage",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["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["180% increased Armour"]={{[1]={flags=0,type="INC",value=180,name="Armour",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["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["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["40% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["Minions have 60% chance to Poison Enemies on Hit"]={{}," to Pois on Hit"}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["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["16% increased Totem Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=16384}},nil}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["50% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",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["40% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=40,name="Accuracy",keywordFlags=0}},nil}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["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["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["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["+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["+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["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["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["+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block"}c["Grants Summon Harbinger of the Arcane Skill"]={nil,"Grants Summon Harbinger of the Arcane Skill"}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["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["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["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=1000,name="PhysicalDamage",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["45% increased Cold Damage"]={{[1]={flags=0,type="INC",value=45,name="ColdDamage",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["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 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["-30% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="ColdResist",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["Adds 70 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",keywordFlags=0}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEvasion",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["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy"}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["+28% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=28,name="LightningResist",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["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["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["10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Ghosts"}c["+45% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=45,name="CritMultiplier",keywordFlags=0}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges"}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["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",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["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["+60% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=60,name="CritMultiplier",keywordFlags=0}},nil}c["Charan's Sword Sockets: R-R-R-R-R-R"]={nil,"Charan's Sword Sockets: R-R-R-R-R-R"}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["15% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-15,name="Damage",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["Grants Summon Harbinger of Focus Skill +80 to maximum Life"]={nil,"Grants Summon Harbinger of Focus Skill +80 to maximum Life"}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["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["Attacks with this Weapon Maim on hit"]={nil,"Maim on 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["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["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["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["5% reduced Mana Reserved"]={{[1]={flags=0,type="INC",value=-5,name="ManaReserved",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["95% increased Physical Damage"]={{[1]={flags=0,type="INC",value=95,name="PhysicalDamage",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["+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["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["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 Elder Item"]={nil,"Iron Reflexes while stationary Elder Item"}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["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["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["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["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["37% increased Spell Damage"]={{[1]={flags=2,type="INC",value=37,name="Damage",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["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% 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["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["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["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["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["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,type="BASE",value=5,name="LightningResistMax",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"]={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["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["35% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=35,name="ManaRegen",keywordFlags=0}},nil}c["10% reduced Maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant"}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["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["+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["+200 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=200,name="Evasion",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["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["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["+475 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=475,name="Accuracy",keywordFlags=0}},nil}c["+5 Mana Gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",keywordFlags=0}},nil}c["18% increased Intelligence"]={{[1]={flags=0,type="INC",value=18,name="Int",keywordFlags=0}},nil}c["Arrows always Pierce after Chaining"]={nil,"Arrows always Pierce after Chaining"}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["+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["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["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["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["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",keywordFlags=0}},nil}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["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["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["18% increased Physical Damage"]={{[1]={flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["+13 to Strength"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0}},nil}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["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShield",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["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["15% reduced Accuracy Rating"]={{[1]={flags=0,type="INC",value=-15,name="Accuracy",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["150% increased Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EnergyShield",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["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["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["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["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["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={nil,"deal 80-120 added Chaos Damage against"}c["Cannot Be Stunned while on Full Energy Shield"]={nil,"Cannot Be Stunned while on Full Energy Shield"}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["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["+140 to maximum Life"]={{[1]={flags=0,type="BASE",value=140,name="Life",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["90% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,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["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["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["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,type="INC",value=-25,name="ChaosDamageTakenOverTime",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["Increases and Reductions to Minion Damage also affect you"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="MinionDamageAppliesToPlayer",flags=0}},nil}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["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["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["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 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["100% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"}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["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,type="BASE",value=25,name="ManaOnKill",keywordFlags=0}}," ing a Frozen Enemy"}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["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 Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",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["88% increased Physical Damage"]={{[1]={flags=0,type="INC",value=88,name="PhysicalDamage",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["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["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=3,name="Speed",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["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["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["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["10% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,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["28% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=28,name="ElementalDamage",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["60% increased Flask Effect Duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},nil}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["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["+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["+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["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 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["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["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 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["+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["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["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["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=31,name="LifeOnHit",keywordFlags=0}},nil}c["+120 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=120,name="Accuracy",keywordFlags=0}},nil}c["120% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEvasion",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["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=8,name="LifeOnHit",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["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike"}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["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["8% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=8,name="Speed",keywordFlags=0}},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["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-5,name="EnemyStunThreshold",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["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["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,type="LIST",value={skillId="AbyssalCry",level=1},name="ExtraSkill",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["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["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["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["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["+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["Vaal Skills deal 33% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills deal 33% more Damage during effect Vaal Skills used during effect do not apply Soul Gain Prevention"}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["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You"}c["+28% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=28,name="ElementalResist",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["-40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-40,name="ColdResist",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["+60 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=60,name="EnergyShield",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["Grants Summon Harbinger of Storms Skill"]={nil,"Grants Summon Harbinger of Storms Skill"}c["+10% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ChaosResist",keywordFlags=0}},nil}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=245,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEvasion",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["+25% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",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["+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["+20% chance to be Shocked"]={{}," to be Shocked"}c["Converted to Cold Damage"]={nil,"Converted to Cold Damage"}c["30% increased maximum Mana"]={{[1]={flags=0,type="INC",value=30,name="Mana",keywordFlags=0}},nil}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["20% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=20,name="ManaCost",keywordFlags=0}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time"}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"}c["75% reduced Maximum number of Summoned Raging Spirits"]={{}," Maximum number of Summoned Raging Spirits"}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage"}c["20% increased Onslaught duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Onslaught "}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["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["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["10% chance to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block"}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["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire"}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["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["+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["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}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["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["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["+29% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=29,name="FireResist",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["+32% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=32,name="FireResist",keywordFlags=0}},nil}c["21% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=21,name="StunRecovery",keywordFlags=0}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=45,name="Evasion",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["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=22,name="Defences",keywordFlags=0}},nil}c["8% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyStunDuration",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["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["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["8% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=150,name="CritMultiplier",keywordFlags=0}},nil}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["+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["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["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["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["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["Adds 1 to 51 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=51,name="LightningMax",keywordFlags=0}},nil}c["Gain Armour equal to your Reserved Mana"]={nil,"Gain Armour equal to your Reserved Mana"}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["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["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["100% increased Aspect of the Avian Buff Effect"]={{[1]={flags=0,type="INC",value=100,name="BuffEffect",keywordFlags=0}}," Aspect of the Avian "}c["+225 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=225,name="EnergyShield",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["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["10% increased Cold Damage"]={{[1]={flags=0,type="INC",value=10,name="ColdDamage",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["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 Doryani's Touch Skill"]={{[1]={flags=0,type="LIST",value={skillId="TouchOfGod",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["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=6,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 5% of Life when a Spirit Charge expires or is consumed"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed"}c["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["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["+90 to maximum Mana"]={{[1]={flags=0,type="BASE",value=90,name="Mana",keywordFlags=0}},nil}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed"}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["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["50% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEnergyShield",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["70% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEnergyShield",keywordFlags=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["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["+52% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=52,name="ChaosResist",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["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["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["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["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["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack"}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["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["+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["+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["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["30% increased Spell Damage"]={{[1]={flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["-1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=20,name="AvoidStun",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["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["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["Mercury Footprints"]={nil,"Mercury Footprints"}c["+65 to Dexterity"]={{[1]={flags=0,type="BASE",value=65,name="Dex",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 Armour"]={{[1]={flags=0,type="INC",value=8,name="Armour",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=4096}},nil}c["82% increased Spell Damage"]={{[1]={flags=2,type="INC",value=82,name="Damage",keywordFlags=0}},nil}c["+121 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=121,name="EnergyShield",keywordFlags=0}},nil}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["250% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEvasion",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["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["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["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["5% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=5,name="PierceChance",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["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["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["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration"}c["10% increased Intelligence"]={{[1]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["15% increased Intelligence"]={{[1]={flags=0,type="INC",value=15,name="Int",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["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you"}c["Elemental Hit deals 10% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"]={nil,"Elemental Hit deals 10% increased Damage With 40 total Dexterity and Strength in Radius, Elemental Hit cannot choose Lightning"}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["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["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["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["+1000 to Spectre maximum Life"]={{[1]={flags=0,type="BASE",value=1000,name="Life",keywordFlags=0}}," Spectre "}c["100% increased Spell Damage"]={{[1]={flags=2,type="INC",value=100,name="Damage",keywordFlags=0}},nil}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["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["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["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["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShieldRechargeFaster",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["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["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7,name="ElementalDamageGainAsChaos",keywordFlags=0}},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["+80 to maximum Mana"]={{[1]={flags=0,type="BASE",value=80,name="Mana",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["40% increased Curse Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=2}},nil}c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=30,name="EnergyShieldRecharge",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["200% increased Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EnergyShield",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["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["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["+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["+280 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=280,name="EnergyShield",keywordFlags=0}},nil}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=30,name="ManaRegen",keywordFlags=0}},nil}c["+18% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=18,name="FireResist",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["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["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["0.3% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.3,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["135% increased Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EnergyShield",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["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["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing"}c["+70 to Dexterity"]={{[1]={flags=0,type="BASE",value=70,name="Dex",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 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["10% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",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["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["-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["+30 to maximum Life"]={{[1]={flags=0,type="BASE",value=30,name="Life",keywordFlags=0}},nil}c["Cannot be Shocked"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=0}},nil}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["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["25% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=25,name="AvoidChilled",keywordFlags=0}},nil}c["Grants Perfect Agony during Flask effect"]={nil,"Grants Perfect Agony during Flask effect"}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["50% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=50,name="AvoidFrozen",keywordFlags=0}},nil}c["-30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="FireResist",keywordFlags=0}},nil}c["Projectiles Pierce an additional Target"]={nil,"Projectiles Pierce an additional Target"}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["625% increased Armour"]={{[1]={flags=0,type="INC",value=625,name="Armour",keywordFlags=0}},nil}c["+120 to Armour"]={{[1]={flags=0,type="BASE",value=120,name="Armour",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["45% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamageTaken",keywordFlags=0}},nil}c["+25 to Armour"]={{[1]={flags=0,type="BASE",value=25,name="Armour",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["40% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyStunDuration",keywordFlags=0}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-40,name="EnergyShieldRecharge",keywordFlags=0}},nil}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["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["+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["10% increased Fortify duration"]={{[1]={flags=0,type="INC",value=10,name="FortifyDuration",keywordFlags=0}},nil}c["+188% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=188,name="CritMultiplier",keywordFlags=0}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamageTaken",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["120% increased Armour"]={{[1]={flags=0,type="INC",value=120,name="Armour",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["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=125,name="CritMultiplier",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["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=225,name="CritMultiplier",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["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["14% increased Totem Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=16384}},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 Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,type="INC",value=25,name="Damage",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["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% 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["+250 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=250,name="Accuracy",keywordFlags=0}},nil}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["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["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["5% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill"}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["+5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=5,name="ElementalResist",keywordFlags=0}},nil}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["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["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["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["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["+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["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["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["Damage Penetrates 3% Fire Resistance"]={{[1]={flags=0,type="BASE",value=3,name="FirePenetration",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["Has 2 Abyssal Sockets"]={nil,"Has 2 Abyssal Sockets"}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["120% 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=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill"}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["+1 Maximum Power Charge"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",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 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=2,type="BASE",value=31,name="LightningMin",keywordFlags=0},[2]={flags=2,type="BASE",value=100,name="LightningMax",keywordFlags=0}},nil}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently Elder Item"]={nil,"400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently Elder Item"}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["+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["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum "}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["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack"}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges"}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["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["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["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["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["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["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["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["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 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked"}c["35% increased Spell Damage"]={{[1]={flags=2,type="INC",value=35,name="Damage",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["15% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=2}},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["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["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["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["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["360% increased Physical Damage"]={{[1]={flags=0,type="INC",value=360,name="PhysicalDamage",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["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["17% increased Cast Speed"]={{[1]={flags=16,type="INC",value=17,name="Speed",keywordFlags=0}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=6,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["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["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["40% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",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=2,type="BASE",value=5,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=8,name="FireMax",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["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["Spectres have a Base Duration of 20 seconds"]={nil,"a Base Duration of 20 seconds"}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["30% increased Cast Speed"]={{[1]={flags=16,type="INC",value=30,name="Speed",keywordFlags=0}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,type="INC",value=20,name="Damage",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["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["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["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["20% increased Armour"]={{[1]={flags=0,type="INC",value=20,name="Armour",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["+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["+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["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=0}}," with Attack Skills"}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["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["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["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["80% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-80,name="TrapDuration",keywordFlags=0}},nil}c["40% increased Trap Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=4096}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you"}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["30% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-30,name="FlaskDuration",keywordFlags=0}},nil}c["Grants Summon Harbinger of Directions Skill"]={nil,"Grants Summon Harbinger of Directions Skill"}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=30,name="FlaskManaRecovery",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["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=5,name="LifeGainAsEnergyShield",keywordFlags=0}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,type="INC",value=100,name="PhysicalDamage",keywordFlags=0}},nil}c["1% of Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="ManaRegenPercent",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["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield"}c["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"}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["+7% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}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["+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["Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning"}c["16% increased Intelligence"]={{[1]={flags=0,type="INC",value=16,name="Int",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["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 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["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["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["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["Your Curses can apply to Hexproof Enemies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CursesIgnoreHexproof",flags=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["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["33% increased Physical Damage"]={{[1]={flags=0,type="INC",value=33,name="PhysicalDamage",keywordFlags=0}},nil}c["71 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=71,name="LifeRegen",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["+88 to maximum Life"]={{[1]={flags=0,type="BASE",value=88,name="Life",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["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["-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["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["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}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["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["75 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=75,name="LifeRegen",keywordFlags=0}},nil}c["+48 to Dexterity"]={{[1]={flags=0,type="BASE",value=48,name="Dex",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["+48 to Strength"]={{[1]={flags=0,type="BASE",value=48,name="Str",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["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["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["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["+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["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=18,name="CooldownRecovery",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["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["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",keywordFlags=0}},nil}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["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["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["15% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",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["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["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["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["60% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",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["24% increased Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+40% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=40,name="CritMultiplier",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["Enemies Ignited by an Attack Burn 20% faster"]={{[1]={flags=1,type="INC",value=20,name="IgniteBurnFaster",keywordFlags=0}},nil}c["+325 to Armour"]={{[1]={flags=0,type="BASE",value=325,name="Armour",keywordFlags=0}},nil}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=50,name="CooldownRecovery",keywordFlags=4}},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["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["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["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level"}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="LightningDamageLifeLeech",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["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["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="ColdDamageLifeLeech",keywordFlags=0}},nil}c["Adds 140 to 225 Fire Damage to Spells"]={{[1]={flags=2,type="BASE",value=140,name="FireMin",keywordFlags=0},[2]={flags=2,type="BASE",value=225,name="FireMax",keywordFlags=0}},nil}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}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["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["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["210% increased Armour"]={{[1]={flags=0,type="INC",value=210,name="Armour",keywordFlags=0}},nil}c["100% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=100,name="Damage",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["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["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you"}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["60% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=60,name="MineLayingSpeed",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["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["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes"}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["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,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["+55 to maximum Mana"]={{[1]={flags=0,type="BASE",value=55,name="Mana",keywordFlags=0}},nil}c["+13% to Elemental Resistances"]={{[1]={flags=0,type="BASE",value=13,name="ElementalResist",keywordFlags=0}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour"}c["160% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEvasion",keywordFlags=0}},nil}c["24% increased Trap Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=4096}},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["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["+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["+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["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect"}c["Counts as Dual Wielding"]={{[1]={value={key="countsAsDualWielding",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=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["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["+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["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["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["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["100% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=100,name="ProjectileSpeed",keywordFlags=0}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit"}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["35% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=35,name="LootRarity",keywordFlags=0}},nil}c["+100 to Maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded"}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["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}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["+10 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}},nil}c["25% increased Defences"]={{[1]={flags=0,type="INC",value=25,name="Defences",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["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["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill"}c["40% increased Movement Speed"]={{[1]={flags=0,type="INC",value=40,name="MovementSpeed",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["Mana Reservation of Herald Skills is always 45%"]={nil,"Mana Reservation of Herald Skills is always 45%"}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["Nearby Allies have Culling Strike"]={nil,"Culling Strike"}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike"}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["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["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity"}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["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["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["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["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["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["30% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-30,name="Speed",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["+23 to Strength"]={{[1]={flags=0,type="BASE",value=23,name="Str",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["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["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalDamageGainAsFire",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["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 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["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted"}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 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["270% increased Physical Damage"]={{[1]={flags=0,type="INC",value=270,name="PhysicalDamage",keywordFlags=0}},nil}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=50,name="ManaCost",keywordFlags=0}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ColdResist",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["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block"}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["100% increased Mine Arming Speed"]={{}," Arming Speed"}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["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["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["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["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["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike"}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["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["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["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["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["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["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["+6 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=6,name="LifeOnKill",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["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["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["+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["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FirePenetration",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["Golems have 13% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",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["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["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["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["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["15% increased Burning Damage"]={{[1]={flags=8,type="INC",value=15,name="FireDamage",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 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["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 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% 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["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% 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["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["12% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",keywordFlags=0}},nil}c["10% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",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 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["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["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["30% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=30,name="PoisonChance",keywordFlags=0}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=38,name="ColdResist",keywordFlags=0}},nil}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["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["Melee Attacks cause Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}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["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["+13% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=13,name="LightningResist",keywordFlags=0}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=13,name="FireResist",keywordFlags=0}},nil}c["15% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=15,name="ProjectileSpeed",keywordFlags=0}},nil}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["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life"}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["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["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["+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["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["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["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=50,name="LifeOnHit",keywordFlags=0}},nil}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="ManaOnHit",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["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=60,name="LifeOnHit",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["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="LifeOnHit",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["35% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=35,name="StunRecovery",keywordFlags=0}},nil}c["Can't use other Rings"]={nil,"Can't use other Rings"}c["+7% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",keywordFlags=0}},nil}c["+12 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",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["+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["50% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=50,name="AvoidChilled",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 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["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["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}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["10% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit"}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["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["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["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["Spells have an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=2}},nil}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEnergyShield",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["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=25,name="ElementalDamage",keywordFlags=0}},nil}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["+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["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["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",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"]={{[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["20% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-20,name="LootRarity",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["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["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["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["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["100% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=100,name="ManaRegen",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["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["+75 to Intelligence"]={{[1]={flags=0,type="BASE",value=75,name="Int",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 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["80% increased Burning Damage"]={{[1]={flags=8,type="INC",value=80,name="FireDamage",keywordFlags=0}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=8,name="LightningResist",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["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["-6 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-6,name="ManaCost",keywordFlags=0}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=1048576,type="BASE",value=7,name="CritChance",keywordFlags=0}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="ManaRegen",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["+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["55% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=55,name="ManaRegen",keywordFlags=0}},nil}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["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["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=99,name="PhysicalDamageGainAsFire",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["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["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy"}c["20% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["29% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-29,name="CurseEffect",keywordFlags=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["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["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["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 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["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 Trap Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=4096}},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["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["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,type="INC",value=20,name="Speed",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["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsChaos",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["10% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-10,name="EnergyShield",keywordFlags=0}},nil}c["10% reduced Character Size"]={{}," Character Size"}c["15% reduced maximum Life"]={{[1]={flags=0,type="INC",value=-15,name="Life",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["7% increased Movement Speed"]={{[1]={flags=0,type="INC",value=7,name="MovementSpeed",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["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["All Sockets are White"]={nil,"All Sockets are White"}c["+20% chance to be Pierced by Projectiles {variant:2}Projectiles Pierce you"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by {variant:2}Projectiles Pierce you"}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["+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["+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["Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"}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["+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["50% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-50,name="Speed",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["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["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you"}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["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["20% increased Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit"}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-20,name="CurseEffectOnSelf",keywordFlags=0}},nil}c["70% increased Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="EnergyShield",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["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["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["15% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems"}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["13 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=13,name="LifeRegen",keywordFlags=0}},nil}c["Lose 33.5 Mana per Second"]={nil,"Lose 33.5 Mana per Second"}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["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["19% increased maximum Mana"]={{[1]={flags=0,type="INC",value=19,name="Mana",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["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["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["4% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},nil}c["40% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=40,name="ManaReserved",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion"}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["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["20% increased Fire Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=0}},nil}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy"}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="IgniteCanStack",flags=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["+18% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",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["+280 to Armour"]={{[1]={flags=0,type="BASE",value=280,name="Armour",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["+325 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=325,name="Accuracy",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["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill"}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["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=40,name="LightningDamageConvertToCold",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["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["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% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee"}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["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["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["40% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-40,name="CurseEffectOnSelf",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 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["28% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=28,name="LightningDamage",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["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["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["+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["+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["12% increased Fire Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",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["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["15% increased Movement Speed while affected by Grace"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," while affected by Grace"}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["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["160% increased Spell Damage"]={{[1]={flags=2,type="INC",value=160,name="Damage",keywordFlags=0}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire"}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second"}c["4% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=4,name="PhysicalDamage",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["28% increased Cold Damage"]={{[1]={flags=0,type="INC",value=28,name="ColdDamage",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["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["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["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["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["8% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",keywordFlags=0}},nil}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["11% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=11,name="LootRarity",keywordFlags=0}},nil}c["25% increased effect of Fortify on You"]={{[1]={flags=0,type="INC",value=25,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-20,name="ElementalResist",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["+85 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=85,name="EnergyShield",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["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers"}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["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["+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["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["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["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage"}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["8% chance to Freeze"]={{[1]={flags=0,type="BASE",value=8,name="EnemyFreezeChance",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["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["+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["40% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=40,name="CooldownRecovery",keywordFlags=4096}},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["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["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["+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=8,type="INC",value=70,name="FireDamage",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["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["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["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["+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["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["+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["Sockets cannot be modified"]={nil,"Sockets cannot be modified"}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",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["6% Chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",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["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["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["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["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["Grants level 15 Vengeance Skill"]={{[1]={flags=0,type="LIST",value={skillId="Vengeance",level=15},name="ExtraSkill",keywordFlags=0}},nil}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["Adds 25 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,type="INC",value=11,name="Speed",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["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas"}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["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["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["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["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["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["8% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=8,name="AvoidStun",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["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=16,name="PhysicalDamage",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["+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["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["+100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=100,name="Accuracy",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["+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["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["16% increased Area of Effect"]={{[1]={flags=0,type="INC",value=16,name="AreaOfEffect",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["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["+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["30% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=30,name="PhysicalDamage",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["33% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=33,name="ChaosDamage",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["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["15% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=15,name="StunRecovery",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["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["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["Uses both hand slots"]={nil,"Uses both hand slots"}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["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["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius"}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["110% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item"}c["Celestial Footprints"]={nil,"Celestial Footprints"}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["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["Projectiles Pierce while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},value=100,type="BASE",keywordFlags=0,name="PierceChance",flags=0}},nil}c["+200 to maximum Life"]={{[1]={flags=0,type="BASE",value=200,name="Life",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["135% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=135,name="Evasion",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["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,type="INC",value=3,name="Int",keywordFlags=0}}," Character Size 6% increased "}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["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["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["40% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=40,name="ElementalDamage",keywordFlags=0}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=30,name="PhysicalDamageTaken",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["+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["Fire Skills have 20% chance to Poison on Hit"]={nil,"Fire Skills have 20% chance to Poison on Hit"}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["+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["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["13% chance to Ignite"]={{[1]={flags=0,type="BASE",value=13,name="EnemyIgniteChance",keywordFlags=0}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=20,name="Accuracy",keywordFlags=0}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=55,name="FireResist",keywordFlags=0}},nil}c["+145 to maximum Life"]={{[1]={flags=0,type="BASE",value=145,name="Life",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["+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["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["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You"}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["Flasks gain a Charge every 3 seconds"]={nil,"Flasks gain a Charge every 3 seconds"}c["17% increased Strength"]={{[1]={flags=0,type="INC",value=17,name="Str",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["+220 to Armour"]={{[1]={flags=0,type="BASE",value=220,name="Armour",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["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["18% increased Attack Speed"]={{[1]={flags=1,type="INC",value=18,name="Speed",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["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground"}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill"}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=70,name="CritChance",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["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["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["+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["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["5% increased Physical Damage"]={{[1]={flags=0,type="INC",value=5,name="PhysicalDamage",keywordFlags=0}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEvasion",keywordFlags=0}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=13,name="EnergyShield",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 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["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=3,name="LifeOnHit",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["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["+120 to maximum Mana"]={{[1]={flags=0,type="BASE",value=120,name="Mana",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["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["10% increased Area Damage"]={{[1]={flags=512,type="INC",value=10,name="Damage",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["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["23% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=23,name="BlockChanceConv",keywordFlags=0}},nil}c["+24% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=24,name="ElementalResist",keywordFlags=0}},nil}c["25% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=25,name="BlockChanceConv",keywordFlags=0}},nil}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["80% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-80,name="Damage",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["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["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["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["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your"}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["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="CritChance",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["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["Gain 5% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,type="INC",value=12,name="Speed",keywordFlags=0}},nil}c["16% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}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["20% increased Poison Duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=1048576}},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["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["13% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=13,name="FlaskRecoveryRate",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["3% additional chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=3,name="AttackDodgeChance",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["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["12% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",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["You are Cursed with Level 20 Vulnerability"]={nil,"You are Cursed with Level 20 Vulnerability"}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["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=16384}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding"}c["10% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=10,name="ProjectileSpeed",keywordFlags=0}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=4096}},nil}c["6% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=6,name="AuraEffect",keywordFlags=0}},nil}c["Rquires Level 64 60% increased Spell Damage"]={nil,"Rquires Level 64 60% increased Spell Damage"}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit"}c["16% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=16,name="TotemPlacementSpeed",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["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["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["+51 to maximum Mana"]={{[1]={flags=0,type="BASE",value=51,name="Mana",keywordFlags=0}},nil}c["60 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=60,name="LifeRegen",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["9% chance to Freeze"]={{[1]={flags=0,type="BASE",value=9,name="EnemyFreezeChance",keywordFlags=0}},nil}c["+20 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=20,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["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage"}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["Never deal Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NeverCrit",flags=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["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["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["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% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=10,name="Duration",keywordFlags=0}},nil}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=340,name="Defences",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["Extra gore"]={nil,"Extra gore"}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["+23% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ChaosResist",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["40% increased Cold Damage"]={{[1]={flags=0,type="INC",value=40,name="ColdDamage",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["You have Onslaught while not on Low Mana"]={nil,"You have Onslaught while not on Low Mana"}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["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges"}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["12% increased Area Damage"]={{[1]={flags=512,type="INC",value=12,name="Damage",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["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["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground"}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["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageConvertToChaos",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["Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"]={nil,"Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage Summoned Skeletons have Avatar of Fire"}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,type="BASE",value=25,name="ElementalDamageTakenAsChaos",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["65% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-65,name="FlaskRecovery",keywordFlags=0}},nil}c["Nearby Enemies have 25% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 25% reduced Life Regeneration rate"}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life"}c["+500 to Accuracy against Bleeding Enemies"]={{}," Accuracy "}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["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["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["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["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["75% increased Charges used"]={{[1]={flags=0,type="INC",value=75,name="FlaskChargesUsed",keywordFlags=0}},nil}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["18% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}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["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block"}c["14% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=14,name="Evasion",keywordFlags=0}},nil}c["+16 to maximum Life"]={{[1]={flags=0,type="BASE",value=16,name="Life",keywordFlags=0}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,type="INC",value=10,name="Damage",keywordFlags=0}},nil}c["50% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEvasion",keywordFlags=0}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegenPercent",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["30% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=30,name="ElementalDamage",keywordFlags=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["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["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["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["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,type="INC",value=-10,name="DamageTakenOverTime",keywordFlags=0}},nil}c["20% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="LifeRecoveryRate",keywordFlags=0}},nil}c["+150 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=150,name="Accuracy",keywordFlags=0}},nil}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EvasionAndEnergyShield",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["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["120% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EvasionAndEnergyShield",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["Socketed Gems have Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=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 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["+175 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=175,name="Accuracy",keywordFlags=0}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyStunDuration",keywordFlags=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["14% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=14,name="LootQuantity",keywordFlags=0}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="EnergyShield",keywordFlags=0}},nil}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.8,name="LifeRegenPercent",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["10% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=460,name="Accuracy",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"}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["10% of Wand Physical Damage Added as Fire Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies"}c["13% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-13,name="Mana",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["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["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=0}},nil}c["+20 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",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["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun"}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,type="BASE",value=1,name="ExtraPoints",keywordFlags=0}},nil}c["14% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=14,name="FlaskEffect",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["Cannot be Ignited"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=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["18% increased maximum Mana"]={{[1]={flags=0,type="INC",value=18,name="Mana",keywordFlags=0}},nil}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["+10% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=10,name="FireResist",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["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["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["4% increased maximum Mana"]={{[1]={flags=0,type="INC",value=4,name="Mana",keywordFlags=0}},nil}c["12% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=12,name="FlaskDuration",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["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["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life"}c["8% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",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["10% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesGained",keywordFlags=0}},nil}c["50% less Damage to surrounding targets"]={{[1]={flags=0,type="MORE",value=-50,name="Damage",keywordFlags=0}}," to surrounding targets"}c["+45 to Dexterity"]={{[1]={flags=0,type="BASE",value=45,name="Dex",keywordFlags=0}},nil}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["+25 to maximum Mana"]={{[1]={flags=0,type="BASE",value=25,name="Mana",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["6% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=6,name="EnergyShield",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["+25 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks"}c["20% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",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["+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["12% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=12,name="PhysicalDamage",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["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["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["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["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=15,name="ElementalDamage",keywordFlags=0}},nil}c["+18 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=18,name="EnergyShield",keywordFlags=0}},nil}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["+400 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=400,name="Accuracy",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["12% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["30% chance for Attacks to Maim on Hit against Bleeding Enemies"]={{}," to Maim on Hit "}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["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=9,name="ElementalResist",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["20% increased Totem Duration"]={{[1]={flags=0,type="INC",value=20,name="TotemDuration",keywordFlags=0}},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["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["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage."}c["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="DamageLifeLeech",keywordFlags=0}},nil}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["15% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=15,name="PhysicalDamage",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["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies"}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted"}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["30% increased Light Radius"]={{[1]={flags=0,type="INC",value=30,name="LightRadius",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["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["15% reduced Flask Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use"}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=40,name="CritChance",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["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["15% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=15,name="TotemPlacementSpeed",keywordFlags=0}},nil}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["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["8 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=8,name="LifeRegen",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["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["16% increased Cast Speed"]={{[1]={flags=16,type="INC",value=16,name="Speed",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["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["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=8192}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,type="BASE",value=65,name="Mana",keywordFlags=0}},nil}c["16% increased Totem Life"]={{[1]={flags=0,type="INC",value=16,name="TotemLife",keywordFlags=0}},nil}c["35% increased Fire Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",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["Instant Recovery"]={{[1]={value=100,type="BASE",keywordFlags=0,name="FlaskInstantRecovery",flags=0}},nil}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill"}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["+100 to Strength"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0}},nil}c["10% increased Armour"]={{[1]={flags=0,type="INC",value=10,name="Armour",keywordFlags=0}},nil}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["50% increased Charges used"]={{[1]={flags=0,type="INC",value=50,name="FlaskChargesUsed",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["+350 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=350,name="Evasion",keywordFlags=0}},nil}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["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["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="ElementalDamageGainAsChaos",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["25% increased Mine Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8192}},nil}c["Grants Summon Harbinger of Brutality Skill 5% Chance to Block"]={nil,"Grants Summon Harbinger of Brutality Skill 5% Chance to Block"}c["25% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}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["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% increased Radius of Auras"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=1}},nil}c["5% increased Damage taken"]={{[1]={flags=0,type="INC",value=5,name="DamageTaken",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["15% increased Trap Damage"]={{[1]={flags=0,type="INC",value=15,name="Damage",keywordFlags=4096}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=165,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-20,name="EnemyStunThreshold",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["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["+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["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["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["4% reduced Elemental Damage taken"]={{[1]={flags=0,type="INC",value=-4,name="ElementalDamageTaken",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["+18% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ElementalResist",keywordFlags=0}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Beastial 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 Beastial Minion"}c["20% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",keywordFlags=4096}},nil}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["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["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["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["13% increased Attack Speed"]={{[1]={flags=1,type="INC",value=13,name="Speed",keywordFlags=0}},nil}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["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies"}c["Blood Magic"]={{[1]={value="Blood Magic",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},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["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=4096}},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["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["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["12% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootQuantity",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["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["25% increased Zombie Size"]={{}," Size"}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["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["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["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-15,name="EnemyStunThreshold",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["80% increased Physical Damage"]={{[1]={flags=0,type="INC",value=80,name="PhysicalDamage",keywordFlags=0}},nil}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["20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=0}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,type="INC",value=120,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=0}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike"}c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,type="INC",value=4,name="MovementSpeed",keywordFlags=0}},nil}c["15% increased Mine Duration"]={{[1]={flags=0,type="INC",value=15,name="MineDuration",keywordFlags=0}},nil}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["Has 6 Sockets"]={{[1]={flags=0,type="BASE",value=6,name="SocketCount",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["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=8}},nil}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["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["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=25,name="CritChance",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["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["20% increased Arrow Speed"]={{[1]={flags=8192,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={nil,"Your Chaos Damage has 60% chance to Poison Enemies"}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["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["180% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=180,name="Evasion",keywordFlags=0}},nil}c["5% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=5,name="Speed",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 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["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["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use"}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["15% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=15,name="Evasion",keywordFlags=0}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToCold",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["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["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["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["+250 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=250,name="EnergyShield",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["+10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",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["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,type="INC",value=-25,name="GlobalAttributeRequirements",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["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of"}c["10% increased effect of Fortify on You"]={{[1]={flags=0,type="INC",value=10,name="FortifyEffectOnSelf",keywordFlags=0}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["190% increased Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="EnergyShield",keywordFlags=0}},nil}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["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["Can Allocate Passives from the Templar's starting point"]={{},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["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["18% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=18,name="EnergyShield",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["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["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["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["10% more Damage"]={{[1]={flags=0,type="MORE",value=10,name="Damage",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["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="LightningPenetration",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["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Life",keywordFlags=0}},nil}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["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry"}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["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["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=6,name="ElementalPenetration",keywordFlags=0}},nil}c["10% increased Scorching Ray beam length"]={{},"beam length"}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["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["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["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["225% increased Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EnergyShield",keywordFlags=0}},nil}c["Cannot be Stunned while Leeching"]={nil,"Cannot be Stunned while Leeching"}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["4% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-50,name="FireResist",keywordFlags=0}},nil}c["100% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=100,name="BlockChanceConv",keywordFlags=0}},nil}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["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["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["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["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["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["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["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["3% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-3,name="ManaCost",keywordFlags=0}},nil}c["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}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["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned"}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["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["12% increased Trap Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=4096}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill"}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["30% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=30,name="PhysicalDamage",keywordFlags=0}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,type="INC",value=14,name="Damage",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% 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["+175 to maximum Life"]={{[1]={flags=0,type="BASE",value=175,name="Life",keywordFlags=0}},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["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["Melee Attacks have 15% chance to cause Bleeding"]={{[1]={flags=256,type="BASE",value=15,name="BleedChance",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["110% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="ArmourAndEnergyShield",keywordFlags=0}},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["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["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["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["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["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=4096}},nil}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Totem Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=16384}},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["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="PhysicalDamage",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["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["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["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["+80 to Armour"]={{[1]={flags=0,type="BASE",value=80,name="Armour",keywordFlags=0}},nil}c["20% increased Trap Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=4096}},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["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["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["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["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["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["10% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=10,name="LightningDamage",keywordFlags=0}},nil}c["You cannot be Hindered"]={nil,"You cannot be Hindered"}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["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["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect"}c["20% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeletons"},flags=0,type="INC",value=-20,name="Duration",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["If you have 3 Primordial Jewels, can Summon up to 1 additional Golem at a time"]={{[1]={[1]={type="MultiplierThreshold",threshold=3,var="PrimordialJewel"},flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+60 to Intelligence"]={{[1]={flags=0,type="BASE",value=60,name="Int",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["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["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["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["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 Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamage",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 Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=20,name="Accuracy",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["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine"}c["20% increased Mine Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8192}},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["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["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["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["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=10,name="CritMultiplier",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["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["24% increased Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ColdDamage",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["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=5,name="Speed",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["12% increased Cold Damage"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",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["10% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskLifeRecovery",keywordFlags=0}},nil}c["Damage Penetrates 2% Cold Resistance"]={{[1]={flags=0,type="BASE",value=2,name="ColdPenetration",keywordFlags=0}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockDuration",keywordFlags=0}},nil}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom"}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=700,name="PhysicalDamage",keywordFlags=0}},nil}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["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["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=128}},nil}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses"}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,type="MORE",value=40,name="ProjectileEvadeChance",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["20% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=20,name="ManaLeechRate",keywordFlags=0}},nil}c["20% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="PowerChargesDuration",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["14% increased Mine Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=8192}},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["+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["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["10% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=10,name="CritChance",keywordFlags=0}},nil}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["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["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["50% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",keywordFlags=0}},nil}c["35% increased Burning Damage"]={{[1]={flags=8,type="INC",value=35,name="FireDamage",keywordFlags=0}},nil}c["40% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=40,name="Damage",keywordFlags=0}},nil}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["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["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=16384}},nil}c["70% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=70,name="ChaosDamage",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["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"}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["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["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="ManaGainAsEnergyShield",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["6% increased Damage with Bows"]={{[1]={flags=8192,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootRarity",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["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["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["15% increased maximum Mana"]={{[1]={flags=0,type="INC",value=15,name="Mana",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["10% increased Movement Speed"]={{[1]={flags=0,type="INC",value=10,name="MovementSpeed",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["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=10,name="Accuracy",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 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["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["90% increased Armour"]={{[1]={flags=0,type="INC",value=90,name="Armour",keywordFlags=0}},nil}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["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["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["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="LightningDamage",keywordFlags=0}}," with Attack Skills"}c["Damage Penetrates 3% Cold Resistance"]={{[1]={flags=0,type="BASE",value=3,name="ColdPenetration",keywordFlags=0}},nil}c["13% increased Area Damage"]={{[1]={flags=512,type="INC",value=13,name="Damage",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["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% increased Mine Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=8192}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage"}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems"}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["+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["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["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning"}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use"}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,type="LIST",value={skillId="SummonRockGolem",level=12},name="ExtraSkill",keywordFlags=0}},nil}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["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,type="BASE",value=200,name="Accuracy",keywordFlags=0}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit"}c["20% increased Physical Damage"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill"}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["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["50% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=1048576}},nil}c["18% increased Strength"]={{[1]={flags=0,type="INC",value=18,name="Str",keywordFlags=0}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You"}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["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["Grants level 20 Summon Beastial Rhoa Skill {variant:2}Grants level 20 Summon Beastial Snake Skill"]={nil,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["10% chance to gain a Power Charge on Hit against Enemies that are on Full Life"]={{}," to gain a Power Charge on Hit "}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["Cannot Be Slowed to Below Base Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=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["Hits with this Weapon deal 57% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon deal 57% increased Damage to Ignited Enemies"}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["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["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["30% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-30,name="TrapThrowingSpeed",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 Totem Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=16384}},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["+76 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=76,name="EnergyShield",keywordFlags=0}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={nil,"Projectile Attack Skills have 60% increased Critical Strike Chance"}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["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% increased Defences from equipped Shield"]={{[1]={[1]={type="SlotName",slotName="Weapon 2"},flags=0,type="INC",value=50,name="Defences",keywordFlags=0}},nil}c["Requiresd level 54"]={nil,"Requiresd level 54"}c["30% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["-10 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-10,name="ChaosDamageTaken",keywordFlags=0}},nil}c["116% increased Physical Damage"]={{[1]={flags=0,type="INC",value=116,name="PhysicalDamage",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["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["90% increased Charges used"]={{[1]={flags=0,type="INC",value=90,name="FlaskChargesUsed",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["10% of Wand Physical Damage Added as Cold Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["Vaal Skills deal 69% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"]={nil,"Vaal Skills deal 69% increased Damage during effect Vaal Skills have 25% reduced Soul Cost during effect"}c["6% increased maximum Mana"]={{[1]={flags=0,type="INC",value=6,name="Mana",keywordFlags=0}},nil}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["50% increased Physical Damage"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamage",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["6% increased Spell Damage"]={{[1]={flags=2,type="INC",value=6,name="Damage",keywordFlags=0}},nil}c["+50 to Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Dex",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["+100 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="LifeOnKill",keywordFlags=0}},nil}c["22% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=22,name="PhysicalDamage",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["+12% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=40,name="LootRarity",keywordFlags=0}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=20,name="Evasion",keywordFlags=0}},nil}c["2% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=2,name="Speed",keywordFlags=0}},nil}c["100% increased Armour"]={{[1]={flags=0,type="INC",value=100,name="Armour",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["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 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["18% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=18,name="CurseEffect",keywordFlags=0}},nil}c["10% increased Area of Effect for Traps"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=4096}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=4,name="Speed",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["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["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances"}c["+450 to Armour"]={{[1]={flags=0,type="BASE",value=450,name="Armour",keywordFlags=0}},nil}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"}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["0.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.8,name="LifeRegenPercent",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["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["+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["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["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["235% increased Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EnergyShield",keywordFlags=0}},nil}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["160% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="ArmourAndEnergyShield",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["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["12% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EnergyShield",keywordFlags=0}},nil}c["+25 to Intelligence"]={{[1]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}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["Take 30 Chaos Damage per Second during Flask effect"]={nil,"30 Chaos Damage per Second during Flask effect"}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["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}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["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% 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["18% increased Fire Damage"]={{[1]={flags=0,type="INC",value=18,name="FireDamage",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["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["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit"}c["15% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=15,name="TrapThrowingSpeed",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["Cannot be Stunned if you have at least 10 Crab Barriers"]={nil,"Cannot be Stunned if you have at least 10 Crab Barriers"}c["14% increased Trap Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=4096}},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["+5 to Strength"]={{[1]={flags=0,type="BASE",value=5,name="Str",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["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["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently"}c["Attacks have 30% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=30,name="BleedChance",keywordFlags=0}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,type="INC",value=22,name="ColdDamage",keywordFlags=0}},nil}c["began Recently"]={nil,"began Recently"}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["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["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["+144 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=144,name="EnergyShield",keywordFlags=0}},nil}c["15% chance to Ignite"]={{[1]={flags=0,type="BASE",value=15,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Primordial"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:PrimordialJewel",flags=0}},nil}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["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["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["35% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=35,name="PhysicalDamage",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["43% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=43,name="ManaRegen",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["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use"}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["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["20% increased Light Radius"]={{[1]={flags=0,type="INC",value=20,name="LightRadius",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["50% less Mana Reserved"]={{[1]={flags=0,type="MORE",value=-50,name="ManaReserved",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["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["+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["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["33% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=33,name="ElementalDamage",keywordFlags=0}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,type="INC",value=24,name="FireDamage",keywordFlags=0}},nil}c["5% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=5,name="Speed",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["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["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["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["5% increased Experience gain {variant:2,3}3% increased Experience gain"]={{}," Experience gain {variant:2,3}3% increased Experience gain"}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["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["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["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["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["15% increased Accuracy Rating with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Accuracy",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["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["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["Can Allocate Passives from the Ranger's starting point"]={{},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["18% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="FrenzyChargesDuration",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["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["100% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=100,name="OnslaughtEffect",keywordFlags=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["+50 to maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",keywordFlags=0}},nil}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={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["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["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["+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["+12 to maximum Life"]={{[1]={flags=0,type="BASE",value=12,name="Life",keywordFlags=0}},nil}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["10% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}c["+5 to Dexterity"]={{[1]={flags=0,type="BASE",value=5,name="Dex",keywordFlags=0}},nil}c["Gain a Void Charge every second"]={nil,"Gain a Void Charge every second"}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["+33 to maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",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["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["+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["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["+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["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["420% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=420,name="Evasion",keywordFlags=0}},nil}c["You are Cursed with Level 20 Vulnerability You count as on Low Life while you are Cursed with Vulnerability"]={nil,"You are Cursed with Level 20 Vulnerability You count as on Low Life while you are Cursed with Vulnerability"}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=4,name="Speed",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["165% increased Armour"]={{[1]={flags=0,type="INC",value=165,name="Armour",keywordFlags=0}},nil}c["5% increased Experience gain"]={{}," Experience gain"}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["20% increased Movement Speed"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}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["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",keywordFlags=0}},nil}c["Melee Attacks have 8% chance to cause Bleeding"]={{[1]={flags=256,type="BASE",value=8,name="BleedChance",keywordFlags=0}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used"}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["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["28% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=28,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["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by "}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["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["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["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% 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["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"}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["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["+2 seconds to Avian's Might Duration"]={{[1]={flags=0,type="BASE",value=2,name="Duration",keywordFlags=0}}," seconds to Avian's Might "}c["Curse Reflection"]={nil,"Curse Reflection"}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["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["3% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["30% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["+190 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=190,name="EnergyShield",keywordFlags=0}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-40,name="LootRarity",keywordFlags=0}},nil}c["4% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-4,name="ManaCost",keywordFlags=0}},nil}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["9% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=28,name="CritChance",keywordFlags=0}},nil}c["6% increased maximum Life"]={{[1]={flags=0,type="INC",value=6,name="Life",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["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect"}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy"}c["15% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=15,name="Speed",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["+75% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=75,name="ColdResist",keywordFlags=0}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,type="INC",value=190,name="PhysicalDamage",keywordFlags=0}},nil}c["20% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="EnergyShield",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["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["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["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["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["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["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["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["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["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["+15 to maximum Mana"]={{[1]={flags=0,type="BASE",value=15,name="Mana",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["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["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["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["+8 to Dexterity"]={{[1]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0}},nil}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["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["+35% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=35,name="LightningResist",keywordFlags=0}},nil}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["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["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,type="LIST",value={skillId="UniqueAnimateWeapon",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["50% increased Amount Recovered"]={{[1]={flags=0,type="INC",value=50,name="FlaskRecovery",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["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["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,type="INC",value=60,name="FireDamage",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["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["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["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["3% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=3,name="Speed",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% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-20,name="MovementSpeed",keywordFlags=0}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootRarity",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["Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy"}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike"}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies"}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["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["Cannot be Frozen"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=0}},nil}c["50% increased Attack Speed"]={{[1]={flags=1,type="INC",value=50,name="Speed",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% increased Physical Damage over Time"]={{[1]={flags=8,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["135% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=135,name="ArmourAndEvasion",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["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting"}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["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["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=30,name="BleedChance",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["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["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ElementalDamage",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% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}c["145% increased Physical Damage"]={{[1]={flags=0,type="INC",value=145,name="PhysicalDamage",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["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["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["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["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["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 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["35% increased Lightning Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=35,name="LightningDamage",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["+10% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalResist",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["Unaffected by Temporal Chains"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=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["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=35,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskManaRecovery",keywordFlags=0}},nil}c["24% increased Armour"]={{[1]={flags=0,type="INC",value=24,name="Armour",keywordFlags=0}},nil}c["You have Resolute Technique while you do not have Elemental Overload Elder Item"]={nil,"You have Resolute Technique while you do not have Elemental Overload Elder Item"}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 Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}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["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["12% increased Armour"]={{[1]={flags=0,type="INC",value=12,name="Armour",keywordFlags=0}},nil}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"]={nil,"400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently Elder Item"}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="BleedChance",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["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,type="INC",value=3,name="Dex",keywordFlags=0}}," Character Size 6% increased "}c["310% increased Physical Damage"]={{[1]={flags=0,type="INC",value=310,name="PhysicalDamage",keywordFlags=0}},nil}c["+46 to maximum Life"]={{[1]={flags=0,type="BASE",value=46,name="Life",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["25% increased Knockback Distance"]={{[1]={flags=0,type="INC",value=25,name="EnemyKnockbackDistance",keywordFlags=0}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",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["+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["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["25% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=25,name="FlaskEffect",keywordFlags=0}}," of Shock"}c["26% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",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["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["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["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["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["+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["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["+55 to maximum Life"]={{[1]={flags=0,type="BASE",value=55,name="Life",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["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["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["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["25% increased Light Radius"]={{[1]={flags=0,type="INC",value=25,name="LightRadius",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["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["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["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["10% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time"}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["Poison you inflict with Critical Strikes deals 100% more Damage"]={{[1]={flags=0,type="MORE",value=100,name="PoisonDamageOnCrit",keywordFlags=0}},nil}c["32% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=32,name="ElementalDamage",keywordFlags=0}},nil}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["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["15% chance to Shock"]={{[1]={flags=0,type="BASE",value=15,name="EnemyShockChance",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["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["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["+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["Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"]={nil,"Grants Summon Harbinger of Storms Skill +150 to Evasion Rating"}c["15% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["110% increased Physical Damage"]={{[1]={flags=0,type="INC",value=110,name="PhysicalDamage",keywordFlags=0}},nil}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["12% increased Cast Speed"]={{[1]={flags=16,type="INC",value=12,name="Speed",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["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["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike"}c["35% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=35,name="Accuracy",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["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["Adds 65 to 325 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=325,name="PhysicalMax",keywordFlags=0}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["+26 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=26,name="LifeOnKill",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["16% increased Physical Damage with Attacks"]={{[1]={flags=1,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["+2 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",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["Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"]={nil,"Prefix: LocalIncreasedArmourAndEnergyShield5 Prefix: IncreasedLife6"}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["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["15% reduced Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",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["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["+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["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["60% increased Block Recovery"]={{[1]={flags=0,type="INC",value=60,name="BlockRecovery",keywordFlags=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["2% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",keywordFlags=0}},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["Items and Gems have 50% increased Attribute Requirements"]={nil,"Items and Gems have 50% increased Attribute Requirements"}c["3% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["15% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootRarity",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["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["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["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds"}c["30% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=0}},nil}c["2% chance to Freeze"]={{[1]={flags=0,type="BASE",value=2,name="EnemyFreezeChance",keywordFlags=0}},nil}c["22% increased Fire Damage"]={{[1]={flags=0,type="INC",value=22,name="FireDamage",keywordFlags=0}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,type="INC",value=75,name="PhysicalDamage",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["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["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["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["Rquires Level 64"]={nil,"Rquires Level 64"}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["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["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["15% increased Fire Damage"]={{[1]={flags=0,type="INC",value=15,name="FireDamage",keywordFlags=0}},nil}c["4% additional Block Chance"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["25% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds"}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius"}c["150% increased Armour"]={{[1]={flags=0,type="INC",value=150,name="Armour",keywordFlags=0}},nil}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill"}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 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["+60% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=60,name="ChaosResist",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["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage"}c["Elemental Equilibrium"]={{[1]={value="Elemental Equilibrium",type="LIST",keywordFlags=0,name="Keystone",flags=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["Eldritch Battery"]={{[1]={value="Eldritch Battery",type="LIST",keywordFlags=0,name="Keystone",flags=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["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["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["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["14% increased Physical Damage"]={{[1]={flags=0,type="INC",value=14,name="PhysicalDamage",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["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life"}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,type="INC",value=20,name="AreaOfEffect",keywordFlags=0}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=24,name="LootQuantity",keywordFlags=0}},nil}c["50% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=50,name="Evasion",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["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% 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["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["8% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=263,name="EvasionAndEnergyShield",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["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["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["+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["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["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["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveTrapLimit",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% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-40,name="LightRadius",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["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["+10 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",keywordFlags=0}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=4,name="Speed",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["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["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["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["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["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["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["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["Has 1 Abyssal Socket"]={nil,"Has 1 Abyssal Socket"}c["15% increased Cold Damage"]={{[1]={flags=0,type="INC",value=15,name="ColdDamage",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["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["400 Cold Damage taken per second per Frenzy Charge while moving"]={nil,"400 Cold Damage taken per second per Frenzy Charge while moving"}c["13% increased Cold Damage"]={{[1]={flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=0}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyChillDuration",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["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["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["12% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=12,name="ChaosDamage",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["15% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-15,name="Duration",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["80% less Burning Damage"]={{[1]={flags=8,type="MORE",value=-80,name="FireDamage",keywordFlags=0}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use"}c["13% increased Fire Damage"]={{[1]={flags=0,type="INC",value=13,name="FireDamage",keywordFlags=0}},nil}c["Your hits can't be Evaded"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=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["25% increased Fire Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",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["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["30% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}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["160% increased Armour"]={{[1]={flags=0,type="INC",value=160,name="Armour",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["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["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["+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["With at least 40 Strength in Radius, Ground Slam has a 35% 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 35% 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["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["+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["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["13% increased Light Radius"]={{[1]={flags=0,type="INC",value=13,name="LightRadius",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["+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["When Hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,type="BASE",value=10,name="DamageTakenFromManaBeforeLife",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["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["20% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=20,name="PhysicalDamage",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["Grants level 20 Summon Beastial Rhoa Skill"]={nil,nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial"}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["60% increased Armour"]={{[1]={flags=0,type="INC",value=60,name="Armour",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["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies"}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["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["+18% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["25% increased Burning Damage"]={{[1]={flags=8,type="INC",value=25,name="FireDamage",keywordFlags=0}},nil}c["+25 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Dex",keywordFlags=0}},nil}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=20,name="ManaRegen",keywordFlags=0}},nil}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=4,type="INC",value=80,name="CritChance",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 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 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["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=16}},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 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["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["30% increased Trap Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=4096}},nil}c["Crimson Dance"]={nil,"Crimson Dance"}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["+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["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["5% increased Intelligence"]={{[1]={flags=0,type="INC",value=5,name="Int",keywordFlags=0}},nil}c["+500 to maximum Life"]={{[1]={flags=0,type="BASE",value=500,name="Life",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["+30 to Dexterity"]={{[1]={flags=0,type="BASE",value=30,name="Dex",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["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["8% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=8,name="CritChance",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["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill"}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["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,type="BASE",value=10,name="BleedChance",keywordFlags=0}},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["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["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["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["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["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["30% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=30,name="BlockChanceConv",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["+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["15% increased Area Damage"]={{[1]={flags=512,type="INC",value=15,name="Damage",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["20% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=20,name="CurseEffect",keywordFlags=0}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",keywordFlags=0}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies 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 Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"}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["10% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=10,name="Accuracy",keywordFlags=0}},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["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies Every 8 seconds, gain Avatar of Fire for 4 seconds"]={{}," to inflict Bleeding Every 8 seconds, gain Avatar of Fire for 4 seconds"}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 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["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use"}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["8% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=8,name="PhysicalDamage",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["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["20% increased Melee Damage"]={{[1]={flags=256,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["+6% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdResistMax",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["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["5% increased Dexterity"]={{[1]={flags=0,type="INC",value=5,name="Dex",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["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["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["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["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["+50% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=50,name="LightningResist",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["60% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=60,name="ManaCost",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["Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock"}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["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["118% increased Physical Damage"]={{[1]={flags=0,type="INC",value=118,name="PhysicalDamage",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["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered"}c["17% increased Totem Life"]={{[1]={flags=0,type="INC",value=17,name="TotemLife",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["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["5 Maximum Void Charges Gain a Void Charge every second"]={nil,"5 Maximum Void Charges Gain a Void Charge every second"}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["75% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=75,name="ProjectileSpeed",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["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["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyChillDuration",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["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["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]={value=true,type="FLAG",keywordFlags=0,name="ArrowsThatPierceCauseBleeding",flags=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["25% increased Spell Damage"]={{[1]={flags=2,type="INC",value=25,name="Damage",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["+110 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=110,name="EnergyShield",keywordFlags=0}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=6,name="LootQuantity",keywordFlags=0}},nil}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["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 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["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["Requiresd level 54 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}},"Requiresd level 54 "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block"}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted"}c["25% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=25,name="LightningDamage",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["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["30% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=30,name="SpellDodgeChance",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["+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["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["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds"}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=20,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["Gore Footprints"]={nil,"Gore Footprints"}c["30% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-30,name="StrRequirement",keywordFlags=0}},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["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["16% increased Mine Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=8192}},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["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=100,name="CritMultiplier",keywordFlags=0}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-40,name="ChaosDamageTaken",keywordFlags=0}},nil}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},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["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["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds"}c["+30% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}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["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["70% increased Physical Damage"]={{[1]={flags=0,type="INC",value=70,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["+67 to maximum Life"]={{[1]={flags=0,type="BASE",value=67,name="Life",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["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["8% increased Dexterity"]={{[1]={flags=0,type="INC",value=8,name="Dex",keywordFlags=0}},nil}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["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["30% increased Fire Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=0}},nil}c["15% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=15,name="PoisonChance",keywordFlags=0}},nil}c["10% chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",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["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["+350 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=350,name="Accuracy",keywordFlags=0}},nil}c["Strength provides no bonus to Maximum Life"]={nil,"Strength provides no bonus to Maximum Life"}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["+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["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["-1 Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=90,name="CritMultiplier",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["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["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=90,name="CritChance",keywordFlags=0}},nil}c["220% increased Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EnergyShield",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["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["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["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["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellDodgeChance",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["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["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["Extra Gore"]={nil,"Extra Gore"}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=100,name="ManaCost",keywordFlags=0}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="LifeOnKill",keywordFlags=0}},nil}c["Iron Reflexes"]={{[1]={value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Perfect Agony"]={nil,"Perfect Agony"}c["Unwavering Stance"]={{[1]={value="Unwavering Stance",type="LIST",keywordFlags=0,name="Keystone",flags=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["+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["+20 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=20,name="Evasion",keywordFlags=0}},nil}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["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy"}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% 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["+3% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=3,name="ElementalResist",keywordFlags=0}},nil}c["35% increased maximum Life"]={{[1]={flags=0,type="INC",value=35,name="Life",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["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=25,name="CritMultiplier",keywordFlags=0}},nil}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["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["+225 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=225,name="Accuracy",keywordFlags=0}},nil}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["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["10% chance to Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},nil}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}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["63% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=63,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+75 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=75,name="EnergyShield",keywordFlags=0}},nil}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["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["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["Cannot Leech Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=0}},nil}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=115,name="EvasionAndEnergyShield",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["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["50% increased Area Damage"]={{[1]={flags=512,type="INC",value=50,name="Damage",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["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen"}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["Adds 16-25 Physical Damage to Attacks while you have a Beastial 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 Beastial Minion"}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["30% chance of Projectiles Piercing"]={{[1]={flags=0,type="BASE",value=30,name="PierceChance",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["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["+22% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=22,name="ElementalResist",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["27% increased Damage over Time"]={{[1]={flags=8,type="INC",value=27,name="Damage",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["+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["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["30% increased Mine Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=8192}},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["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level"}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["+28% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=28,name="ColdResist",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["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsFire",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["2% additional Block Chance"]={{[1]={flags=0,type="BASE",value=2,name="BlockChance",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["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["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["25% increased Cold Damage"]={{[1]={flags=0,type="INC",value=25,name="ColdDamage",keywordFlags=0}},nil}c["40% increased Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="BlockRecovery",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["20% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["24% increased maximum Life"]={{[1]={flags=0,type="INC",value=24,name="Life",keywordFlags=0}},nil}c["Avatar of Fire"]={{[1]={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=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["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsCold",keywordFlags=0}},nil}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsFire",keywordFlags=0}},nil}c["9% increased Movement Speed"]={{[1]={flags=0,type="INC",value=9,name="MovementSpeed",keywordFlags=0}},nil}c["4% increased Attack Speed"]={{[1]={flags=1,type="INC",value=4,name="Speed",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["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["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["+40 to Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=50,name="BleedChance",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["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["+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["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["+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 diff --git a/Data/2_6/Skills/act_dex.lua b/Data/2_6/Skills/act_dex.lua index 31ee15f6..594d204b 100644 --- a/Data/2_6/Skills/act_dex.lua +++ b/Data/2_6/Skills/act_dex.lua @@ -8,17 +8,6 @@ local skills, mod, flag, skill = ... skills["AnimateWeapon"] = { name = "Animate Weapon", - gemTags = { - dexterity = true, - active_skill = true, - duration = true, - minion = true, - spell = true, - }, - gemTagString = "Duration, Minion, Spell", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -89,17 +78,6 @@ skills["AnimateWeapon"] = { skills["NewArcticArmour"] = { name = "Arctic Armour", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - duration = true, - cold = true, - }, - gemTagString = "Spell, Duration, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Summons 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, }, @@ -157,16 +135,6 @@ skills["NewArcticArmour"] = { } skills["Barrage"] = { name = "Barrage", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - bow = true, - }, - gemTagString = "Attack, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [6] = true, [3] = true, [22] = true, [17] = true, [19] = true, }, @@ -240,17 +208,6 @@ skills["Barrage"] = { } skills["BearTrap"] = { name = "Bear Trap", - gemTags = { - trap = true, - dexterity = true, - active_skill = true, - duration = true, - cast = true, - }, - gemTagString = "Trap, Duration, Cast", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Throws a trap that damages and immobilises a single enemy.", skillTypes = { [12] = true, [19] = true, [37] = true, [39] = true, [10] = true, }, @@ -316,18 +273,6 @@ skills["BearTrap"] = { } skills["ChargedAttack"] = { name = "Blade Flurry", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - channelling = true, - melee = true, - }, - gemTagString = "Attack, AoE, Channelling, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, [6] = true, [58] = true, [24] = true, }, @@ -407,17 +352,6 @@ skills["ChargedAttack"] = { } skills["BladeVortex"] = { name = "Blade Vortex", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "This spell creates ethereal blades which orbit in an area around you, periodically dealing damage 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, }, @@ -507,16 +441,6 @@ skills["BladeVortex"] = { } skills["Bladefall"] = { name = "Bladefall", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Spell, AoE", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of five 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, }, @@ -576,18 +500,6 @@ skills["Bladefall"] = { } skills["BlastRain"] = { name = "Blast Rain", - gemTags = { - fire = true, - dexterity = true, - active_skill = true, - attack = true, - area = true, - bow = true, - }, - gemTagString = "Fire, Attack, AoE, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -661,19 +573,6 @@ skills["BlastRain"] = { } skills["BlinkArrow"] = { name = "Blink Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - minion = true, - duration = true, - movement = true, - bow = true, - }, - gemTagString = "Attack, Minion, Duration, Movement, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -745,16 +644,6 @@ skills["BlinkArrow"] = { } skills["BloodRage"] = { name = "Blood Rage", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Spell, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -816,17 +705,6 @@ skills["BloodRage"] = { } skills["BurningArrow"] = { name = "Burning Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - fire = true, - bow = true, - }, - gemTagString = "Attack, Fire, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Fires an arrow that deals fire damage to its target and has an increased chance of igniting it.", skillTypes = { [1] = true, [48] = true, [3] = true, [22] = true, [17] = true, [19] = true, [33] = true, [53] = true, [55] = true, }, @@ -887,19 +765,6 @@ skills["BurningArrow"] = { } skills["VaalBurningArrow"] = { name = "Vaal Burning Arrow", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - fire = true, - bow = true, - }, - gemTagString = "Vaal, Attack, AoE, Fire, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, [22] = true, [17] = true, [19] = true, [11] = true, [43] = true, [33] = true, [55] = true, }, @@ -962,19 +827,6 @@ skills["VaalBurningArrow"] = { } skills["PoisonArrow"] = { name = "Caustic Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - duration = true, - chaos = true, - bow = true, - }, - gemTagString = "Attack, AoE, Duration, Chaos, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Fires an arrow which deals additional chaos damage to enemies it hits, and creates a caustic cloud. Enemies in the cloud take chaos damage over time.", skillTypes = { [1] = true, [48] = true, [3] = true, [11] = true, [12] = true, [17] = true, [19] = true, [22] = true, [40] = true, [50] = true, }, @@ -1039,18 +891,6 @@ skills["PoisonArrow"] = { } skills["Cyclone"] = { name = "Cyclone", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, AoE, Movement, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, color = 2, description = "Damage enemies around you, then perform a spinning series of attacks as you travel to a target location.", skillTypes = { [1] = true, [6] = true, [11] = true, [24] = true, [38] = true, }, @@ -1126,19 +966,6 @@ skills["Cyclone"] = { } skills["VaalCyclone"] = { name = "Vaal Cyclone", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - duration = true, - melee = true, - }, - gemTagString = "Vaal, Attack, AoE, Duration, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, color = 2, description = "Spin and attack in place, damaging nearby enemies and pulling others towards you.", skillTypes = { [1] = true, [6] = true, [11] = true, [24] = true, [12] = true, [43] = true, }, @@ -1213,18 +1040,6 @@ skills["VaalCyclone"] = { } skills["Desecrate"] = { name = "Desecrate", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Spell, AoE, Duration, Chaos", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Desecrates the ground, summoning corpses and dealing chaos damage to all enemies in the area.", skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [36] = true, [40] = true, [26] = true, [50] = true, }, @@ -1285,17 +1100,6 @@ skills["Desecrate"] = { } skills["DetonateDead"] = { name = "Detonate Dead", - gemTags = { - dexterity = true, - active_skill = true, - cast = true, - area = true, - fire = true, - }, - gemTagString = "Cast, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Explodes an unused corpse, dealing fire damage to nearby enemies.", skillTypes = { [39] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, }, @@ -1363,18 +1167,6 @@ skills["DetonateDead"] = { } skills["VaalDetonateDead"] = { name = "Vaal Detonate Dead", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - cast = true, - area = true, - fire = true, - }, - gemTagString = "Vaal, Cast, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Explodes an unused corpse, dealing fire damage to nearby enemies. Nearby corpses will also explode in a chain reaction.", skillTypes = { [39] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [43] = true, [33] = true, }, @@ -1441,16 +1233,6 @@ skills["VaalDetonateDead"] = { } skills["DoubleStrike"] = { name = "Double Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Performs two fast attacks on target enemy with your main hand melee weapon.", skillTypes = { [1] = true, [6] = true, [7] = true, [25] = true, [28] = true, [24] = true, }, @@ -1519,18 +1301,6 @@ skills["DoubleStrike"] = { } skills["VaalDoubleStrike"] = { name = "Vaal Double Strike", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - melee = true, - duration = true, - }, - gemTagString = "Vaal, Attack, Melee, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Performs two fast attacks on target enemy with your main hand melee weapon, and summons your double for a duration to continuously attack monsters in this fashion.", skillTypes = { [1] = true, [6] = true, [7] = true, [25] = true, [28] = true, [24] = true, [12] = true, [43] = true, }, @@ -1600,16 +1370,6 @@ skills["VaalDoubleStrike"] = { } skills["DualStrike"] = { name = "Dual Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -1674,20 +1434,6 @@ skills["DualStrike"] = { } skills["ElementalHit"] = { name = "Elemental Hit", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - fire = true, - cold = true, - lightning = true, - bow = true, - }, - gemTagString = "Attack, Melee, Fire, Cold, Lightning, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "A standard attack (with any weapon) that adds damage of a random element.", skillTypes = { [1] = true, [6] = true, [3] = true, [22] = true, [17] = true, [19] = true, [25] = true, [28] = true, [24] = true, [33] = true, [34] = true, [35] = true, [48] = true, }, @@ -1764,16 +1510,6 @@ skills["ElementalHit"] = { } skills["EtherealKnives"] = { name = "Ethereal Knives", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - spell = true, - }, - gemTagString = "Projectile, Spell", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Fires an arc of knives in front of the caster which deals physical damage.", skillTypes = { [2] = true, [10] = true, [3] = true, [18] = true, [17] = true, [19] = true, [26] = true, [36] = true, }, @@ -1832,19 +1568,6 @@ skills["EtherealKnives"] = { } skills["ExplosiveArrow"] = { name = "Explosive Arrow", - gemTags = { - fire = true, - dexterity = true, - active_skill = true, - attack = true, - area = true, - duration = true, - bow = true, - }, - gemTagString = "Fire, Attack, AoE, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, [3] = true, [10] = true, [11] = true, [12] = true, [22] = true, [17] = true, [19] = true, [33] = true, }, @@ -1935,19 +1658,6 @@ skills["ExplosiveArrow"] = { } skills["FireTrap"] = { name = "Fire Trap", - gemTags = { - trap = true, - dexterity = true, - active_skill = true, - spell = true, - duration = true, - area = true, - fire = true, - }, - gemTagString = "Trap, Spell, Duration, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -2015,17 +1725,6 @@ skills["FireTrap"] = { } skills["FlickerStrike"] = { name = "Flicker Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - movement = true, - }, - gemTagString = "Attack, Melee, Movement", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [6] = true, [24] = true, [25] = true, [28] = true, [38] = true, }, @@ -2097,19 +1796,6 @@ skills["FlickerStrike"] = { } skills["FreezeMine"] = { name = "Freeze Mine", - gemTags = { - mine = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Mine, Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Lays a remote mine that you can detonate to freeze all enemies in the area.", skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [41] = true, [34] = true, }, @@ -2174,17 +1860,6 @@ skills["FreezeMine"] = { } skills["Frenzy"] = { name = "Frenzy", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - bow = true, - }, - gemTagString = "Attack, Melee, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [3] = true, [6] = true, [22] = true, [17] = true, [19] = true, [25] = true, [28] = true, [24] = true, }, @@ -2243,18 +1918,6 @@ skills["Frenzy"] = { } skills["FrostBlades"] = { name = "Frost Blades", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - cold = true, - }, - gemTagString = "Projectile, Attack, Melee, Cold", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Attack with increased range, releasing icy blades from the struck enemy that fly at other enemies. Requires a Melee Weapon.", skillTypes = { [1] = true, [3] = true, [6] = true, [25] = true, [28] = true, [24] = true, [34] = true, [48] = true, }, @@ -2340,17 +2003,6 @@ skills["FrostBlades"] = { } skills["Grace"] = { name = "Grace", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2409,19 +2061,6 @@ skills["Grace"] = { } skills["VaalGrace"] = { name = "Vaal Grace", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2481,17 +2120,6 @@ skills["VaalGrace"] = { } skills["Haste"] = { name = "Haste", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2552,19 +2180,6 @@ skills["Haste"] = { } skills["VaalHaste"] = { name = "Vaal Haste", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2625,18 +2240,6 @@ skills["VaalHaste"] = { } skills["Hatred"] = { name = "Hatred", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Aura, Spell, AoE, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Casts an aura that increases the cold damage of you and your allies.", skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [34] = true, }, @@ -2695,17 +2298,6 @@ skills["Hatred"] = { } skills["HeraldOfIce"] = { name = "Herald of Ice", - gemTags = { - dexterity = true, - active_skill = true, - cast = true, - area = true, - cold = true, - }, - gemTagString = "Cast, AoE, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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.", skillTypes = { [39] = true, [5] = true, [15] = true, [16] = true, [10] = true, [11] = true, [34] = true, [27] = true, }, @@ -2771,19 +2363,6 @@ skills["HeraldOfIce"] = { } skills["IceShot"] = { name = "Ice Shot", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - duration = true, - cold = true, - bow = true, - }, - gemTagString = "Attack, AoE, Duration, Cold, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [3] = true, [11] = true, [12] = true, [22] = true, [17] = true, [19] = true, [34] = true, }, @@ -2857,19 +2436,6 @@ skills["IceShot"] = { } skills["IceTrap"] = { name = "Ice Trap", - gemTags = { - trap = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - duration = true, - }, - gemTagString = "Trap, Spell, AoE, Cold, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, [12] = true, }, @@ -2933,17 +2499,6 @@ skills["IceTrap"] = { } skills["DoubleSlash"] = { name = "Lacerate", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, [6] = true, [11] = true, [28] = true, [24] = true, }, @@ -3018,18 +2573,6 @@ skills["DoubleSlash"] = { } skills["LightningArrow"] = { name = "Lightning Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - lightning = true, - bow = true, - }, - gemTagString = "Attack, AoE, Lightning, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, [11] = true, [3] = true, [22] = true, [17] = true, [19] = true, [35] = true, }, @@ -3089,18 +2632,6 @@ skills["LightningArrow"] = { } skills["LightningStrike"] = { name = "Lightning Strike", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - lightning = true, - }, - gemTagString = "Projectile, Attack, Melee, Lightning", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, [6] = true, [25] = true, [28] = true, [24] = true, [35] = true, }, @@ -3185,19 +2716,6 @@ skills["LightningStrike"] = { } skills["VaalLightningStrike"] = { name = "Vaal Lightning Strike", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - melee = true, - duration = true, - lightning = true, - }, - gemTagString = "Vaal, Attack, Melee, Duration, Lightning", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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 forced into the enemy as you strike, electrically charging them for a duration, during which lightning will arc between them and other nearby enemies, dealing damage. This occurs even if the attack is dodged.", skillTypes = { [1] = true, [6] = true, [25] = true, [28] = true, [24] = true, [12] = true, [43] = true, [35] = true, }, @@ -3276,18 +2794,6 @@ skills["VaalLightningStrike"] = { } skills["MirrorArrow"] = { name = "Mirror Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - minion = true, - duration = true, - bow = true, - }, - gemTagString = "Attack, Minion, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [21] = true, [12] = true, [22] = true, [17] = true, [19] = true, }, @@ -3359,17 +2865,6 @@ skills["MirrorArrow"] = { } skills["NewPhaseRun"] = { name = "Phase Run", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - duration = true, - movement = true, - }, - gemTagString = "Spell, Duration, Movement", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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. Consumes Frenzy Charges to increase duration.", skillTypes = { [2] = true, [5] = true, [12] = true, [36] = true, [38] = true, }, @@ -3430,18 +2925,6 @@ skills["NewPhaseRun"] = { } skills["PoachersMark"] = { name = "Poacher's Mark", - gemTags = { - curse = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3506,18 +2989,6 @@ skills["PoachersMark"] = { } skills["ProjectileWeakness"] = { name = "Projectile Weakness", - gemTags = { - curse = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3580,18 +3051,6 @@ skills["ProjectileWeakness"] = { } skills["Puncture"] = { name = "Puncture", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - duration = true, - melee = true, - bow = true, - }, - gemTagString = "Attack, Duration, Melee, Bow", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Punctures the target, causing a bleeding debuff. While bleeding, they take damage over time based on how much damage was dealt in the initial hit. The bleeding deals more damage while they move. Puncture works with bows, daggers, claws or swords.", skillTypes = { [1] = true, [48] = true, [3] = true, [6] = true, [12] = true, [17] = true, [19] = true, [22] = true, [25] = true, [28] = true, [24] = true, [40] = true, }, @@ -3660,18 +3119,6 @@ skills["Puncture"] = { } skills["ColdResistAura"] = { name = "Purity of Ice", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Aura, Spell, AoE, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -3731,17 +3178,6 @@ skills["ColdResistAura"] = { } skills["RainOfArrows"] = { name = "Rain of Arrows", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - bow = true, - }, - gemTagString = "Attack, AoE, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Fires a large number of arrows into the air, to land at the target after a short delay.", skillTypes = { [1] = true, [48] = true, [11] = true, [14] = true, [22] = true, [17] = true, [19] = true, }, @@ -3803,19 +3239,6 @@ skills["RainOfArrows"] = { } skills["VaalRainOfArrows"] = { name = "Vaal Rain of Arrows", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - duration = true, - bow = true, - }, - gemTagString = "Vaal, Attack, AoE, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Fires a large number of arrows into the air, to land at the target after a short delay. Enemies hit by the arrows are pinned in place, unable to move for a time.", skillTypes = { [1] = true, [48] = true, [11] = true, [14] = true, [22] = true, [17] = true, [19] = true, [12] = true, [43] = true, }, @@ -3879,17 +3302,6 @@ skills["VaalRainOfArrows"] = { } skills["Reave"] = { name = "Reave", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, [6] = true, [11] = true, [28] = true, [24] = true, }, @@ -3967,18 +3379,6 @@ skills["Reave"] = { } skills["VaalReave"] = { name = "Vaal Reave", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Vaal, Attack, AoE, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, [6] = true, [11] = true, [28] = true, [24] = true, [43] = true, }, @@ -4061,17 +3461,6 @@ skills["VaalReave"] = { } skills["Riposte"] = { name = "Riposte", - gemTags = { - trigger = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Trigger, Attack, Melee", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [6] = true, [47] = true, [57] = true, }, @@ -4143,18 +3532,6 @@ skills["Riposte"] = { } skills["ShrapnelShot"] = { name = "Shrapnel Shot", - gemTags = { - lightning = true, - dexterity = true, - active_skill = true, - attack = true, - area = true, - bow = true, - }, - gemTagString = "Lightning, Attack, AoE, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [11] = true, [22] = true, [17] = true, [19] = true, [35] = true, [48] = true, }, @@ -4229,18 +3606,6 @@ skills["ShrapnelShot"] = { } skills["SiegeBallista"] = { name = "Siege Ballista", - gemTags = { - totem = true, - dexterity = true, - active_skill = true, - attack = true, - duration = true, - bow = true, - }, - gemTagString = "Totem, Attack, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Summons a totem that attacks with piercing arrows. It attacks slowly, but deals increased damage.", skillTypes = { [1] = true, [3] = true, [48] = true, [17] = true, [19] = true, [30] = true, [12] = true, }, @@ -4310,19 +3675,6 @@ skills["SiegeBallista"] = { } skills["SmokeMine"] = { name = "Smoke Mine", - gemTags = { - mine = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - movement = true, - }, - gemTagString = "Mine, Spell, AoE, Duration, Movement", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4384,16 +3736,6 @@ skills["SmokeMine"] = { } skills["ThrownWeapon"] = { name = "Spectral Throw", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - }, - gemTagString = "Projectile, Attack", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, [6] = true, }, @@ -4462,17 +3804,6 @@ skills["ThrownWeapon"] = { } skills["VaalThrownWeapon"] = { name = "Vaal Spectral Throw", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - }, - gemTagString = "Projectile, Vaal, Attack", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, [6] = true, [43] = true, }, @@ -4541,16 +3872,6 @@ skills["VaalThrownWeapon"] = { } skills["SplitArrow"] = { name = "Split Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - bow = true, - }, - gemTagString = "Attack, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Fires multiple arrows at different targets.", skillTypes = { [1] = true, [48] = true, [3] = true, [22] = true, [17] = true, [19] = true, }, @@ -4609,18 +3930,6 @@ skills["SplitArrow"] = { } skills["SummonIceGolem"] = { name = "Summon Ice Golem", - gemTags = { - dexterity = true, - active_skill = true, - cold = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Cold, Minion, Spell, Golem", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4689,18 +3998,6 @@ skills["SummonIceGolem"] = { } skills["TemporalChains"] = { name = "Temporal Chains", - gemTags = { - curse = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4762,16 +4059,6 @@ skills["TemporalChains"] = { } skills["TornadoShot"] = { name = "Tornado Shot", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - bow = true, - }, - gemTagString = "Attack, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [17] = true, [19] = true, [22] = true, [48] = true, }, @@ -4831,18 +4118,6 @@ skills["TornadoShot"] = { } skills["ViperStrike"] = { name = "Viper Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - duration = true, - melee = true, - chaos = true, - }, - gemTagString = "Attack, Duration, Melee, Chaos", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, [6] = true, [12] = true, [28] = true, [24] = true, [25] = true, [40] = true, [50] = true, }, @@ -4909,17 +4184,6 @@ skills["ViperStrike"] = { } skills["WhirlingBlades"] = { name = "Whirling Blades", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, Movement, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Dive through enemies, dealing weapon damage. Only works with daggers, claws and one handed swords.", skillTypes = { [1] = true, [6] = true, [24] = true, [38] = true, }, @@ -4982,22 +4246,6 @@ skills["WhirlingBlades"] = { } skills["WildStrike"] = { name = "Wild Strike", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - lightning = true, - cold = true, - fire = true, - area = true, - chaining = true, - }, - gemTagString = "Projectile, Attack, Melee, Lightning, Cold, Fire, AoE, Chaining", - gemStr = 40, - gemDex = 60, - gemInt = 0, color = 2, description = "Your melee weapon strikes an enemy, converting some of the damage to a random element. Then, depending on the element chosen, it releases an explosion, an arcing bolt of lightning, or an icy wave.", skillTypes = { [1] = true, [6] = true, [25] = true, [28] = true, [24] = true, [35] = true, [34] = true, [33] = true, [3] = true, [11] = true, [23] = true, [48] = true, }, diff --git a/Data/2_6/Skills/act_int.lua b/Data/2_6/Skills/act_int.lua index 99b62999..29057d76 100644 --- a/Data/2_6/Skills/act_int.lua +++ b/Data/2_6/Skills/act_int.lua @@ -8,17 +8,6 @@ local skills, mod, flag, skill = ... skills["Arc"] = { name = "Arc", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - chaining = true, - lightning = true, - }, - gemTagString = "Spell, Chaining, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "An arc of lightning stretches from the caster to a targeted nearby enemy and chains on to additional targets.", skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [26] = true, [36] = true, [45] = true, [35] = true, }, @@ -77,18 +66,6 @@ skills["Arc"] = { } skills["VaalArcChain"] = { name = "Vaal Arc", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - chaining = true, - lightning = true, - }, - gemTagString = "Vaal, Spell, Chaining, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "An arc of lightning stretches from the caster to a targeted nearby enemy and chains on to many additional targets.", skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [26] = true, [43] = true, [35] = true, }, @@ -145,19 +122,6 @@ skills["VaalArcChain"] = { } skills["ArcticBreath"] = { name = "Arctic Breath", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - area = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Duration, AoE, Cold", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, description = "Fires a frozen skull projectile that leaves a trail of ground ice behind it. It explodes on impact, creating more ground ice and damaging targets within an area.", skillTypes = { [2] = true, [3] = true, [10] = true, [17] = true, [18] = true, [19] = true, [12] = true, [11] = true, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -218,18 +182,6 @@ skills["ArcticBreath"] = { } skills["AssassinsMark"] = { name = "Assassin's Mark", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -294,18 +246,6 @@ skills["AssassinsMark"] = { } skills["BallLightning"] = { name = "Ball Lightning", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Projectile, Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, [11] = true, [18] = true, [17] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, }, @@ -365,19 +305,6 @@ skills["BallLightning"] = { } skills["Blight"] = { name = "Blight", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - chaos = true, - area = true, - channelling = true, - duration = true, - }, - gemTagString = "Spell, Chaos, AoE, Channelling, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -442,17 +369,6 @@ skills["Blight"] = { } skills["BoneOffering"] = { name = "Bone Offering", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -513,17 +429,6 @@ skills["BoneOffering"] = { } skills["Clarity"] = { name = "Clarity", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -582,19 +487,6 @@ skills["Clarity"] = { } skills["VaalClarity"] = { name = "Vaal Clarity", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -653,17 +545,6 @@ skills["VaalClarity"] = { } skills["ColdSnap"] = { name = "Cold Snap", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Ice crystals protrude from the ground at target location. Monsters in this area take damage and become frozen. The cooldown can be bypassed by expending a Power Charge.", skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -728,19 +609,6 @@ skills["ColdSnap"] = { } skills["VaalColdSnap"] = { name = "Vaal Cold Snap", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "A sequence of ice crystals erupts from the ground around the caster, damaging enemies and leaving the ground chilled.", skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [12] = true, [43] = true, [34] = true, }, @@ -800,19 +668,6 @@ skills["VaalColdSnap"] = { } skills["Conductivity"] = { name = "Conductivity", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -874,18 +729,6 @@ skills["Conductivity"] = { } skills["Contagion"] = { name = "Contagion", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Spell, AoE, Duration, Chaos", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, }, @@ -946,17 +789,6 @@ skills["Contagion"] = { } skills["ConversionTrap"] = { name = "Conversion Trap", - gemTags = { - trap = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Trap, Spell, Duration", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -1016,17 +848,6 @@ skills["ConversionTrap"] = { } skills["Convocation"] = { name = "Convocation", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1086,19 +907,6 @@ skills["Convocation"] = { } skills["Discharge"] = { name = "Discharge", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - cold = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Fire, Cold, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [26] = true, [36] = true, [45] = true, [33] = true, [34] = true, [35] = true, [60] = true, }, @@ -1164,17 +972,6 @@ skills["Discharge"] = { } skills["Discipline"] = { name = "Discipline", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Casts an aura that grants energy shield to you and your allies.", skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, }, @@ -1233,19 +1030,6 @@ skills["Discipline"] = { } skills["VaalDiscipline"] = { name = "Vaal Discipline", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1305,18 +1089,6 @@ skills["VaalDiscipline"] = { } skills["ElementalWeakness"] = { name = "Elemental Weakness", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1377,18 +1149,6 @@ skills["ElementalWeakness"] = { } skills["Enfeeble"] = { name = "Enfeeble", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1453,18 +1213,6 @@ skills["Enfeeble"] = { } skills["EssenceDrain"] = { name = "Essence Drain", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - chaos = true, - }, - gemTagString = "Projectile, Spell, Duration, Chaos", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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.", skillTypes = { [2] = true, [3] = true, [12] = true, [18] = true, [26] = true, [40] = true, [50] = true, [10] = true, [36] = true, }, @@ -1530,19 +1278,6 @@ skills["EssenceDrain"] = { } skills["FireNovaMine"] = { name = "Fire Nova Mine", - gemTags = { - area = true, - mine = true, - intelligence = true, - active_skill = true, - spell = true, - fire = true, - duration = true, - }, - gemTagString = "AoE, Mine, Spell, Fire, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, [12] = true, }, @@ -1609,18 +1344,6 @@ skills["FireNovaMine"] = { } skills["Fireball"] = { name = "Fireball", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Projectile, Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Unleashes a ball of fire towards a target which explodes, damaging nearby foes.", skillTypes = { [3] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [33] = true, }, @@ -1690,19 +1413,6 @@ skills["Fireball"] = { } skills["VaalFireballSpiralNova"] = { name = "Vaal Fireball", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Projectile, Vaal, Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Launches a series of fireballs in all directions around the caster.", skillTypes = { [3] = true, [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [43] = true, [33] = true, }, @@ -1773,18 +1483,6 @@ skills["VaalFireballSpiralNova"] = { } skills["Firestorm"] = { name = "Firestorm", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, AoE, Duration, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1849,18 +1547,6 @@ skills["Firestorm"] = { } skills["FlameDash"] = { name = "Flame Dash", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - movement = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, Movement, Duration, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1922,17 +1608,6 @@ skills["FlameDash"] = { } skills["FlameWhip"] = { name = "Flame Surge", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1992,18 +1667,6 @@ skills["FlameWhip"] = { } skills["Flameblast"] = { name = "Flameblast", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - channelling = true, - }, - gemTagString = "Spell, AoE, Fire, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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.", skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [33] = true, [58] = true, }, @@ -2073,18 +1736,6 @@ skills["Flameblast"] = { } skills["VaalFlameblast"] = { name = "Vaal Flameblast", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Targets an area and builds up a large explosion. The build-up speed is based on cast speed. The explosion occurs after it reaches 10 stacks.", skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [43] = true, [33] = true, }, @@ -2144,19 +1795,6 @@ skills["VaalFlameblast"] = { } skills["Flammability"] = { name = "Flammability", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Fire", - gemStr = 40, - gemDex = 0, - gemInt = 60, 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, }, @@ -2218,17 +1856,6 @@ skills["Flammability"] = { } skills["FleshOffering"] = { name = "Flesh Offering", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -2289,17 +1916,6 @@ skills["FleshOffering"] = { } skills["FreezingPulse"] = { name = "Freezing Pulse", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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 runs out of time and dissipates completely.", skillTypes = { [2] = true, [3] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -2363,18 +1979,6 @@ skills["FreezingPulse"] = { } skills["FrostBomb"] = { name = "Frost Bomb", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies that reduces their cold resistance and life regeneration. When its duration ends, the crystal 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, }, @@ -2439,17 +2043,6 @@ skills["FrostBomb"] = { } skills["FrostWall"] = { name = "Frost Wall", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - duration = true, - cold = true, - }, - gemTagString = "Spell, Duration, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2509,19 +2102,6 @@ skills["FrostWall"] = { } skills["Frostbite"] = { name = "Frostbite", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -2583,17 +2163,6 @@ skills["Frostbite"] = { } skills["FrostBolt"] = { name = "Frostbolt", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Fires a slow-moving projectile that pierces through enemies, dealing cold damage.", skillTypes = { [2] = true, [3] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [34] = true, [36] = true, [60] = true, }, @@ -2651,17 +2220,6 @@ skills["FrostBolt"] = { } skills["GlacialCascade"] = { name = "Glacial Cascade", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2723,18 +2281,6 @@ skills["GlacialCascade"] = { } skills["HeraldOfThunder"] = { name = "Herald of Thunder", - gemTags = { - intelligence = true, - active_skill = true, - cast = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Cast, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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.", skillTypes = { [39] = true, [5] = true, [15] = true, [16] = true, [10] = true, [11] = true, [12] = true, [35] = true, [27] = true, }, @@ -2801,17 +2347,6 @@ skills["HeraldOfThunder"] = { } skills["IceNova"] = { name = "Ice Nova", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "A chilling circle of ice expands from the caster. 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, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -2871,18 +2406,6 @@ skills["IceNova"] = { } skills["VaalIceNova"] = { name = "Vaal Ice Nova", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Vaal, Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, [26] = true, [43] = true, [34] = true, }, @@ -2941,17 +2464,6 @@ skills["VaalIceNova"] = { } skills["IceSpear"] = { name = "Ice Spear", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Launches a shard of ice that pierces close enemies, before exploding on a distant enemy with a much higher critical strike chance.", skillTypes = { [2] = true, [3] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -3020,18 +2532,6 @@ skills["IceSpear"] = { } skills["Incinerate"] = { name = "Incinerate", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - fire = true, - channelling = true, - }, - gemTagString = "Projectile, Spell, Fire, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Continuously launches a torrent of fire from your hand. The longer you channel this spell, the larger and more damaging the flames become.", skillTypes = { [2] = true, [3] = true, [10] = true, [18] = true, [33] = true, [58] = true, }, @@ -3100,17 +2600,6 @@ skills["Incinerate"] = { } skills["ClusterBurst"] = { name = "Kinetic Blast", - gemTags = { - intelligence = true, - active_skill = true, - attack = true, - area = true, - projectile = true, - }, - gemTagString = "Attack, AoE, Projectile", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, [6] = true, [11] = true, [17] = true, [19] = true, [22] = true, }, @@ -3184,17 +2673,6 @@ skills["ClusterBurst"] = { } skills["LightningTendrils"] = { name = "Lightning Tendrils", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Lightning is released from your hands four times in quick succession, damaging all enemies in an arc in front of you.", skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [26] = true, [35] = true, }, @@ -3256,19 +2734,6 @@ skills["LightningTendrils"] = { } skills["LightningTrap"] = { name = "Lightning Trap", - gemTags = { - projectile = true, - trap = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Trap, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, [37] = true, [19] = true, [12] = true, [35] = true, }, @@ -3334,20 +2799,6 @@ skills["LightningTrap"] = { } skills["VaalLightningTrap"] = { name = "Vaal Lightning Trap", - gemTags = { - projectile = true, - trap = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Trap, Vaal, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, [37] = true, [19] = true, [12] = true, [43] = true, [35] = true, }, @@ -3415,19 +2866,6 @@ skills["VaalLightningTrap"] = { } skills["LightningWarp"] = { name = "Lightning Warp", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - movement = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Duration, Movement, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3490,19 +2928,6 @@ skills["LightningWarp"] = { } skills["VaalLightningWarpInstant"] = { name = "Vaal Lightning Warp", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3563,19 +2988,6 @@ skills["VaalLightningWarpInstant"] = { } skills["MagmaOrb"] = { name = "Magma Orb", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - chaining = true, - }, - gemTagString = "Projectile, Spell, AoE, Fire, Chaining", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, [26] = true, [23] = true, }, @@ -3637,19 +3049,6 @@ skills["MagmaOrb"] = { } skills["OrbOfStorms"] = { name = "Orb of Storms", - gemTags = { - lightning = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - area = true, - chaining = true, - }, - gemTagString = "Lightning, Spell, Duration, AoE, Chaining", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Creates a stationary electrical orb that frequently unleashes a splitting bolt of lightning at a nearby enemy. Using another lightning skill while inside the orb's cloud unleashes additional bolts. Casting this skill again will replace the previous orb. You can only cast this spell yourself, directly.", skillTypes = { [2] = true, [10] = true, [35] = true, [12] = true, [11] = true, [23] = true, }, @@ -3713,16 +3112,6 @@ skills["OrbOfStorms"] = { } skills["PowerSiphon"] = { name = "Power Siphon", - gemTags = { - intelligence = true, - active_skill = true, - attack = true, - projectile = true, - }, - gemTagString = "Attack, Projectile", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Fires your wand, 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, [6] = true, [3] = true, [22] = true, [17] = true, [19] = true, }, @@ -3781,17 +3170,6 @@ skills["PowerSiphon"] = { } skills["VaalPowerSiphon"] = { name = "Vaal Power Siphon", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - attack = true, - projectile = true, - }, - gemTagString = "Vaal, Attack, Projectile", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Fires your wand simultaneously at all nearby enemies, culling those close to death and granting you a power charge for each.", skillTypes = { [1] = true, [48] = true, [6] = true, [3] = true, [22] = true, [17] = true, [19] = true, [43] = true, }, @@ -3852,17 +3230,6 @@ skills["VaalPowerSiphon"] = { } skills["Purity"] = { name = "Purity of Elements", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 40, - gemDex = 0, - gemInt = 60, 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, }, @@ -3924,18 +3291,6 @@ skills["Purity"] = { } skills["LightningResistAura"] = { name = "Purity of Lightning", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Aura, Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -3995,16 +3350,6 @@ skills["LightningResistAura"] = { } skills["RaiseSpectre"] = { name = "Raise Spectre", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - }, - gemTagString = "Spell, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4069,16 +3414,6 @@ skills["RaiseSpectre"] = { } skills["RaiseZombie"] = { name = "Raise Zombie", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - }, - gemTagString = "Spell, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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.", skillTypes = { [2] = true, [9] = true, [21] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [49] = true, }, @@ -4140,17 +3475,6 @@ skills["RaiseZombie"] = { } skills["RighteousFire"] = { name = "Righteous Fire", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, 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, [18] = true, [29] = true, [36] = true, [40] = true, [33] = true, }, @@ -4216,18 +3540,6 @@ skills["RighteousFire"] = { } skills["VaalRighteousFire"] = { name = "Vaal Righteous Fire", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Fire", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, description = "A fiery blast removes your energy shield and all but 1 life, exploding outwards to deal fire damage to nearby enemies based on the life and energy shield lost.", skillTypes = { [2] = true, [11] = true, [10] = true, [43] = true, [33] = true, }, @@ -4287,18 +3599,6 @@ skills["VaalRighteousFire"] = { } skills["FireBeam"] = { name = "Scorching Ray", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - fire = true, - duration = true, - channelling = true, - }, - gemTagString = "Spell, Fire, Duration, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Unleash a beam of fire that burns enemies it touches, and decreases their fire resistance. Remaining in the beam intensifies the burning, adding a portion of the beam's damage in 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, }, @@ -4374,17 +3674,6 @@ skills["FireBeam"] = { } skills["ShockNova"] = { name = "Shock Nova", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, [43] = true, }, @@ -4453,18 +3742,6 @@ skills["ShockNova"] = { } skills["Spark"] = { name = "Spark", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Launches unpredictable sparks that move randomly until they hit an enemy or expire.", skillTypes = { [2] = true, [3] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [45] = true, [35] = true, }, @@ -4525,19 +3802,6 @@ skills["Spark"] = { } skills["VaalSparkSpiralNova"] = { name = "Vaal Spark", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Vaal, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Continuously launches unpredictable sparks in all directions that move randomly until they hit an enemy or expire.", skillTypes = { [2] = true, [3] = true, [10] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [43] = true, [35] = true, }, @@ -4599,17 +3863,6 @@ skills["VaalSparkSpiralNova"] = { } skills["SpiritOffering"] = { name = "Spirit Offering", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4670,18 +3923,6 @@ skills["SpiritOffering"] = { } skills["StormCall"] = { name = "Storm Call", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -4744,19 +3985,6 @@ skills["StormCall"] = { } skills["VaalStormCall"] = { name = "Vaal Storm Call", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Sets a marker at a location. While the marker remains, lightning strikes random enemies near it, dealing damage to them. After a short duration, a large bolt of lightning strikes the marker, dealing damage around it. When this happens, it will also set off the lightning at any other markers from this skill.", skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [43] = true, [35] = true, }, @@ -4816,18 +4044,6 @@ skills["VaalStormCall"] = { } skills["SummonChaosGolem"] = { name = "Summon Chaos Golem", - gemTags = { - intelligence = true, - active_skill = true, - chaos = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Chaos, Minion, Spell, Golem", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4896,18 +4112,6 @@ skills["SummonChaosGolem"] = { } skills["SummonLightningGolem"] = { name = "Summon Lightning Golem", - gemTags = { - intelligence = true, - active_skill = true, - lightning = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Lightning, Minion, Spell, Golem", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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 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, }, @@ -4975,18 +4179,6 @@ skills["SummonLightningGolem"] = { } skills["SummonRagingSpirit"] = { name = "Summon Raging Spirit", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, Minion, Duration, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -5047,17 +4239,6 @@ skills["SummonRagingSpirit"] = { } skills["SummonSkeletons"] = { name = "Summon Skeletons", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - duration = true, - }, - gemTagString = "Spell, Minion, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Summons slow moving skeletal minions that decay over time. 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, }, @@ -5122,18 +4303,6 @@ skills["SummonSkeletons"] = { } skills["VaalSummonSkeletons"] = { name = "Vaal Summon Skeletons", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - minion = true, - duration = true, - }, - gemTagString = "Vaal, Spell, Minion, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, [26] = true, [43] = true, }, @@ -5200,18 +4369,6 @@ skills["VaalSummonSkeletons"] = { } skills["TempestShield"] = { name = "Tempest Shield", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - lightning = true, - chaining = true, - duration = true, - }, - gemTagString = "Spell, Lightning, Chaining, Duration", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, 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, }, @@ -5275,18 +4432,6 @@ skills["TempestShield"] = { } skills["FrostBoltNova"] = { name = "Vortex", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - duration = true, - }, - gemTagString = "Spell, AoE, Cold, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex that continues to deal cold damage over time and chill enemies caught in it. If the caster targets near one of their Frostbolt projectiles, it will explode from the projectile instead, destroying it.", skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [34] = true, [36] = true, [12] = true, [60] = true, }, @@ -5347,18 +4492,6 @@ skills["FrostBoltNova"] = { } skills["Vulnerability"] = { name = "Vulnerability", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Curses all targets in an area, making them take increased physical damage and degeneration.", skillTypes = { [2] = true, [11] = true, [12] = true, [17] = true, [18] = true, [19] = true, [26] = true, [32] = true, [36] = true, }, @@ -5420,19 +4553,6 @@ skills["Vulnerability"] = { } skills["Wither"] = { name = "Wither", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - channelling = true, - }, - gemTagString = "Spell, AoE, Duration, Chaos, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Casts a debilitating effect on enemies in an area, Hindering their movement and applying a stacking debuff that increases the Chaos Damage they take. This effect can stack up to 20 times.", skillTypes = { [2] = true, [11] = true, [12] = true, [18] = true, [50] = true, [58] = true, }, @@ -5511,18 +4631,6 @@ skills["Wither"] = { } skills["Wrath"] = { name = "Wrath", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Aura, Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, diff --git a/Data/2_6/Skills/act_str.lua b/Data/2_6/Skills/act_str.lua index 102bfc95..4eeac804 100644 --- a/Data/2_6/Skills/act_str.lua +++ b/Data/2_6/Skills/act_str.lua @@ -8,18 +8,6 @@ local skills, mod, flag, skill = ... skills["AbyssalCry"] = { name = "Abyssal Cry", - gemTags = { - warcry = true, - strength = true, - active_skill = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Warcry, AoE, Duration, Chaos", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Performs a warcry, Hindering nearby enemies and causing them to explode when killed. The hinder effect is increased by 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, }, @@ -83,18 +71,6 @@ skills["AbyssalCry"] = { } skills["TotemMelee"] = { name = "Ancestral Protector", - gemTags = { - totem = true, - strength = true, - active_skill = true, - attack = true, - duration = true, - melee = true, - }, - gemTagString = "Totem, Attack, Duration, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons an Ancestor Totem which will attack enemies with melee strikes while you stand close to it. Being near it grants you more attack speed.", skillTypes = { [1] = true, [30] = true, [12] = true, [6] = true, [25] = true, [24] = true, [17] = true, [19] = true, }, @@ -177,19 +153,6 @@ skills["TotemMelee"] = { } skills["AncestorTotemSlam"] = { name = "Ancestral Warchief", - gemTags = { - totem = true, - strength = true, - active_skill = true, - attack = true, - duration = true, - area = true, - melee = true, - }, - gemTagString = "Totem, Attack, Duration, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons an Ancestor Totem that will attack enemies with a powerful main hand slam while you stand close to it. Being near it grants you more melee damage.", skillTypes = { [1] = true, [30] = true, [12] = true, [6] = true, [24] = true, [17] = true, [19] = true, [11] = true, }, @@ -275,18 +238,6 @@ skills["AncestorTotemSlam"] = { } skills["Anger"] = { name = "Anger", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Aura, Spell, AoE, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, 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, }, @@ -348,16 +299,6 @@ skills["Anger"] = { } skills["AnimateArmour"] = { name = "Animate Guardian", - gemTags = { - strength = true, - active_skill = true, - spell = true, - minion = true, - }, - gemTagString = "Spell, Minion", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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 weapons.", skillTypes = { [2] = true, [9] = true, [21] = true, [18] = true, [36] = true, [49] = true, }, @@ -431,17 +372,6 @@ skills["AnimateArmour"] = { } skills["Cleave"] = { name = "Cleave", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 60, - gemDex = 40, - gemInt = 0, 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, [6] = true, [8] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, @@ -508,18 +438,6 @@ skills["Cleave"] = { } skills["DecoyTotem"] = { name = "Decoy Totem", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - area = true, - }, - gemTagString = "Totem, Spell, Duration, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons a totem that taunts nearby monsters to attack it.", skillTypes = { [2] = true, [17] = true, [12] = true, [19] = true, [11] = true, [30] = true, [26] = true, }, @@ -586,17 +504,6 @@ skills["DecoyTotem"] = { } skills["Determination"] = { name = "Determination", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -655,17 +562,6 @@ skills["Determination"] = { } skills["DevouringTotem"] = { name = "Devouring Totem", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Totem, Spell, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, 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, [12] = true, [19] = true, [30] = true, }, @@ -728,18 +624,6 @@ skills["DevouringTotem"] = { } skills["DominatingBlow"] = { name = "Dominating Blow", - gemTags = { - strength = true, - active_skill = true, - attack = true, - minion = true, - duration = true, - melee = true, - }, - gemTagString = "Attack, Minion, Duration, Melee", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Attacks the enemy with a melee strike. If a non-unique enemy is killed shortly after being hit by Dominating Blow, that enemy is revived as a minion until the skill duration ends.", skillTypes = { [1] = true, [6] = true, [9] = true, [12] = true, [21] = true, [25] = true, [28] = true, [24] = true, }, @@ -812,18 +696,6 @@ skills["DominatingBlow"] = { } skills["Earthquake"] = { name = "Earthquake", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - duration = true, - melee = true, - }, - gemTagString = "Attack, AoE, Duration, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [6] = true, [11] = true, [24] = true, [7] = true, [10] = true, [28] = true, [12] = true, }, @@ -901,17 +773,6 @@ skills["Earthquake"] = { } skills["EnduringCry"] = { name = "Enduring Cry", - gemTags = { - warcry = true, - strength = true, - active_skill = true, - area = true, - duration = true, - }, - gemTagString = "Warcry, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -972,19 +833,6 @@ skills["EnduringCry"] = { } skills["FlameTotem"] = { name = "Flame Totem", - gemTags = { - projectile = true, - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - fire = true, - }, - gemTagString = "Projectile, Totem, Spell, Duration, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Summons a totem that fires a stream of flame at nearby enemies.", skillTypes = { [2] = true, [3] = true, [10] = true, [12] = true, [17] = true, [19] = true, [30] = true, [33] = true, }, @@ -1052,17 +900,6 @@ skills["FlameTotem"] = { } skills["GlacialHammer"] = { name = "Glacial Hammer", - gemTags = { - strength = true, - active_skill = true, - attack = true, - melee = true, - cold = true, - }, - gemTagString = "Attack, Melee, Cold", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [6] = true, [25] = true, [28] = true, [24] = true, [34] = true, [53] = true, }, @@ -1126,20 +963,6 @@ skills["GlacialHammer"] = { } skills["VaalGlacialHammer"] = { name = "Vaal Glacial Hammer", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - attack = true, - melee = true, - duration = true, - area = true, - cold = true, - }, - gemTagString = "Vaal, Attack, Melee, Duration, AoE, Cold", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [6] = true, [25] = true, [28] = true, [24] = true, [12] = true, [11] = true, [43] = true, [34] = true, }, @@ -1205,17 +1028,6 @@ skills["VaalGlacialHammer"] = { } skills["GroundSlam"] = { name = "Ground Slam", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "The character slams the ground in front of them with their main hand weapon, creating a wave that travels forward and damages enemies with an increased chance to stun. Only works with Staves or Maces.", skillTypes = { [1] = true, [6] = true, [7] = true, [11] = true, [28] = true, [24] = true, }, @@ -1280,18 +1092,6 @@ skills["GroundSlam"] = { } skills["VaalGroundSlam"] = { name = "Vaal Ground Slam", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Vaal, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "The character slams the ground with their main hand weapon, creating a wave that travels in all directions and damages enemies. Only works with Staves or Maces.", skillTypes = { [1] = true, [6] = true, [7] = true, [11] = true, [28] = true, [24] = true, [43] = true, }, @@ -1358,16 +1158,6 @@ skills["VaalGroundSlam"] = { } skills["HeavyStrike"] = { name = "Heavy Strike", - gemTags = { - strength = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [6] = true, [25] = true, [28] = true, [24] = true, }, @@ -1434,17 +1224,6 @@ skills["HeavyStrike"] = { } skills["HeraldOfAsh"] = { name = "Herald of Ash", - gemTags = { - strength = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Channel fire through your hands, adding fire to your physical damage. If you kill an enemy with an attack, other enemies near them will be ignited for the overkill damage.", skillTypes = { [2] = true, [5] = true, [15] = true, [16] = true, [29] = true, [11] = true, [40] = true, [20] = true, [33] = true, [27] = true, }, @@ -1502,18 +1281,6 @@ skills["HeraldOfAsh"] = { } skills["IceCrash"] = { name = "Ice Crash", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - cold = true, - melee = true, - }, - gemTagString = "Attack, AoE, Cold, Melee", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Slam the ground with your main hand weapon, 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. Cannot be used with Multistrike.", skillTypes = { [1] = true, [6] = true, [11] = true, [24] = true, [7] = true, [34] = true, }, @@ -1597,16 +1364,6 @@ skills["IceCrash"] = { } skills["ImmortalCall"] = { name = "Immortal Call", - gemTags = { - strength = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Spell, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1663,17 +1420,6 @@ skills["ImmortalCall"] = { } skills["VaalImmortalCall"] = { name = "Vaal Immortal Call", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - spell = true, - duration = true, - }, - gemTagString = "Vaal, Spell, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1730,18 +1476,6 @@ skills["VaalImmortalCall"] = { } skills["InfernalBlow"] = { name = "Infernal Blow", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - fire = true, - }, - gemTagString = "Attack, AoE, Melee, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Hits the enemy, converting some of your physical damage to fire damage. If the enemy dies soon after being hit, they will explode, dealing fire damage to nearby enemies. The damage from this explosion cannot be reflected. Requires a Sword, Axe, Mace, Staff or Unarmed.", skillTypes = { [1] = true, [6] = true, [11] = true, [25] = true, [28] = true, [24] = true, [33] = true, }, @@ -1812,18 +1546,6 @@ skills["InfernalBlow"] = { } skills["LeapSlam"] = { name = "Leap Slam", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, AoE, Movement, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Jump into the air, damaging enemies (and knocking back some) with your main hand where you land. Enemies you would land on are pushed out of the way. Requires an axe, mace, sword or staff.", skillTypes = { [1] = true, [6] = true, [7] = true, [11] = true, [24] = true, [38] = true, }, @@ -1893,18 +1615,6 @@ skills["LeapSlam"] = { } skills["MoltenShell"] = { name = "Molten Shell", - gemTags = { - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, AoE, Duration, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, 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, [26] = true, [33] = true, }, @@ -1970,19 +1680,6 @@ skills["MoltenShell"] = { } skills["VaalMoltenShell"] = { name = "Vaal Molten Shell", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, 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, [26] = true, [43] = true, [33] = true, }, @@ -2046,19 +1743,6 @@ skills["VaalMoltenShell"] = { } skills["MoltenStrike"] = { name = "Molten Strike", - gemTags = { - projectile = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - fire = true, - }, - gemTagString = "Projectile, Attack, AoE, Melee, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [6] = true, [11] = true, [24] = true, [25] = true, [28] = true, [33] = true, [48] = true, }, @@ -2145,18 +1829,6 @@ skills["MoltenStrike"] = { } skills["Punishment"] = { name = "Punishment", - gemTags = { - curse = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -2218,18 +1890,6 @@ skills["Punishment"] = { } skills["FireResistAura"] = { name = "Purity of Fire", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Aura, Spell, AoE, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -2289,17 +1949,6 @@ skills["FireResistAura"] = { } skills["RallyingCry"] = { name = "Rallying Cry", - gemTags = { - warcry = true, - strength = true, - active_skill = true, - area = true, - duration = true, - }, - gemTagString = "Warcry, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Performs a warcry, granting increased damage and mana regeneration to you and your allies if there are nearby enemies. The damage increase is scaled by surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", skillTypes = { [5] = true, [11] = true, [12] = true, }, @@ -2361,18 +2010,6 @@ skills["RallyingCry"] = { } skills["Reckoning"] = { name = "Reckoning", - gemTags = { - trigger = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Trigger, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Perform a swift counter-attack against enemies in a cone shape when you block with your shield.", skillTypes = { [1] = true, [7] = true, [13] = true, [24] = true, [11] = true, [47] = true, [57] = true, }, @@ -2442,19 +2079,6 @@ skills["Reckoning"] = { } skills["RejuvenationTotem"] = { name = "Rejuvenation Totem", - gemTags = { - totem = true, - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Totem, Aura, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [12] = true, [15] = true, [27] = true, [17] = true, [19] = true, [30] = true, [44] = true, }, @@ -2519,18 +2143,6 @@ skills["RejuvenationTotem"] = { } skills["SearingBond"] = { name = "Searing Bond", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - fire = true, - }, - gemTagString = "Totem, Spell, Duration, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, 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, [12] = true, [17] = true, [19] = true, [27] = true, [29] = true, [30] = true, [36] = true, [33] = true, }, @@ -2592,18 +2204,6 @@ skills["SearingBond"] = { } skills["NewShieldCharge"] = { name = "Shield Charge", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, AoE, Movement, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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.", skillTypes = { [1] = true, [7] = true, [13] = true, [24] = true, [11] = true, [38] = true, }, @@ -2674,18 +2274,6 @@ skills["NewShieldCharge"] = { } skills["ShockwaveTotem"] = { name = "Shockwave Totem", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Totem, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons a totem that shakes the earth around it, knocking back and damaging nearby enemies", skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [19] = true, [30] = true, [26] = true, }, @@ -2753,19 +2341,6 @@ skills["ShockwaveTotem"] = { } skills["StaticStrike"] = { name = "Static Strike", - gemTags = { - strength = true, - active_skill = true, - attack = true, - melee = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Attack, Melee, AoE, Duration, Lightning", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Strike your enemies with a melee weapon, building up static energy on you. This energy damages enemies around you when it expires. ", skillTypes = { [1] = true, [6] = true, [25] = true, [28] = true, [24] = true, [11] = true, [12] = true, [35] = true, }, @@ -2849,18 +2424,6 @@ skills["StaticStrike"] = { } skills["SummonFireGolem"] = { name = "Summon Flame Golem", - gemTags = { - strength = true, - active_skill = true, - fire = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Fire, Minion, Spell, Golem", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -2928,17 +2491,6 @@ skills["SummonFireGolem"] = { } skills["SummonRockGolem"] = { name = "Summon Stone Golem", - gemTags = { - strength = true, - active_skill = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Minion, Spell, Golem", - gemStr = 60, - gemDex = 40, - gemInt = 0, 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 taunts enemies.", skillTypes = { [36] = true, [19] = true, [9] = true, [21] = true, [26] = true, [2] = true, [18] = true, [17] = true, [49] = true, [62] = true, }, @@ -3006,17 +2558,6 @@ skills["SummonRockGolem"] = { } skills["Sunder"] = { name = "Sunder", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Slams the ground with your main hand weapon, 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. Requires a Mace, Axe, or Staff.", skillTypes = { [1] = true, [6] = true, [7] = true, [11] = true, [28] = true, [24] = true, }, @@ -3091,17 +2632,6 @@ skills["Sunder"] = { } skills["Sweep"] = { name = "Sweep", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3167,18 +2697,6 @@ skills["Sweep"] = { } skills["Vengeance"] = { name = "Vengeance", - gemTags = { - trigger = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Trigger, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [6] = true, [57] = true, }, @@ -3250,16 +2768,6 @@ skills["Vengeance"] = { } skills["VigilantStrike"] = { name = "Vigilant Strike", - gemTags = { - attack = true, - strength = true, - active_skill = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, [6] = true, [28] = true, [25] = true, [53] = true, }, @@ -3329,17 +2837,6 @@ skills["VigilantStrike"] = { } skills["Vitality"] = { name = "Vitality", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3398,18 +2895,6 @@ skills["Vitality"] = { } skills["WarlordsMark"] = { name = "Warlord's Mark", - gemTags = { - curse = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, diff --git a/Data/2_6/Skills/other.lua b/Data/2_6/Skills/other.lua index 24de607c..84e2ab4f 100644 --- a/Data/2_6/Skills/other.lua +++ b/Data/2_6/Skills/other.lua @@ -33,15 +33,6 @@ skills["Melee"] = { } skills["GemDetonateMines"] = { name = "Detonate Mines", - gemTags = { - low_max_level = true, - active_skill = true, - spell = true, - }, - gemTagString = "Spell", - gemStr = 33, - gemDex = 33, - gemInt = 34, color = 4, description = "Detonates all the Remote Mines you have placed.", skillTypes = { [2] = true, [17] = true, [18] = true, [36] = true, }, @@ -73,15 +64,6 @@ skills["GemDetonateMines"] = { } skills["Portal"] = { name = "Portal", - gemTags = { - low_max_level = true, - active_skill = true, - spell = true, - }, - gemTagString = "Spell", - gemStr = 33, - gemDex = 33, - gemInt = 34, 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, }, @@ -113,16 +95,6 @@ skills["Portal"] = { } skills["VaalBreach"] = { name = "Vaal Breach", - gemTags = { - low_max_level = true, - active_skill = true, - vaal = true, - spell = true, - }, - gemTagString = "Vaal, Spell", - gemStr = 33, - gemDex = 33, - gemInt = 34, 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, }, diff --git a/Data/2_6/Skills/sup_dex.lua b/Data/2_6/Skills/sup_dex.lua index 43dd5641..eeb579d9 100644 --- a/Data/2_6/Skills/sup_dex.lua +++ b/Data/2_6/Skills/sup_dex.lua @@ -8,15 +8,6 @@ local skills, mod, flag, skill = ... skills["SupportAddedColdDamage"] = { name = "Added Cold Damage", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 1, 10, }, @@ -68,15 +59,6 @@ skills["SupportAddedColdDamage"] = { } skills["SupportAdditionalAccuracy"] = { name = "Additional Accuracy", - gemTags = { - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 40, - gemDex = 60, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 1, 56, }, @@ -126,14 +108,6 @@ skills["SupportAdditionalAccuracy"] = { } skills["SupportBlind"] = { name = "Blind", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -184,14 +158,6 @@ skills["SupportBlind"] = { } skills["SupportBlockReduction"] = { name = "Block Chance Reduction", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -242,16 +208,6 @@ skills["SupportBlockReduction"] = { } skills["SupportCastOnCrit"] = { name = "Cast On Critical Strike", - gemTags = { - dexterity = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 1, 36, }, @@ -306,16 +262,6 @@ skills["SupportCastOnCrit"] = { } skills["SupportCastOnDeath"] = { name = "Cast on Death", - gemTags = { - dexterity = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 36, }, @@ -369,16 +315,6 @@ skills["SupportCastOnDeath"] = { } skills["SupportChain"] = { name = "Chain", - gemTags = { - dexterity = true, - support = true, - chaining = true, - projectile = true, - }, - gemTagString = "Support, Chaining, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 23, 3, 54, 56, }, @@ -430,14 +366,6 @@ skills["SupportChain"] = { } skills["SupportChanceToFlee"] = { name = "Chance to Flee", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 1, 10, }, @@ -487,15 +415,6 @@ skills["SupportChanceToFlee"] = { } skills["SupportClusterTrap"] = { name = "Cluster Traps", - gemTags = { - trap = true, - dexterity = true, - support = true, - }, - gemTagString = "Trap, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 37, }, @@ -549,15 +468,6 @@ skills["SupportClusterTrap"] = { } skills["SupportColdPenetration"] = { name = "Cold Penetration", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -608,14 +518,6 @@ skills["SupportColdPenetration"] = { } skills["SupportCullingStrike"] = { name = "Culling Strike", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -670,15 +572,6 @@ skills["SupportCullingStrike"] = { } skills["SupportAdditionalQuality"] = { name = "Enhance", - gemTags = { - low_max_level = true, - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { }, @@ -710,15 +603,6 @@ skills["SupportAdditionalQuality"] = { } skills["SupportFasterAttack"] = { name = "Faster Attacks", - gemTags = { - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 1, 56, }, @@ -769,15 +653,6 @@ skills["SupportFasterAttack"] = { } skills["SupportFasterProjectiles"] = { name = "Faster Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 3, 14, 54, 56, }, @@ -830,15 +705,6 @@ skills["SupportFasterProjectiles"] = { } skills["SupportFork"] = { name = "Fork", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 3, 54, 56, }, @@ -890,15 +756,6 @@ skills["SupportFork"] = { } skills["SupportGreaterMultipleProjectiles"] = { name = "Greater Multiple Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 3, 54, 56, }, @@ -952,15 +809,6 @@ skills["SupportGreaterMultipleProjectiles"] = { } skills["SupportDamageAgainstChilled"] = { name = "Hypothermia", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -1012,15 +860,6 @@ skills["SupportDamageAgainstChilled"] = { } skills["SupportFrenzyChargeOnSlayingFrozenEnemy"] = { name = "Ice Bite", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -1072,15 +911,6 @@ skills["SupportFrenzyChargeOnSlayingFrozenEnemy"] = { } skills["SupportLesserMultipleProjectiles"] = { name = "Lesser Multiple Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 3, 54, 56, }, @@ -1134,14 +964,6 @@ skills["SupportLesserMultipleProjectiles"] = { } skills["SupportManaLeech"] = { name = "Mana Leech", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -1192,15 +1014,6 @@ skills["SupportManaLeech"] = { } skills["SupportMultiTrap"] = { name = "Multiple Traps", - gemTags = { - dexterity = true, - support = true, - trap = true, - }, - gemTagString = "Support, Trap", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 37, }, @@ -1253,15 +1066,6 @@ skills["SupportMultiTrap"] = { } skills["SupportPhysicalProjectileAttackDamage"] = { name = "Physical Projectile Attack Damage", - gemTags = { - projectile = true, - dexterity = true, - support = true, - }, - gemTagString = "Projectile, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 48, 56, }, @@ -1313,15 +1117,6 @@ skills["SupportPhysicalProjectileAttackDamage"] = { } skills["SupportPierce"] = { name = "Pierce", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 3, 54, 56, }, @@ -1373,16 +1168,6 @@ skills["SupportPierce"] = { } skills["SupportPointBlank"] = { name = "Point Blank", - gemTags = { - projectile = true, - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Projectile, Attack, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 48, 56, }, @@ -1434,15 +1219,6 @@ skills["SupportPointBlank"] = { } skills["SupportPoison"] = { name = "Poison", - gemTags = { - chaos = true, - dexterity = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 10, 1, }, @@ -1494,15 +1270,6 @@ skills["SupportPoison"] = { } skills["SupportRapidDecay"] = { name = "Rapid Decay", - gemTags = { - dexterity = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 12, 55, }, @@ -1554,15 +1321,6 @@ skills["SupportRapidDecay"] = { } skills["SupportSlowerProjectiles"] = { name = "Slower Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 3, 14, 54, 56, }, @@ -1614,16 +1372,6 @@ skills["SupportSlowerProjectiles"] = { } skills["SupportTrap"] = { name = "Trap", - gemTags = { - dexterity = true, - support = true, - trap = true, - duration = true, - }, - gemTagString = "Support, Trap, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 17, }, @@ -1686,15 +1434,6 @@ skills["SupportTrap"] = { } skills["SupportTrapCooldown"] = { name = "Trap Cooldown", - gemTags = { - trap = true, - dexterity = true, - support = true, - }, - gemTagString = "Trap, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, support = true, requireSkillTypes = { 37, }, @@ -1745,16 +1484,6 @@ skills["SupportTrapCooldown"] = { } skills["SupportTrapAndMineDamage"] = { name = "Trap and Mine Damage", - gemTags = { - dexterity = true, - support = true, - trap = true, - mine = true, - }, - gemTagString = "Support, Trap, Mine", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 37, 41, }, @@ -1807,15 +1536,6 @@ skills["SupportTrapAndMineDamage"] = { } skills["SupportVoidManipulation"] = { name = "Void Manipulation", - gemTags = { - chaos = true, - dexterity = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, support = true, requireSkillTypes = { 10, 1, 40, }, diff --git a/Data/2_6/Skills/sup_int.lua b/Data/2_6/Skills/sup_int.lua index eeb23be1..59cde2f9 100644 --- a/Data/2_6/Skills/sup_int.lua +++ b/Data/2_6/Skills/sup_int.lua @@ -8,15 +8,6 @@ local skills, mod, flag, skill = ... skills["SupportAddedChaosDamage"] = { name = "Added Chaos Damage", - gemTags = { - chaos = true, - intelligence = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -68,15 +59,6 @@ skills["SupportAddedChaosDamage"] = { } skills["SupportAddedLightningDamage"] = { name = "Added Lightning Damage", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 1, 10, }, @@ -128,16 +110,6 @@ skills["SupportAddedLightningDamage"] = { } skills["SupportBlasphemy"] = { name = "Blasphemy", - gemTags = { - intelligence = true, - support = true, - curse = true, - aura = true, - }, - gemTagString = "Support, Curse, Aura", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 32, }, @@ -190,16 +162,6 @@ skills["SupportBlasphemy"] = { } skills["SupportCastOnStunned"] = { name = "Cast when Stunned", - gemTags = { - intelligence = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, support = true, requireSkillTypes = { 36, }, @@ -252,16 +214,6 @@ skills["SupportCastOnStunned"] = { } skills["SupportCastWhileChannelling"] = { name = "Cast while Channelling", - gemTags = { - intelligence = true, - support = true, - channelling = true, - spell = true, - }, - gemTagString = "Support, Channelling, Spell", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, support = true, requireSkillTypes = { 58, 36, }, @@ -314,15 +266,6 @@ skills["SupportCastWhileChannelling"] = { } skills["SupportChanceToIgnite"] = { name = "Chance to Ignite", - gemTags = { - fire = true, - intelligence = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -373,15 +316,6 @@ skills["SupportChanceToIgnite"] = { } skills["SupportConcentratedEffect"] = { name = "Concentrated Effect", - gemTags = { - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Support, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 11, 21, 53, }, @@ -433,15 +367,6 @@ skills["SupportConcentratedEffect"] = { } skills["SupportControlledDestruction"] = { name = "Controlled Destruction", - gemTags = { - spell = true, - intelligence = true, - support = true, - }, - gemTagString = "Spell, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, 59, }, @@ -493,16 +418,6 @@ skills["SupportControlledDestruction"] = { } skills["SupportCurseOnHit"] = { name = "Curse On Hit", - gemTags = { - curse = true, - trigger = true, - intelligence = true, - support = true, - }, - gemTagString = "Curse, Trigger, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 1, 10, 32, }, @@ -554,14 +469,6 @@ skills["SupportCurseOnHit"] = { } skills["SupportElementalFocus"] = { name = "Elemental Focus", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, 29, }, @@ -617,18 +524,6 @@ skills["SupportElementalFocus"] = { } skills["SupportElementalProliferation"] = { name = "Elemental Proliferation", - gemTags = { - cold = true, - fire = true, - lightning = true, - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Cold, Fire, Lightning, Support, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, 20, }, @@ -684,15 +579,6 @@ skills["SupportElementalProliferation"] = { } skills["SupportAdditionalXP"] = { name = "Enlighten", - gemTags = { - low_max_level = true, - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { }, @@ -723,15 +609,6 @@ skills["SupportAdditionalXP"] = { } skills["SupportFasterCast"] = { name = "Faster Casting", - gemTags = { - intelligence = true, - support = true, - spell = true, - }, - gemTagString = "Support, Spell", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 2, 39, }, @@ -782,15 +659,6 @@ skills["SupportFasterCast"] = { } skills["SupportIncreasedAreaOfEffect"] = { name = "Increased Area of Effect", - gemTags = { - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Support, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 11, 21, 53, }, @@ -841,14 +709,6 @@ skills["SupportIncreasedAreaOfEffect"] = { } skills["SupportIncreasedCriticalDamage"] = { name = "Increased Critical Damage", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -899,14 +759,6 @@ skills["SupportIncreasedCriticalDamage"] = { } skills["SupportIncreasedCriticalStrikes"] = { name = "Increased Critical Strikes", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -958,15 +810,6 @@ skills["SupportIncreasedCriticalStrikes"] = { } skills["SupportOnslaughtOnSlayingShockedEnemy"] = { name = "Innervate", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -1018,14 +861,6 @@ skills["SupportOnslaughtOnSlayingShockedEnemy"] = { } skills["SupportItemRarity"] = { name = "Item Rarity", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, 40, }, @@ -1075,15 +910,6 @@ skills["SupportItemRarity"] = { } skills["SupportLightningPenetration"] = { name = "Lightning Penetration", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -1134,15 +960,6 @@ skills["SupportLightningPenetration"] = { } skills["SupportMinefield"] = { name = "Minefield", - gemTags = { - intelligence = true, - support = true, - mine = true, - }, - gemTagString = "Support, Mine", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, support = true, requireSkillTypes = { 41, }, @@ -1195,15 +1012,6 @@ skills["SupportMinefield"] = { } skills["SupportMinionDamage"] = { name = "Minion Damage", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 9, }, @@ -1254,15 +1062,6 @@ skills["SupportMinionDamage"] = { } skills["SupportMinionLife"] = { name = "Minion Life", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 9, }, @@ -1313,16 +1112,6 @@ skills["SupportMinionLife"] = { } skills["SupportMinionSpeed"] = { name = "Minion Speed", - gemTags = { - movement = true, - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Movement, Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 9, }, @@ -1375,15 +1164,6 @@ skills["SupportMinionSpeed"] = { } skills["SupportSummonElementalResistances"] = { name = "Minion and Totem Elemental Resistance", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, support = true, requireSkillTypes = { 9, 30, }, @@ -1439,15 +1219,6 @@ skills["SupportSummonElementalResistances"] = { } skills["SupportPhysicalToLightning"] = { name = "Physical to Lightning", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -1500,14 +1271,6 @@ skills["SupportPhysicalToLightning"] = { } skills["SupportPowerChargeOnCrit"] = { name = "Power Charge On Critical", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 10, 1, }, @@ -1558,16 +1321,6 @@ skills["SupportPowerChargeOnCrit"] = { } skills["SupportRemoteMine"] = { name = "Remote Mine", - gemTags = { - intelligence = true, - support = true, - mine = true, - duration = true, - }, - gemTagString = "Support, Mine, Duration", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, support = true, requireSkillTypes = { 19, }, @@ -1628,15 +1381,6 @@ skills["SupportRemoteMine"] = { } skills["SupportMulticast"] = { name = "Spell Echo", - gemTags = { - spell = true, - intelligence = true, - support = true, - }, - gemTagString = "Spell, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, support = true, requireSkillTypes = { 26, }, diff --git a/Data/2_6/Skills/sup_str.lua b/Data/2_6/Skills/sup_str.lua index b2d5fcb5..7e56c3e8 100644 --- a/Data/2_6/Skills/sup_str.lua +++ b/Data/2_6/Skills/sup_str.lua @@ -8,15 +8,6 @@ local skills, mod, flag, skill = ... skills["SupportAddedFireDamage"] = { name = "Added Fire Damage", - gemTags = { - fire = true, - strength = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 1, }, @@ -67,14 +58,6 @@ skills["SupportAddedFireDamage"] = { } skills["SupportBloodMagic"] = { name = "Blood Magic", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { }, @@ -125,16 +108,6 @@ skills["SupportBloodMagic"] = { } skills["SupportBloodlust"] = { name = "Bloodlust", - gemTags = { - attack = true, - strength = true, - support = true, - melee = true, - }, - gemTagString = "Attack, Support, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 24, }, @@ -186,18 +159,6 @@ skills["SupportBloodlust"] = { } skills["SupportCastOnMeleeKill"] = { name = "Cast on Melee Kill", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Melee, Attack, Spell, Trigger", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 24, 36, }, @@ -251,16 +212,6 @@ skills["SupportCastOnMeleeKill"] = { } skills["SupportCastOnDamageTaken"] = { name = "Cast when Damage Taken", - gemTags = { - strength = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 36, }, @@ -316,16 +267,6 @@ skills["SupportCastOnDamageTaken"] = { } skills["SupportColdToFire"] = { name = "Cold to Fire", - gemTags = { - cold = true, - fire = true, - strength = true, - support = true, - }, - gemTagString = "Cold, Fire, Support", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 10, 1, }, @@ -378,15 +319,6 @@ skills["SupportColdToFire"] = { } skills["SupportAdditionalLevel"] = { name = "Empower", - gemTags = { - low_max_level = true, - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { }, @@ -418,16 +350,6 @@ skills["SupportAdditionalLevel"] = { } skills["EnduranceChargeOnMeleeStun"] = { name = "Endurance Charge on Melee Stun", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - }, - gemTagString = "Support, Melee, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 24, }, @@ -479,15 +401,6 @@ skills["EnduranceChargeOnMeleeStun"] = { } skills["SupportFirePenetration"] = { name = "Fire Penetration", - gemTags = { - fire = true, - strength = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 1, }, @@ -538,16 +451,6 @@ skills["SupportFirePenetration"] = { } skills["SupportFortify"] = { name = "Fortify", - gemTags = { - attack = true, - strength = true, - support = true, - melee = true, - }, - gemTagString = "Attack, Support, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 24, }, @@ -600,15 +503,6 @@ skills["SupportFortify"] = { } skills["SupportGenerosity"] = { name = "Generosity", - gemTags = { - strength = true, - support = true, - aura = true, - }, - gemTagString = "Support, Aura", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 44, }, @@ -659,15 +553,6 @@ skills["SupportGenerosity"] = { } skills["SupportIncreasedBurningDamage"] = { name = "Increased Burning Damage", - gemTags = { - fire = true, - strength = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 10, 1, 29, }, @@ -718,15 +603,6 @@ skills["SupportIncreasedBurningDamage"] = { } skills["SupportIncreasedDuration"] = { name = "Increased Duration", - gemTags = { - strength = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 12, 55, }, @@ -777,15 +653,6 @@ skills["SupportIncreasedDuration"] = { } skills["SupportIronGrip"] = { name = "Iron Grip", - gemTags = { - projectile = true, - strength = true, - support = true, - }, - gemTagString = "Projectile, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 48, 56, }, @@ -836,15 +703,6 @@ skills["SupportIronGrip"] = { } skills["SupportIronWill"] = { name = "Iron Will", - gemTags = { - spell = true, - strength = true, - support = true, - }, - gemTagString = "Spell, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 52, 59, }, @@ -895,14 +753,6 @@ skills["SupportIronWill"] = { } skills["SupportItemQuantity"] = { name = "Item Quantity", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 1, 40, }, @@ -952,14 +802,6 @@ skills["SupportItemQuantity"] = { } skills["SupportKnockback"] = { name = "Knockback", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 1, }, @@ -1010,15 +852,6 @@ skills["SupportKnockback"] = { } skills["SupportReducedDuration"] = { name = "Less Duration", - gemTags = { - strength = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 12, 55, }, @@ -1070,15 +903,6 @@ skills["SupportReducedDuration"] = { } skills["SupportLifeGainOnHit"] = { name = "Life Gain on Hit", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 1, 56, }, @@ -1129,14 +953,6 @@ skills["SupportLifeGainOnHit"] = { } skills["SupportLifeLeech"] = { name = "Life Leech", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 1, }, @@ -1188,16 +1004,6 @@ skills["SupportLifeLeech"] = { } skills["SupportMeleeDamageOnFullLife"] = { name = "Melee Damage on Full Life", - gemTags = { - melee = true, - strength = true, - support = true, - attack = true, - }, - gemTagString = "Melee, Support, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 24, }, @@ -1248,16 +1054,6 @@ skills["SupportMeleeDamageOnFullLife"] = { } skills["SupportMeleePhysicalDamage"] = { name = "Melee Physical Damage", - gemTags = { - melee = true, - strength = true, - support = true, - attack = true, - }, - gemTagString = "Melee, Support, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 24, }, @@ -1308,17 +1104,6 @@ skills["SupportMeleePhysicalDamage"] = { } skills["SupportMeleeSplash"] = { name = "Melee Splash", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - area = true, - }, - gemTagString = "Support, Melee, Attack, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 25, }, @@ -1372,16 +1157,6 @@ skills["SupportMeleeSplash"] = { } skills["SupportMultistrike"] = { name = "Multistrike", - gemTags = { - attack = true, - melee = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Melee, Support", - gemStr = 60, - gemDex = 40, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 28, }, @@ -1434,19 +1209,6 @@ skills["SupportMultistrike"] = { } skills["SupportRangedAttackTotem"] = { name = "Ranged Attack Totem", - gemTags = { - bow = true, - projectile = true, - strength = true, - support = true, - totem = true, - attack = true, - duration = true, - }, - gemTagString = "Bow, Projectile, Support, Totem, Attack, Duration", - gemStr = 60, - gemDex = 40, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 22, }, @@ -1507,14 +1269,6 @@ skills["SupportRangedAttackTotem"] = { } skills["SupportReducedMana"] = { name = "Reduced Mana", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { }, @@ -1564,16 +1318,6 @@ skills["SupportReducedMana"] = { } skills["SupportSpellTotem"] = { name = "Spell Totem", - gemTags = { - strength = true, - support = true, - totem = true, - duration = true, - }, - gemTagString = "Support, Totem, Duration", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 18, }, @@ -1633,14 +1377,6 @@ skills["SupportSpellTotem"] = { } skills["SupportStun"] = { name = "Stun", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, support = true, requireSkillTypes = { 10, 1, }, @@ -1690,15 +1426,6 @@ skills["SupportStun"] = { } skills["SupportWeaponElementalDamage"] = { name = "Weapon Elemental Damage", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, support = true, requireSkillTypes = { 1, 56, }, diff --git a/Data/3_0/Gems.lua b/Data/3_0/Gems.lua new file mode 100644 index 00000000..5521d479 --- /dev/null +++ b/Data/3_0/Gems.lua @@ -0,0 +1,4531 @@ +-- This file is automatically generated, do not edit! +-- Gem data (c) Grinding Gear Games + +return { + ["Metadata/Items/Gems/SkillGemFireball"] = { + name = "Fireball", + grantedEffectId = "Fireball", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Projectile, Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalFireball"] = { + name = "Vaal Fireball", + grantedEffectId = "VaalFireballSpiralNova", + secondaryGrantedEffectId = "Fireball", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Projectile, Vaal, Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemIceNova"] = { + name = "Ice Nova", + grantedEffectId = "IceNova", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalIceNova"] = { + name = "Vaal Ice Nova", + grantedEffectId = "VaalIceNova", + secondaryGrantedEffectId = "IceNova", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Vaal, Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemLeapSlam"] = { + name = "Leap Slam", + grantedEffectId = "LeapSlam", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + movement = true, + melee = true, + }, + tagString = "Attack, AoE, Movement, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemChargedDash"] = { + name = "Charged Dash", + grantedEffectId = "ChargedDash", + tags = { + dexterity = true, + active_skill = true, + movement = true, + area = true, + channelling = true, + attack = true, + lightning = true, + melee = true, + }, + tagString = "Movement, AoE, Channelling, Attack, Lightning, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemChargedAttack"] = { + name = "Blade Flurry", + grantedEffectId = "ChargedAttack", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + channelling = true, + melee = true, + }, + tagString = "Attack, AoE, Channelling, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSweep"] = { + name = "Sweep", + grantedEffectId = "Sweep", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemGroundSlam"] = { + name = "Ground Slam", + grantedEffectId = "GroundSlam", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalGroundSlam"] = { + name = "Vaal Ground Slam", + grantedEffectId = "VaalGroundSlam", + secondaryGrantedEffectId = "GroundSlam", + tags = { + strength = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Vaal, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemCleave"] = { + name = "Cleave", + grantedEffectId = "Cleave", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemShieldCharge"] = { + name = "Shield Charge", + grantedEffectId = "NewShieldCharge", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + movement = true, + melee = true, + }, + tagString = "Attack, AoE, Movement, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemEnduringCry"] = { + name = "Enduring Cry", + grantedEffectId = "EnduringCry", + tags = { + warcry = true, + strength = true, + active_skill = true, + area = true, + duration = true, + }, + tagString = "Warcry, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDoubleStrike"] = { + name = "Double Strike", + grantedEffectId = "DoubleStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalDoubleStrike"] = { + name = "Vaal Double Strike", + grantedEffectId = "VaalDoubleStrike", + secondaryGrantedEffectId = "DoubleStrike", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + melee = true, + duration = true, + }, + tagString = "Vaal, Attack, Melee, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemLacerate"] = { + name = "Lacerate", + grantedEffectId = "DoubleSlash", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemElementalHit"] = { + name = "Elemental Hit", + grantedEffectId = "ElementalHit", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + fire = true, + cold = true, + lightning = true, + area = true, + bow = true, + }, + tagString = "Attack, Melee, Fire, Cold, Lightning, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemImmortalCall"] = { + name = "Immortal Call", + grantedEffectId = "ImmortalCall", + tags = { + strength = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Spell, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalImmortalCall"] = { + name = "Vaal Immortal Call", + grantedEffectId = "VaalImmortalCall", + secondaryGrantedEffectId = "ImmortalCall", + tags = { + strength = true, + active_skill = true, + vaal = true, + spell = true, + duration = true, + }, + tagString = "Vaal, Spell, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDualStrike"] = { + name = "Dual Strike", + grantedEffectId = "DualStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemWhirlingBlades"] = { + name = "Whirling Blades", + grantedEffectId = "WhirlingBlades", + tags = { + dexterity = true, + active_skill = true, + attack = true, + movement = true, + melee = true, + }, + tagString = "Attack, Movement, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFrenzy"] = { + name = "Frenzy", + grantedEffectId = "Frenzy", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + bow = true, + }, + tagString = "Attack, Melee, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDetonateDead"] = { + name = "Detonate Dead", + grantedEffectId = "DetonateDead", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVaalDetonateDead"] = { + name = "Vaal Detonate Dead", + grantedEffectId = "VaalDetonateDead", + secondaryGrantedEffectId = "DetonateDead", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + area = true, + spell = true, + fire = true, + }, + tagString = "Vaal, AoE, Spell, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVolatileDead"] = { + name = "Volatile Dead", + grantedEffectId = "VolatileDead", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemBoneLance"] = { + name = "Unearth", + grantedEffectId = "BoneLance", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + spell = true, + }, + tagString = "Projectile, Spell", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSplitArrow"] = { + name = "Split Arrow", + grantedEffectId = "SplitArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAddedFireDamage"] = { + name = "Added Fire Damage", + grantedEffectId = "SupportAddedFireDamage", + tags = { + fire = true, + strength = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFasterAttack"] = { + name = "Faster Attacks", + grantedEffectId = "SupportFasterAttack", + tags = { + attack = true, + dexterity = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemGreaterMultipleProjectiles"] = { + name = "Greater Multiple Projectiles", + grantedEffectId = "SupportGreaterMultipleProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLesserMultipleProjectiles"] = { + name = "Lesser Multiple Projectiles", + grantedEffectId = "SupportLesserMultipleProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFasterProjectiles"] = { + name = "Faster Projectiles", + grantedEffectId = "SupportFasterProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAddedColdDamage"] = { + name = "Added Cold Damage", + grantedEffectId = "SupportAddedColdDamage", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAdditionalAccuracy"] = { + name = "Additional Accuracy", + grantedEffectId = "SupportAdditionalAccuracy", + tags = { + attack = true, + dexterity = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIncreasedAreaOfEffect"] = { + name = "Increased Area of Effect", + grantedEffectId = "SupportIncreasedAreaOfEffect", + tags = { + intelligence = true, + support = true, + area = true, + }, + tagString = "Support, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemAddedLightningDamage"] = { + name = "Added Lightning Damage", + grantedEffectId = "SupportAddedLightningDamage", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemColdSnap"] = { + name = "Cold Snap", + grantedEffectId = "ColdSnap", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + duration = true, + }, + tagString = "Spell, AoE, Cold, Duration", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVaalColdSnap"] = { + name = "Vaal Cold Snap", + grantedEffectId = "VaalColdSnap", + secondaryGrantedEffectId = "ColdSnap", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemRaiseZombie"] = { + name = "Raise Zombie", + grantedEffectId = "RaiseZombie", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + }, + tagString = "Spell, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPoisonArrow"] = { + name = "Caustic Arrow", + grantedEffectId = "PoisonArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + duration = true, + chaos = true, + bow = true, + }, + tagString = "Attack, AoE, Duration, Chaos, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBloodRage"] = { + name = "Blood Rage", + grantedEffectId = "BloodRage", + tags = { + dexterity = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Spell, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemRighteousFire"] = { + name = "Righteous Fire", + grantedEffectId = "RighteousFire", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVaalRighteousFire"] = { + name = "Vaal Righteous Fire", + grantedEffectId = "VaalRighteousFire", + secondaryGrantedEffectId = "RighteousFire", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + fire = true, + duration = true, + }, + tagString = "Vaal, Spell, AoE, Fire, Duration", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemDischarge"] = { + name = "Discharge", + grantedEffectId = "Discharge", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + cold = true, + lightning = true, + }, + tagString = "Spell, AoE, Fire, Cold, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPortal"] = { + name = "Portal", + grantedEffectId = "Portal", + tags = { + low_max_level = true, + active_skill = true, + spell = true, + }, + tagString = "Spell", + reqStr = 33, + reqDex = 33, + reqInt = 34, + }, + ["Metadata/Items/Gems/SkillGemVaalPortal"] = { + name = "Vaal Breach", + grantedEffectId = "VaalBreach", + secondaryGrantedEffectId = "Portal", + tags = { + low_max_level = true, + active_skill = true, + vaal = true, + spell = true, + }, + tagString = "Vaal, Spell", + reqStr = 33, + reqDex = 33, + reqInt = 34, + }, + ["Metadata/Items/Gems/SupportGemReducedMana"] = { + name = "Reduced Mana", + grantedEffectId = "SupportReducedMana", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIncreasedCriticalStrikes"] = { + name = "Increased Critical Strikes", + grantedEffectId = "SupportIncreasedCriticalStrikes", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemIncreasedCriticalDamage"] = { + name = "Increased Critical Damage", + grantedEffectId = "SupportIncreasedCriticalDamage", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemKnockback"] = { + name = "Knockback", + grantedEffectId = "SupportKnockback", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLifeLeech"] = { + name = "Life Leech", + grantedEffectId = "SupportLifeLeech", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemManaLeech"] = { + name = "Mana Leech", + grantedEffectId = "SupportManaLeech", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemAddedChaosDamage"] = { + name = "Added Chaos Damage", + grantedEffectId = "SupportAddedChaosDamage", + tags = { + chaos = true, + intelligence = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFlickerStrike"] = { + name = "Flicker Strike", + grantedEffectId = "FlickerStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + melee = true, + movement = true, + }, + tagString = "Attack, Melee, Movement", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSpark"] = { + name = "Spark", + grantedEffectId = "Spark", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalSpark"] = { + name = "Vaal Spark", + grantedEffectId = "VaalSparkSpiralNova", + secondaryGrantedEffectId = "Spark", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Vaal, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemStun"] = { + name = "Stun", + grantedEffectId = "SupportStun", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemIceSpear"] = { + name = "Ice Spear", + grantedEffectId = "IceSpear", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + cold = true, + }, + tagString = "Projectile, Spell, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemPierce"] = { + name = "Pierce", + grantedEffectId = "SupportPierce", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemTrap"] = { + name = "Trap", + grantedEffectId = "SupportTrap", + tags = { + dexterity = true, + support = true, + trap = true, + }, + tagString = "Support, Trap", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemRaiseSpectre"] = { + name = "Raise Spectre", + grantedEffectId = "RaiseSpectre", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + }, + tagString = "Spell, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemInfernalBlow"] = { + name = "Infernal Blow", + grantedEffectId = "InfernalBlow", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + fire = true, + duration = true, + }, + tagString = "Attack, AoE, Melee, Fire, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemGlacialHammer"] = { + name = "Glacial Hammer", + grantedEffectId = "GlacialHammer", + tags = { + strength = true, + active_skill = true, + attack = true, + melee = true, + cold = true, + }, + tagString = "Attack, Melee, Cold", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalGlacialHammer"] = { + name = "Vaal Glacial Hammer", + grantedEffectId = "VaalGlacialHammer", + secondaryGrantedEffectId = "GlacialHammer", + tags = { + strength = true, + active_skill = true, + vaal = true, + attack = true, + melee = true, + duration = true, + area = true, + cold = true, + }, + tagString = "Vaal, Attack, Melee, Duration, AoE, Cold", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostWall"] = { + name = "Frost Wall", + grantedEffectId = "FrostWall", + tags = { + intelligence = true, + active_skill = true, + spell = true, + duration = true, + cold = true, + }, + tagString = "Spell, Duration, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFreezingPulse"] = { + name = "Freezing Pulse", + grantedEffectId = "FreezingPulse", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + cold = true, + }, + tagString = "Projectile, Spell, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemShockNova"] = { + name = "Shock Nova", + grantedEffectId = "ShockNova", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemViperStrike"] = { + name = "Viper Strike", + grantedEffectId = "ViperStrike", + tags = { + dexterity = true, + active_skill = true, + attack = true, + duration = true, + melee = true, + chaos = true, + }, + tagString = "Attack, Duration, Melee, Chaos", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemNewPhaseRun"] = { + name = "Phase Run", + grantedEffectId = "NewPhaseRun", + tags = { + dexterity = true, + active_skill = true, + spell = true, + duration = true, + movement = true, + }, + tagString = "Spell, Duration, Movement", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMeleePhysicalDamage"] = { + name = "Melee Physical Damage", + grantedEffectId = "SupportMeleePhysicalDamage", + tags = { + melee = true, + strength = true, + support = true, + attack = true, + }, + tagString = "Melee, Support, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemItemQuantity"] = { + name = "Item Quantity", + grantedEffectId = "SupportItemQuantity", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemItemRarity"] = { + name = "Item Rarity", + grantedEffectId = "SupportItemRarity", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemFasterCast"] = { + name = "Faster Casting", + grantedEffectId = "SupportFasterCast", + tags = { + intelligence = true, + support = true, + spell = true, + }, + tagString = "Support, Spell", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemExplosiveArrow"] = { + name = "Explosive Arrow", + grantedEffectId = "ExplosiveArrow", + tags = { + fire = true, + dexterity = true, + active_skill = true, + attack = true, + area = true, + duration = true, + bow = true, + }, + tagString = "Fire, Attack, AoE, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemTemporalChains"] = { + name = "Temporal Chains", + grantedEffectId = "TemporalChains", + tags = { + curse = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemElementalWeakness"] = { + name = "Elemental Weakness", + grantedEffectId = "ElementalWeakness", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemWarlordsMark"] = { + name = "Warlord's Mark", + grantedEffectId = "WarlordsMark", + tags = { + curse = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemPunishment"] = { + name = "Punishment", + grantedEffectId = "Punishment", + tags = { + curse = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemEnfeeble"] = { + name = "Enfeeble", + grantedEffectId = "Enfeeble", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemCriticalWeakness"] = { + name = "Assassin's Mark", + grantedEffectId = "AssassinsMark", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemProjectileWeakness"] = { + name = "Projectile Weakness", + grantedEffectId = "ProjectileWeakness", + tags = { + curse = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVulnerability"] = { + name = "Despair", + grantedEffectId = "Despair", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Curse, Spell, AoE, Duration, Chaos", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemLightningWarp"] = { + name = "Lightning Warp", + grantedEffectId = "LightningWarp", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + movement = true, + lightning = true, + }, + tagString = "Spell, AoE, Duration, Movement, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalLightningWarp"] = { + name = "Vaal Lightning Warp", + grantedEffectId = "VaalLightningWarpInstant", + secondaryGrantedEffectId = "LightningWarp", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + lightning = true, + movement = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Lightning, Movement", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSummonSkeletons"] = { + name = "Summon Skeleton", + grantedEffectId = "SummonSkeletons", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + duration = true, + }, + tagString = "Spell, Minion, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalSummonSkeletons"] = { + name = "Vaal Summon Skeletons", + grantedEffectId = "VaalSummonSkeletons", + secondaryGrantedEffectId = "SummonSkeletons", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + minion = true, + duration = true, + }, + tagString = "Vaal, Spell, Minion, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemHeavyStrike"] = { + name = "Heavy Strike", + grantedEffectId = "HeavyStrike", + tags = { + strength = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDominatingBlow"] = { + name = "Dominating Blow", + grantedEffectId = "DominatingBlow", + tags = { + strength = true, + active_skill = true, + attack = true, + minion = true, + duration = true, + melee = true, + }, + tagString = "Attack, Minion, Duration, Melee", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemRainOfArrows"] = { + name = "Rain of Arrows", + grantedEffectId = "RainOfArrows", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalRainOfArrows"] = { + name = "Vaal Rain of Arrows", + grantedEffectId = "VaalRainOfArrows", + secondaryGrantedEffectId = "RainOfArrows", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Vaal, Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemConcentratedEffect"] = { + name = "Concentrated Effect", + grantedEffectId = "SupportConcentratedEffect", + tags = { + intelligence = true, + support = true, + area = true, + }, + tagString = "Support, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinionDamage"] = { + name = "Minion Damage", + grantedEffectId = "SupportMinionDamage", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemIncreasedDuration"] = { + name = "Increased Duration", + grantedEffectId = "SupportIncreasedDuration", + tags = { + strength = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemColdToFire"] = { + name = "Cold to Fire", + grantedEffectId = "SupportColdToFire", + tags = { + cold = true, + fire = true, + strength = true, + support = true, + }, + tagString = "Cold, Fire, Support", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemChanceToIgnite"] = { + name = "Combustion", + grantedEffectId = "SupportChanceToIgnite", + tags = { + fire = true, + intelligence = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinionSpeed"] = { + name = "Minion Speed", + grantedEffectId = "SupportMinionSpeed", + tags = { + movement = true, + intelligence = true, + support = true, + minion = true, + }, + tagString = "Movement, Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinionLife"] = { + name = "Minion Life", + grantedEffectId = "SupportMinionLife", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemWeaponElementalDamage"] = { + name = "Elemental Damage with Attacks", + grantedEffectId = "SupportWeaponElementalDamage", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemBloodlust"] = { + name = "Bloodlust", + grantedEffectId = "SupportBloodlust", + tags = { + attack = true, + strength = true, + support = true, + melee = true, + }, + tagString = "Attack, Support, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLifeGainOnHit"] = { + name = "Life Gain on Hit", + grantedEffectId = "SupportLifeGainOnHit", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFirestorm"] = { + name = "Firestorm", + grantedEffectId = "Firestorm", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Spell, AoE, Duration, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemLightningStrike"] = { + name = "Lightning Strike", + grantedEffectId = "LightningStrike", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + lightning = true, + }, + tagString = "Projectile, Attack, Melee, Lightning", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVaalLightningStrike"] = { + name = "Vaal Lightning Strike", + grantedEffectId = "VaalLightningStrike", + secondaryGrantedEffectId = "LightningStrike", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + melee = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Vaal, Attack, Melee, Duration, Lightning", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemTempestShield"] = { + name = "Tempest Shield", + grantedEffectId = "TempestShield", + tags = { + intelligence = true, + active_skill = true, + spell = true, + lightning = true, + chaining = true, + duration = true, + }, + tagString = "Spell, Lightning, Chaining, Duration", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemMoltenShell"] = { + name = "Molten Shell", + grantedEffectId = "MoltenShell", + tags = { + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Spell, AoE, Duration, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalMoltenShell"] = { + name = "Vaal Molten Shell", + grantedEffectId = "VaalMoltenShell", + secondaryGrantedEffectId = "MoltenShell", + tags = { + strength = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemPowerSiphon"] = { + name = "Power Siphon", + grantedEffectId = "PowerSiphon", + tags = { + intelligence = true, + active_skill = true, + attack = true, + projectile = true, + }, + tagString = "Attack, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalPowerSiphon"] = { + name = "Vaal Power Siphon", + grantedEffectId = "VaalPowerSiphon", + secondaryGrantedEffectId = "PowerSiphon", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + attack = true, + projectile = true, + }, + tagString = "Vaal, Attack, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPuncture"] = { + name = "Puncture", + grantedEffectId = "Puncture", + tags = { + dexterity = true, + active_skill = true, + attack = true, + duration = true, + melee = true, + bow = true, + }, + tagString = "Attack, Duration, Melee, Bow", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemLightningArrow"] = { + name = "Lightning Arrow", + grantedEffectId = "LightningArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + lightning = true, + bow = true, + }, + tagString = "Attack, AoE, Lightning, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemHaste"] = { + name = "Haste", + grantedEffectId = "Haste", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalHaste"] = { + name = "Vaal Haste", + grantedEffectId = "VaalHaste", + secondaryGrantedEffectId = "Haste", + tags = { + aura = true, + dexterity = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemPurity"] = { + name = "Purity of Elements", + grantedEffectId = "Purity", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVitality"] = { + name = "Vitality", + grantedEffectId = "Vitality", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDiscipline"] = { + name = "Discipline", + grantedEffectId = "Discipline", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalDiscipline"] = { + name = "Vaal Discipline", + grantedEffectId = "VaalDiscipline", + secondaryGrantedEffectId = "Discipline", + tags = { + aura = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemGrace"] = { + name = "Grace", + grantedEffectId = "Grace", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalGrace"] = { + name = "Vaal Grace", + grantedEffectId = "VaalGrace", + secondaryGrantedEffectId = "Grace", + tags = { + aura = true, + dexterity = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDetermination"] = { + name = "Determination", + grantedEffectId = "Determination", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAnger"] = { + name = "Anger", + grantedEffectId = "Anger", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Aura, Spell, AoE, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHatred"] = { + name = "Hatred", + grantedEffectId = "Hatred", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Aura, Spell, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemWrath"] = { + name = "Wrath", + grantedEffectId = "Wrath", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Aura, Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBurningArrow"] = { + name = "Burning Arrow", + grantedEffectId = "BurningArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + fire = true, + bow = true, + }, + tagString = "Attack, Fire, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalBurningArrow"] = { + name = "Vaal Burning Arrow", + grantedEffectId = "VaalBurningArrow", + secondaryGrantedEffectId = "BurningArrow", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + fire = true, + bow = true, + }, + tagString = "Vaal, Attack, AoE, Fire, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemElementalProliferation"] = { + name = "Elemental Proliferation", + grantedEffectId = "SupportElementalProliferation", + tags = { + cold = true, + fire = true, + lightning = true, + intelligence = true, + support = true, + area = true, + }, + tagString = "Cold, Fire, Lightning, Support, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemBloodMagic"] = { + name = "Blood Magic", + grantedEffectId = "SupportBloodMagic", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemClarity"] = { + name = "Clarity", + grantedEffectId = "Clarity", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Aura, Spell, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalClarity"] = { + name = "Vaal Clarity", + grantedEffectId = "VaalClarity", + secondaryGrantedEffectId = "Clarity", + tags = { + aura = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Aura, Vaal, Spell, AoE, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemCullingStrike"] = { + name = "Culling Strike", + grantedEffectId = "SupportCullingStrike", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemPointBlank"] = { + name = "Point Blank", + grantedEffectId = "SupportPointBlank", + tags = { + projectile = true, + attack = true, + dexterity = true, + support = true, + }, + tagString = "Projectile, Attack, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIronGrip"] = { + name = "Iron Grip", + grantedEffectId = "SupportIronGrip", + tags = { + projectile = true, + strength = true, + support = true, + }, + tagString = "Projectile, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemIronWill"] = { + name = "Iron Will", + grantedEffectId = "SupportIronWill", + tags = { + spell = true, + strength = true, + support = true, + }, + tagString = "Spell, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMeleeDamageOnFullLife"] = { + name = "Damage on Full Life", + grantedEffectId = "SupportMeleeDamageOnFullLife", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemSpellTotem"] = { + name = "Spell Totem", + grantedEffectId = "SupportSpellTotem", + tags = { + strength = true, + support = true, + totem = true, + }, + tagString = "Support, Totem", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemRemoteMine"] = { + name = "Remote Mine", + grantedEffectId = "SupportRemoteMine", + tags = { + intelligence = true, + support = true, + mine = true, + }, + tagString = "Support, Mine", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemDetonateMines"] = { + name = "Detonate Mines", + grantedEffectId = "GemDetonateMines", + tags = { + low_max_level = true, + active_skill = true, + spell = true, + }, + tagString = "Spell", + reqStr = 33, + reqDex = 33, + reqInt = 34, + }, + ["Metadata/Items/Gems/SkillGemShockwaveTotem"] = { + name = "Shockwave Totem", + grantedEffectId = "ShockwaveTotem", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Totem, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemRejuvenationTotem"] = { + name = "Rejuvenation Totem", + grantedEffectId = "RejuvenationTotem", + tags = { + totem = true, + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Totem, Aura, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFreezeMine"] = { + name = "Freeze Mine", + grantedEffectId = "FreezeMine", + tags = { + mine = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Mine, Spell, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemConversionTrap"] = { + name = "Conversion Trap", + grantedEffectId = "ConversionTrap", + tags = { + trap = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Trap, Spell, Duration", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemBearTrap"] = { + name = "Bear Trap", + grantedEffectId = "BearTrap", + tags = { + trap = true, + dexterity = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Trap, Spell, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemChanceToFlee"] = { + name = "Chance to Flee", + grantedEffectId = "SupportChanceToFlee", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFireTrap"] = { + name = "Fire Trap", + grantedEffectId = "FireTrap", + tags = { + trap = true, + dexterity = true, + active_skill = true, + spell = true, + duration = true, + area = true, + fire = true, + }, + tagString = "Trap, Spell, Duration, AoE, Fire", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemDecoyTotem"] = { + name = "Decoy Totem", + grantedEffectId = "DecoyTotem", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Totem, Spell, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDevouringTotem"] = { + name = "Devouring Totem", + grantedEffectId = "DevouringTotem", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + }, + tagString = "Totem, Spell", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemEtherealKnives"] = { + name = "Ethereal Knives", + grantedEffectId = "EtherealKnives", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + spell = true, + }, + tagString = "Projectile, Spell", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemBlind"] = { + name = "Blind", + grantedEffectId = "SupportBlind", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemIceShot"] = { + name = "Ice Shot", + grantedEffectId = "IceShot", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + duration = true, + cold = true, + bow = true, + }, + tagString = "Attack, AoE, Duration, Cold, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemArcticBreath"] = { + name = "Arctic Breath", + grantedEffectId = "ArcticBreath", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + area = true, + cold = true, + }, + tagString = "Projectile, Spell, Duration, AoE, Cold", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemArc"] = { + name = "Arc", + grantedEffectId = "Arc", + tags = { + intelligence = true, + active_skill = true, + spell = true, + chaining = true, + lightning = true, + }, + tagString = "Spell, Chaining, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalArc"] = { + name = "Vaal Arc", + grantedEffectId = "VaalArcChain", + secondaryGrantedEffectId = "Arc", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + chaining = true, + lightning = true, + duration = true, + }, + tagString = "Vaal, Spell, Chaining, Lightning, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemNewArcticArmour"] = { + name = "Arctic Armour", + grantedEffectId = "ArcticArmour", + tags = { + dexterity = true, + active_skill = true, + spell = true, + duration = true, + cold = true, + }, + tagString = "Spell, Duration, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFlameTotem"] = { + name = "Flame Totem", + grantedEffectId = "FlameTotem", + tags = { + projectile = true, + totem = true, + strength = true, + active_skill = true, + spell = true, + fire = true, + }, + tagString = "Projectile, Totem, Spell, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemRangedAttackTotem"] = { + name = "Ranged Attack Totem", + grantedEffectId = "SupportRangedAttackTotem", + tags = { + bow = true, + projectile = true, + strength = true, + support = true, + totem = true, + attack = true, + }, + tagString = "Bow, Projectile, Support, Totem, Attack", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFirePenetration"] = { + name = "Fire Penetration", + grantedEffectId = "SupportFirePenetration", + tags = { + fire = true, + strength = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemColdPenetration"] = { + name = "Cold Penetration", + grantedEffectId = "SupportColdPenetration", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLightningPenetration"] = { + name = "Lightning Penetration", + grantedEffectId = "SupportLightningPenetration", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemChain"] = { + name = "Chain", + grantedEffectId = "SupportChain", + tags = { + dexterity = true, + support = true, + chaining = true, + projectile = true, + }, + tagString = "Support, Chaining, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFork"] = { + name = "Fork", + grantedEffectId = "SupportFork", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFlammability"] = { + name = "Flammability", + grantedEffectId = "Flammability", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + fire = true, + }, + tagString = "Curse, Spell, AoE, Duration, Fire", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemFrostbite"] = { + name = "Frostbite", + grantedEffectId = "Frostbite", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Curse, Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemConductivity"] = { + name = "Conductivity", + grantedEffectId = "Conductivity", + tags = { + curse = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Curse, Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemStormBurst"] = { + name = "Storm Burst", + grantedEffectId = "StormBurst", + tags = { + projectile = true, + area = true, + intelligence = true, + active_skill = true, + spell = true, + lightning = true, + channelling = true, + }, + tagString = "Projectile, AoE, Spell, Lightning, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemCyclone"] = { + name = "Cyclone", + grantedEffectId = "Cyclone", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + movement = true, + melee = true, + }, + tagString = "Attack, AoE, Movement, Melee", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalCyclone"] = { + name = "Vaal Cyclone", + grantedEffectId = "VaalCyclone", + secondaryGrantedEffectId = "Cyclone", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + duration = true, + melee = true, + movement = true, + }, + tagString = "Vaal, Attack, AoE, Duration, Melee, Movement", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMultistrike"] = { + name = "Multistrike", + grantedEffectId = "SupportMultistrike", + tags = { + attack = true, + melee = true, + strength = true, + support = true, + }, + tagString = "Attack, Melee, Support", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMulticast"] = { + name = "Spell Echo", + grantedEffectId = "SupportMulticast", + tags = { + spell = true, + intelligence = true, + support = true, + }, + tagString = "Spell, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMeleeSplash"] = { + name = "Melee Splash", + grantedEffectId = "SupportMeleeSplash", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + area = true, + }, + tagString = "Support, Melee, Attack, AoE", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemPowerChargeOnCrit"] = { + name = "Power Charge On Critical", + grantedEffectId = "SupportPowerChargeOnCrit", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSearingBond"] = { + name = "Searing Bond", + grantedEffectId = "SearingBond", + tags = { + totem = true, + strength = true, + active_skill = true, + spell = true, + fire = true, + }, + tagString = "Totem, Spell, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemIncreasedBurningDamage"] = { + name = "Burning Damage", + grantedEffectId = "SupportIncreasedBurningDamage", + tags = { + fire = true, + strength = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemSummonElementalResistance"] = { + name = "Minion and Totem Elemental Resistance", + grantedEffectId = "SupportSummonElementalResistances", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemCurseOnHit"] = { + name = "Curse On Hit", + grantedEffectId = "SupportCurseOnHit", + tags = { + curse = true, + trigger = true, + intelligence = true, + support = true, + }, + tagString = "Curse, Trigger, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemReave"] = { + name = "Reave", + grantedEffectId = "Reave", + tags = { + dexterity = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemVaalReave"] = { + name = "Vaal Reave", + grantedEffectId = "VaalReave", + secondaryGrantedEffectId = "Reave", + tags = { + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Vaal, Attack, AoE, Melee", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnCrit"] = { + name = "Cast On Critical Strike", + grantedEffectId = "SupportCastOnCrit", + tags = { + dexterity = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnKill"] = { + name = "Cast on Melee Kill", + grantedEffectId = "SupportCastOnMeleeKill", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + spell = true, + trigger = true, + }, + tagString = "Support, Melee, Attack, Spell, Trigger", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemMultiTrap"] = { + name = "Multiple Traps", + grantedEffectId = "SupportMultiTrap", + tags = { + dexterity = true, + support = true, + trap = true, + }, + tagString = "Support, Trap", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemAdditionalLevel"] = { + name = "Empower", + grantedEffectId = "SupportAdditionalLevel", + tags = { + low_max_level = true, + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemLightningTrap"] = { + name = "Lightning Trap", + grantedEffectId = "LightningTrap", + tags = { + projectile = true, + trap = true, + intelligence = true, + active_skill = true, + spell = true, + lightning = true, + }, + tagString = "Projectile, Trap, Spell, Lightning", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVaalLightningTrap"] = { + name = "Vaal Lightning Trap", + grantedEffectId = "VaalLightningTrap", + secondaryGrantedEffectId = "LightningTrap", + tags = { + projectile = true, + trap = true, + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + duration = true, + lightning = true, + }, + tagString = "Projectile, Trap, Vaal, Spell, Duration, Lightning", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemSmokeMine"] = { + name = "Smoke Mine", + grantedEffectId = "SmokeMine", + tags = { + mine = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + movement = true, + }, + tagString = "Mine, Spell, AoE, Duration, Movement", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemEnduranceChargeOnMeleeStun"] = { + name = "Endurance Charge on Melee Stun", + grantedEffectId = "EnduranceChargeOnMeleeStun", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + }, + tagString = "Support, Melee, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAnimateArmour"] = { + name = "Animate Guardian", + grantedEffectId = "AnimateArmour", + tags = { + strength = true, + active_skill = true, + spell = true, + minion = true, + }, + tagString = "Spell, Minion", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemThrownShieldProjectile"] = { + name = "Spectral Shield Throw", + grantedEffectId = "ThrownShield", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + }, + tagString = "Projectile, Attack", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemThrownWeapon"] = { + name = "Spectral Throw", + grantedEffectId = "ThrownWeapon", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + }, + tagString = "Projectile, Attack", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemVaalThrownWeapon"] = { + name = "Vaal Spectral Throw", + grantedEffectId = "VaalThrownWeapon", + secondaryGrantedEffectId = "ThrownWeapon", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + vaal = true, + attack = true, + }, + tagString = "Projectile, Vaal, Attack", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemSlowerProjectiles"] = { + name = "Slower Projectiles", + grantedEffectId = "SupportSlowerProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemReducedDuration"] = { + name = "Less Duration", + grantedEffectId = "SupportReducedDuration", + tags = { + strength = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemCastOnDeath"] = { + name = "Cast on Death", + grantedEffectId = "SupportCastOnDeath", + tags = { + dexterity = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnDamageTaken"] = { + name = "Cast when Damage Taken", + grantedEffectId = "SupportCastOnDamageTaken", + tags = { + strength = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemCastOnStunned"] = { + name = "Cast when Stunned", + grantedEffectId = "SupportCastOnStunned", + tags = { + intelligence = true, + support = true, + spell = true, + trigger = true, + }, + tagString = "Support, Spell, Trigger", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemAnimateWeapon"] = { + name = "Animate Weapon", + grantedEffectId = "AnimateWeapon", + tags = { + dexterity = true, + active_skill = true, + duration = true, + minion = true, + spell = true, + }, + tagString = "Duration, Minion, Spell", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemAdditionalQuality"] = { + name = "Enhance", + grantedEffectId = "SupportAdditionalQuality", + tags = { + low_max_level = true, + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFireResistAura"] = { + name = "Purity of Fire", + grantedEffectId = "FireResistAura", + tags = { + aura = true, + strength = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Aura, Spell, AoE, Fire", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemColdResistAura"] = { + name = "Purity of Ice", + grantedEffectId = "ColdResistAura", + tags = { + aura = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Aura, Spell, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemLightningResistAura"] = { + name = "Purity of Lightning", + grantedEffectId = "LightningResistAura", + tags = { + aura = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Aura, Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemStormCall"] = { + name = "Storm Call", + grantedEffectId = "StormCall", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalStormCall"] = { + name = "Vaal Storm Call", + grantedEffectId = "VaalStormCall", + secondaryGrantedEffectId = "StormCall", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Vaal, Spell, AoE, Duration, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFlameblast"] = { + name = "Flameblast", + grantedEffectId = "Flameblast", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + channelling = true, + }, + tagString = "Spell, AoE, Fire, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVaalFlameblast"] = { + name = "Vaal Flameblast", + grantedEffectId = "VaalFlameblast", + secondaryGrantedEffectId = "Flameblast", + tags = { + intelligence = true, + active_skill = true, + vaal = true, + spell = true, + area = true, + fire = true, + channelling = true, + }, + tagString = "Vaal, Spell, AoE, Fire, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBarrage"] = { + name = "Barrage", + grantedEffectId = "Barrage", + tags = { + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBallLightning"] = { + name = "Ball Lightning", + grantedEffectId = "BallLightning", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + }, + tagString = "Projectile, Spell, AoE, Lightning", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemPhysicalProjectileAttackDamage"] = { + name = "Physical Projectile Attack Damage", + grantedEffectId = "SupportPhysicalProjectileAttackDamage", + tags = { + projectile = true, + attack = true, + dexterity = true, + support = true, + }, + tagString = "Projectile, Attack, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSummonRagingSpirit"] = { + name = "Summon Raging Spirit", + grantedEffectId = "SummonRagingSpirit", + tags = { + intelligence = true, + active_skill = true, + spell = true, + minion = true, + duration = true, + fire = true, + }, + tagString = "Spell, Minion, Duration, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFlameWhip"] = { + name = "Flame Surge", + grantedEffectId = "FlameWhip", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Spell, AoE, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemAdditionalXP"] = { + name = "Enlighten", + grantedEffectId = "SupportAdditionalXP", + tags = { + low_max_level = true, + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemDesecrate"] = { + name = "Desecrate", + grantedEffectId = "Desecrate", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Spell, AoE, Duration, Chaos", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemFleshOffering"] = { + name = "Flesh Offering", + grantedEffectId = "FleshOffering", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBoneOffering"] = { + name = "Bone Offering", + grantedEffectId = "BoneOffering", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSpiritOffering"] = { + name = "Spirit Offering", + grantedEffectId = "SpiritOffering", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemGlacialCascade"] = { + name = "Glacial Cascade", + grantedEffectId = "GlacialCascade", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Spell, AoE, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemBlockChanceReduction"] = { + name = "Block Chance Reduction", + grantedEffectId = "SupportBlockReduction", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemMoltenStrike"] = { + name = "Molten Strike", + grantedEffectId = "MoltenStrike", + tags = { + projectile = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + fire = true, + }, + tagString = "Projectile, Attack, AoE, Melee, Fire", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemConvocation"] = { + name = "Convocation", + grantedEffectId = "Convocation", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + }, + tagString = "Minion, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFireNovaMine"] = { + name = "Fire Nova Mine", + grantedEffectId = "FireNovaMine", + tags = { + area = true, + mine = true, + intelligence = true, + active_skill = true, + spell = true, + fire = true, + }, + tagString = "AoE, Mine, Spell, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemTornadoShot"] = { + name = "Tornado Shot", + grantedEffectId = "TornadoShot", + tags = { + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemGenerosity"] = { + name = "Generosity", + grantedEffectId = "SupportGenerosity", + tags = { + strength = true, + support = true, + aura = true, + }, + tagString = "Support, Aura", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHeraldOfAsh"] = { + name = "Herald of Ash", + grantedEffectId = "HeraldOfAsh", + tags = { + strength = true, + active_skill = true, + spell = true, + area = true, + fire = true, + herald = true, + duration = true, + }, + tagString = "Spell, AoE, Fire, Herald, Duration", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHeraldOfIce"] = { + name = "Herald of Ice", + grantedEffectId = "HeraldOfIce", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + herald = true, + }, + tagString = "Spell, AoE, Cold, Herald", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemHeraldOfThunder"] = { + name = "Herald of Thunder", + grantedEffectId = "HeraldOfThunder", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + lightning = true, + herald = true, + }, + tagString = "Spell, AoE, Duration, Lightning, Herald", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemPoachersMark"] = { + name = "Poacher's Mark", + grantedEffectId = "PoachersMark", + tags = { + curse = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemLightningTendrils"] = { + name = "Lightning Tendrils", + grantedEffectId = "LightningTendrilsChannelled", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + lightning = true, + channelling = true, + }, + tagString = "Spell, AoE, Lightning, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemKineticBlast"] = { + name = "Kinetic Blast", + grantedEffectId = "ClusterBurst", + tags = { + intelligence = true, + active_skill = true, + attack = true, + area = true, + projectile = true, + }, + tagString = "Attack, AoE, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBlinkArrow"] = { + name = "Blink Arrow", + grantedEffectId = "BlinkArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + minion = true, + duration = true, + movement = true, + bow = true, + }, + tagString = "Attack, Minion, Duration, Movement, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemMirrorArrow"] = { + name = "Mirror Arrow", + grantedEffectId = "MirrorArrow", + tags = { + dexterity = true, + active_skill = true, + attack = true, + minion = true, + duration = true, + bow = true, + }, + tagString = "Attack, Minion, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemRiposte"] = { + name = "Riposte", + grantedEffectId = "Riposte", + tags = { + trigger = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Trigger, Attack, Melee", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemReckoning"] = { + name = "Reckoning", + grantedEffectId = "Reckoning", + tags = { + trigger = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Trigger, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemStaticStrike"] = { + name = "Static Strike", + grantedEffectId = "StaticStrike", + tags = { + strength = true, + active_skill = true, + attack = true, + melee = true, + area = true, + duration = true, + lightning = true, + }, + tagString = "Attack, Melee, AoE, Duration, Lightning", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemPhysicalToLightning"] = { + name = "Physical to Lightning", + grantedEffectId = "SupportPhysicalToLightning", + tags = { + lightning = true, + intelligence = true, + support = true, + }, + tagString = "Lightning, Support", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemVengeance"] = { + name = "Vengeance", + grantedEffectId = "Vengeance", + tags = { + trigger = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Trigger, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSummonChaosGolem"] = { + name = "Summon Chaos Golem", + grantedEffectId = "SummonChaosGolem", + tags = { + intelligence = true, + active_skill = true, + chaos = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Chaos, Minion, Spell, Golem", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSummonIceGolem"] = { + name = "Summon Ice Golem", + grantedEffectId = "SummonIceGolem", + tags = { + dexterity = true, + active_skill = true, + cold = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Cold, Minion, Spell, Golem", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSummonFlameGolem"] = { + name = "Summon Flame Golem", + grantedEffectId = "SummonFireGolem", + tags = { + strength = true, + active_skill = true, + fire = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Fire, Minion, Spell, Golem", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemSummonLightningGolem"] = { + name = "Summon Lightning Golem", + grantedEffectId = "SummonLightningGolem", + tags = { + intelligence = true, + active_skill = true, + lightning = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Lightning, Minion, Spell, Golem", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemBlasphemy"] = { + name = "Blasphemy", + grantedEffectId = "SupportBlasphemy", + tags = { + intelligence = true, + support = true, + curse = true, + aura = true, + }, + tagString = "Support, Curse, Aura", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemIceCrash"] = { + name = "Ice Crash", + grantedEffectId = "IceCrash", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + cold = true, + melee = true, + }, + tagString = "Attack, AoE, Cold, Melee", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemRallyingCry"] = { + name = "Rallying Cry", + grantedEffectId = "RallyingCry", + tags = { + warcry = true, + strength = true, + active_skill = true, + area = true, + duration = true, + }, + tagString = "Warcry, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAbyssalCry"] = { + name = "Abyssal Cry", + grantedEffectId = "AbyssalCry", + tags = { + warcry = true, + strength = true, + active_skill = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Warcry, AoE, Duration, Chaos", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFlameDash"] = { + name = "Flame Dash", + grantedEffectId = "FlameDash", + tags = { + intelligence = true, + active_skill = true, + spell = true, + movement = true, + duration = true, + fire = true, + }, + tagString = "Spell, Movement, Duration, Fire", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemVigilantStrike"] = { + name = "Vigilant Strike", + grantedEffectId = "VigilantStrike", + tags = { + attack = true, + strength = true, + active_skill = true, + melee = true, + }, + tagString = "Attack, Melee", + reqStr = 60, + reqDex = 0, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemFortify"] = { + name = "Fortify", + grantedEffectId = "SupportFortify", + tags = { + attack = true, + strength = true, + support = true, + melee = true, + }, + tagString = "Attack, Support, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostBlades"] = { + name = "Frost Blades", + grantedEffectId = "FrostBlades", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + cold = true, + }, + tagString = "Projectile, Attack, Melee, Cold", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemFrenzyChargeOnSlayingFrozenEnemy"] = { + name = "Ice Bite", + grantedEffectId = "SupportFrenzyChargeOnSlayingFrozenEnemy", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemDamageAgainstChilled"] = { + name = "Hypothermia", + grantedEffectId = "SupportDamageAgainstChilled", + tags = { + cold = true, + dexterity = true, + support = true, + }, + tagString = "Cold, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemOnslaughtOnSlayingShockedEnemy"] = { + name = "Innervate", + grantedEffectId = "SupportOnslaughtOnSlayingShockedEnemy", + tags = { + lightning = true, + intelligence = true, + support = true, + duration = true, + }, + tagString = "Lightning, Support, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemMagmaOrb"] = { + name = "Magma Orb", + grantedEffectId = "MagmaOrb", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + fire = true, + chaining = true, + }, + tagString = "Projectile, Spell, AoE, Fire, Chaining", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemTrapAndMineDamage"] = { + name = "Trap and Mine Damage", + grantedEffectId = "SupportTrapAndMineDamage", + tags = { + dexterity = true, + support = true, + trap = true, + mine = true, + }, + tagString = "Support, Trap, Mine", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemWildStrike"] = { + name = "Wild Strike", + grantedEffectId = "WildStrike", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + attack = true, + melee = true, + lightning = true, + cold = true, + fire = true, + area = true, + chaining = true, + }, + tagString = "Projectile, Attack, Melee, Lightning, Cold, Fire, AoE, Chaining", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemIceTrap"] = { + name = "Ice Trap", + grantedEffectId = "IceTrap", + tags = { + trap = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + cold = true, + }, + tagString = "Trap, Spell, AoE, Cold", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemBlastRain"] = { + name = "Blast Rain", + grantedEffectId = "BlastRain", + tags = { + fire = true, + dexterity = true, + active_skill = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Fire, Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemShrapnelShot"] = { + name = "Shrapnel Shot", + grantedEffectId = "ShrapnelShot", + tags = { + lightning = true, + dexterity = true, + active_skill = true, + attack = true, + area = true, + bow = true, + }, + tagString = "Lightning, Attack, AoE, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBladefall"] = { + name = "Bladefall", + grantedEffectId = "Bladefall", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + }, + tagString = "Spell, AoE", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemBladeVortex"] = { + name = "Blade Vortex", + grantedEffectId = "BladeVortex", + tags = { + dexterity = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Spell, AoE, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostBomb"] = { + name = "Frost Bomb", + grantedEffectId = "FrostBomb", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + cold = true, + }, + tagString = "Spell, AoE, Duration, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSiegeBallista"] = { + name = "Siege Ballista", + grantedEffectId = "SiegeBallista", + tags = { + totem = true, + dexterity = true, + active_skill = true, + attack = true, + bow = true, + }, + tagString = "Totem, Attack, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemOrbOfStorms"] = { + name = "Orb of Storms", + grantedEffectId = "OrbOfStorms", + tags = { + lightning = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + area = true, + chaining = true, + }, + tagString = "Lightning, Spell, Duration, AoE, Chaining", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemSummonRockGolem"] = { + name = "Summon Stone Golem", + grantedEffectId = "SummonRockGolem", + tags = { + strength = true, + active_skill = true, + minion = true, + spell = true, + golem = true, + }, + tagString = "Minion, Spell, Golem", + reqStr = 60, + reqDex = 40, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemEarthquake"] = { + name = "Earthquake", + grantedEffectId = "Earthquake", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + duration = true, + melee = true, + }, + tagString = "Attack, AoE, Duration, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemPoison"] = { + name = "Poison", + grantedEffectId = "SupportPoison", + tags = { + chaos = true, + dexterity = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemContagion"] = { + name = "Contagion", + grantedEffectId = "Contagion", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + }, + tagString = "Spell, AoE, Duration, Chaos", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemWither"] = { + name = "Wither", + grantedEffectId = "Wither", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + duration = true, + chaos = true, + channelling = true, + }, + tagString = "Spell, AoE, Duration, Chaos, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemBlight"] = { + name = "Blight", + grantedEffectId = "Blight", + tags = { + intelligence = true, + active_skill = true, + spell = true, + chaos = true, + area = true, + channelling = true, + duration = true, + }, + tagString = "Spell, Chaos, AoE, Channelling, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemEssenceDrain"] = { + name = "Essence Drain", + grantedEffectId = "EssenceDrain", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + duration = true, + chaos = true, + }, + tagString = "Projectile, Spell, Duration, Chaos", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemVoidManipulation"] = { + name = "Void Manipulation", + grantedEffectId = "SupportVoidManipulation", + tags = { + chaos = true, + dexterity = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemControlledDestruction"] = { + name = "Controlled Destruction", + grantedEffectId = "SupportControlledDestruction", + tags = { + spell = true, + intelligence = true, + support = true, + }, + tagString = "Spell, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemRapidDecay"] = { + name = "Swift Affliction", + grantedEffectId = "SupportRapidDecay", + tags = { + dexterity = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemClusterTrap"] = { + name = "Cluster Traps", + grantedEffectId = "SupportClusterTrap", + tags = { + trap = true, + dexterity = true, + support = true, + }, + tagString = "Trap, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemMeleeTotem"] = { + name = "Ancestral Protector", + grantedEffectId = "TotemMelee", + tags = { + totem = true, + strength = true, + active_skill = true, + attack = true, + melee = true, + }, + tagString = "Totem, Attack, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemAncestralWarchief"] = { + name = "Ancestral Warchief", + grantedEffectId = "AncestorTotemSlam", + tags = { + totem = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Totem, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemSunder"] = { + name = "Sunder", + grantedEffectId = "Sunder", + tags = { + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemFrostBolt"] = { + name = "Frostbolt", + grantedEffectId = "FrostBolt", + tags = { + projectile = true, + intelligence = true, + active_skill = true, + spell = true, + cold = true, + }, + tagString = "Projectile, Spell, Cold", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFrostBoltNova"] = { + name = "Vortex", + grantedEffectId = "FrostBoltNova", + tags = { + intelligence = true, + active_skill = true, + spell = true, + area = true, + cold = true, + duration = true, + }, + tagString = "Spell, AoE, Cold, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemElementalFocus"] = { + name = "Elemental Focus", + grantedEffectId = "SupportElementalFocus", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMinefield"] = { + name = "Minefield", + grantedEffectId = "SupportMinefield", + tags = { + intelligence = true, + support = true, + mine = true, + }, + tagString = "Support, Mine", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemTrapCooldown"] = { + name = "Advanced Traps", + grantedEffectId = "SupportTrapCooldown", + tags = { + trap = true, + dexterity = true, + support = true, + }, + tagString = "Trap, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemDarkPact"] = { + name = "Dark Pact", + grantedEffectId = "DarkPact", + tags = { + minion = true, + intelligence = true, + active_skill = true, + spell = true, + area = true, + chaining = true, + chaos = true, + }, + tagString = "Minion, Spell, AoE, Chaining, Chaos", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemFireBeam"] = { + name = "Scorching Ray", + grantedEffectId = "FireBeam", + tags = { + intelligence = true, + active_skill = true, + spell = true, + fire = true, + duration = true, + channelling = true, + }, + tagString = "Spell, Fire, Duration, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemCastWhileChannelling"] = { + name = "Cast while Channelling", + grantedEffectId = "SupportCastWhileChannelling", + tags = { + intelligence = true, + support = true, + channelling = true, + spell = true, + }, + tagString = "Support, Channelling, Spell", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemIgniteProliferation"] = { + name = "Ignite Proliferation", + grantedEffectId = "SupportIgniteProliferation", + tags = { + fire = true, + intelligence = true, + support = true, + area = true, + }, + tagString = "Fire, Support, AoE", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemChanceToBleed"] = { + name = "Chance to Bleed", + grantedEffectId = "SupportChanceToBleed", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemLesserPoison"] = { + name = "Lesser Poison", + grantedEffectId = "SupportLesserPoison", + tags = { + chaos = true, + dexterity = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemDeadlyAilments"] = { + name = "Deadly Ailments", + grantedEffectId = "SupportDeadlyAilments", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SupportGemDecay"] = { + name = "Decay", + grantedEffectId = "SupportDecay", + tags = { + chaos = true, + intelligence = true, + support = true, + }, + tagString = "Chaos, Support", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemEfficacy"] = { + name = "Efficacy", + grantedEffectId = "SupportEfficacy", + tags = { + intelligence = true, + support = true, + duration = true, + }, + tagString = "Support, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemVileToxins"] = { + name = "Vile Toxins", + grantedEffectId = "SupportDebilitate", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemMaim"] = { + name = "Maim", + grantedEffectId = "SupportMaim", + tags = { + attack = true, + strength = true, + support = true, + }, + tagString = "Attack, Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemImmolate"] = { + name = "Immolate", + grantedEffectId = "SupportImmolation", + tags = { + fire = true, + intelligence = true, + support = true, + }, + tagString = "Fire, Support", + reqStr = 40, + reqDex = 0, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemUnboundAilments"] = { + name = "Unbound Ailments", + grantedEffectId = "SupportAilments", + tags = { + intelligence = true, + support = true, + }, + tagString = "Support", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SupportGemBrutality"] = { + name = "Brutality", + grantedEffectId = "SupportBrutality", + tags = { + strength = true, + support = true, + }, + tagString = "Support", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemRuthless"] = { + name = "Ruthless", + grantedEffectId = "SupportRuthless", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + }, + tagString = "Support, Melee, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemOnslaught"] = { + name = "Onslaught", + grantedEffectId = "SupportOnslaught", + tags = { + dexterity = true, + support = true, + }, + tagString = "Support", + reqStr = 40, + reqDex = 60, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemArcaneSurge"] = { + name = "Arcane Surge", + grantedEffectId = "SupportArcaneSurge", + tags = { + intelligence = true, + support = true, + spell = true, + duration = true, + }, + tagString = "Support, Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SkillGemCorpseEruption"] = { + name = "Cremation", + grantedEffectId = "CorpseEruption", + tags = { + projectile = true, + dexterity = true, + active_skill = true, + spell = true, + area = true, + fire = true, + duration = true, + }, + tagString = "Projectile, Spell, AoE, Fire, Duration", + reqStr = 0, + reqDex = 60, + reqInt = 40, + }, + ["Metadata/Items/Gems/SkillGemCorpseWarp"] = { + name = "Bodyswap", + grantedEffectId = "CorpseWarp", + tags = { + intelligence = true, + active_skill = true, + movement = true, + spell = true, + area = true, + fire = true, + }, + tagString = "Movement, Spell, AoE, Fire", + reqStr = 0, + reqDex = 40, + reqInt = 60, + }, + ["Metadata/Items/Gems/SkillGemTectonicSlam"] = { + name = "Tectonic Slam", + grantedEffectId = "EnduranceChargeSlam", + tags = { + fire = true, + strength = true, + active_skill = true, + attack = true, + area = true, + melee = true, + }, + tagString = "Fire, Attack, AoE, Melee", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemStormBarrier"] = { + name = "Storm Barrier", + grantedEffectId = "SupportStormBarrier", + tags = { + lightning = true, + intelligence = true, + support = true, + channelling = true, + }, + tagString = "Lightning, Support, Channelling", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemParallelProjectiles"] = { + name = "Volley", + grantedEffectId = "SupportParallelProjectiles", + tags = { + dexterity = true, + support = true, + projectile = true, + }, + tagString = "Support, Projectile", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemSpellCascade"] = { + name = "Spell Cascade", + grantedEffectId = "SupportSpellCascade", + tags = { + area = true, + spell = true, + intelligence = true, + support = true, + }, + tagString = "AoE, Spell, Support", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemSpiritStrike"] = { + name = "Ancestral Call", + grantedEffectId = "SupportSpiritStrike", + tags = { + strength = true, + support = true, + melee = true, + attack = true, + }, + tagString = "Support, Melee, Attack", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, + ["Metadata/Items/Gems/SupportGemSummonGhostOnKill"] = { + name = "Summon Phantasm on Kill", + grantedEffectId = "SupportSummonGhostOnKill", + tags = { + intelligence = true, + support = true, + minion = true, + }, + tagString = "Support, Minion", + reqStr = 0, + reqDex = 0, + reqInt = 100, + }, + ["Metadata/Items/Gems/SupportGemMirageArcher"] = { + name = "Mirage Archer", + grantedEffectId = "SupportGemMirageArcher", + tags = { + bow = true, + attack = true, + dexterity = true, + support = true, + duration = true, + }, + tagString = "Bow, Attack, Support, Duration", + reqStr = 0, + reqDex = 100, + reqInt = 0, + }, + ["Metadata/Items/Gems/SkillGemNewVulnerability"] = { + name = "Vulnerability", + grantedEffectId = "Vulnerability", + tags = { + curse = true, + strength = true, + active_skill = true, + spell = true, + area = true, + duration = true, + }, + tagString = "Curse, Spell, AoE, Duration", + reqStr = 100, + reqDex = 0, + reqInt = 0, + }, +} \ No newline at end of file diff --git a/Data/3_0/Misc.lua b/Data/3_0/Misc.lua index 82e50098..6afce387 100644 --- a/Data/3_0/Misc.lua +++ b/Data/3_0/Misc.lua @@ -6,4 +6,4 @@ data.monsterLifeTable = { 15, 18, 21, 25, 29, 33, 38, 43, 49, 55, 61, 68, 76, 85 data.monsterAllyLifeTable = { 15, 17, 20, 23, 26, 30, 33, 37, 41, 46, 50, 55, 60, 66, 71, 77, 84, 91, 98, 105, 113, 122, 131, 140, 150, 161, 171, 183, 195, 208, 222, 236, 251, 266, 283, 300, 318, 337, 357, 379, 401, 424, 448, 474, 501, 529, 559, 590, 622, 656, 692, 730, 769, 810, 853, 899, 946, 996, 1048, 1102, 1159, 1219, 1281, 1346, 1415, 1486, 1561, 1640, 1722, 1807, 1897, 1991, 2089, 2192, 2299, 2411, 2528, 2651, 2779, 2913, 3053, 3199, 3352, 3511, 3678, 3853, 4035, 4225, 4424, 4631, 4848, 5074, 5310, 5557, 5815, 6084, 6364, 6658, 6964, 7283, } data.monsterDamageTable = { 5, 6, 6, 7, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 24, 26, 28, 30, 32, 34, 36, 39, 41, 44, 47, 50, 53, 56, 59, 63, 67, 71, 75, 80, 84, 89, 94, 100, 106, 112, 118, 125, 131, 139, 147, 155, 163, 172, 181, 191, 202, 212, 224, 236, 248, 262, 275, 290, 305, 321, 338, 355, 374, 393, 413, 434, 456, 480, 504, 530, 556, 584, 614, 645, 677, 711, 746, 783, 822, 862, 905, 949, 996, 1045, 1096, 1149, 1205, 1264, 1325, 1390, 1457, 1527, 1601, 1678, 1758, } -- From MonsterVarieties.dat combined with SkillTotemVariations.dat -data.totemLifeMult = { [1] = 1.62, [2] = 1.62, [3] = 1.62, [4] = 1.62, [5] = 1.62, [6] = 2.31, [7] = 1.62, [8] = 1.62, [9] = 1.62, [10] = 1.62, [11] = 1.62, [12] = 1.62, [13] = 2.48, [15] = 2.48, } +data.totemLifeMult = { [1] = 1.62, [2] = 1.62, [3] = 1.62, [4] = 1.62, [5] = 1.62, [6] = 2.31, [7] = 1.62, [8] = 1.62, [9] = 1.62, [10] = 1.62, [11] = 1.62, [12] = 1.62, [13] = 2.48, [15] = 2.48, [16] = 2.48, } diff --git a/Data/3_0/ModCache.lua b/Data/3_0/ModCache.lua index 09336957..04196f5e 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["+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=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["20% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},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["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["15% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=15,name="EnemyShockEffect",keywordFlags=0},[2]={flags=0,type="INC",value=15,name="EnemyChillEffect",keywordFlags=0},[3]={flags=0,type="INC",value=15,name="EnemyFreezeEffech",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["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["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{[1]={flags=0,type="LIST",value={level=20,name="AvianTornado"},name="ExtraSkill",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Ice Bite",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["+175 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=175,name="EnergyShield",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 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["50% increased Critical Strike Chance with Staves"]={{[1]={flags=131072,type="INC",value=50,name="CritChance",keywordFlags=0}},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["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=0,type="BASE",value=6,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=12,name="FireMax",keywordFlags=131072}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{[1]={flags=0,type="LIST",value={level=20,name="ShadeForm"},name="ExtraSkill",keywordFlags=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["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["+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["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["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius "}c["+8% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResist",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"]={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["+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["300% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EvasionAndEnergyShield",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["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["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}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["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,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:1}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"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Cat"},value={key="manaCostForced",value=0},type="LIST",keywordFlags=0,name="SkillData",flags=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["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["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=true,type="FLAG",keywordFlags=0,name="MinionInstability",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["16% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=16,name="PhysicalDamage",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["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["+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["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["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["If you've Cast a Spell Recently, you and nearby Allies have 10% chance to Block Spells"]={{[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["35% increased Spell Damage"]={{[1]={flags=2,type="INC",value=35,name="Damage",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["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["Gain 5 Souls for Vaal Skills on Rampage Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage Rampage "}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["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["28% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=28,name="BlockChanceConv",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["23% increased Spell Damage"]={{[1]={flags=2,type="INC",value=23,name="Damage",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["+180 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=180,name="EnergyShield",keywordFlags=0}},nil}c["4% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=4,name="Damage",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["30% Chance to Dodge Attack Hits. 50% less Armour, 30% less 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=-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["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["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["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["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["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={level=20,name="DeathWalk"},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["24% increased maximum Life"]={{[1]={flags=0,type="INC",value=24,name="Life",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["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["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% increased Damage with Hits against Frozen, Shocked or Ignited Enemies"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Shocked",[3]="Ignited"},actor="enemy"},flags=0,type="INC",value=25,name="Damage",keywordFlags=262144}},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["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["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["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["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["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["217% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=217,name="EvasionAndEnergyShield",keywordFlags=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 Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsFire",keywordFlags=0}},nil}c["Cannot take Reflected Elemental Damage"]={nil,"Cannot take Reflected Elemental Damage "}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["10% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=10,name="AuraEffect",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["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["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["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["Minions deal 37% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=37,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}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["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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud 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["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["+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["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["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["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["+25 to maximum Life"]={{[1]={flags=0,type="BASE",value=25,name="Life",keywordFlags=0}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,type="INC",value=50,name="Damage",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["+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["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["18% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",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["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius "}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 20% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Life Leech effects are not removed at Full Life 20% 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["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["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["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["Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration "}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=8193,type="BASE",value=10,name="BleedChance",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% 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["+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["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["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["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["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["+6 to maximum Life"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}},nil}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 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["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["+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["+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["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={name="Increased Area of Effect",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["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["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed "}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["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["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={level=22,name="Blight"},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 +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["74% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=74,name="ArmourAndEvasion",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["35% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=35,name="Accuracy",keywordFlags=0}},nil}c["50% increased Armour"]={{[1]={flags=0,type="INC",value=50,name="Armour",keywordFlags=0}},nil}c["45% chance to avoid Bleeding"]={{[1]={flags=0,type="BASE",value=45,name="AvoidBleed",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 further, dealing up to 50% increased Damage with Hits to targets"]={nil,"Projectiles gain Damage as they travel further, 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 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 20 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["70% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=1048576}},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["20% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=20,name="Damage",keywordFlags=0}}," while you have Arcane Surge "}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["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=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=2,name="LightningMax",keywordFlags=65536}},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={level=1,name="Temporal Chains",noSupports=true},name="ExtraSkill",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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage 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["+13 to Strength"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0}},nil}c["8% increased Physical Damage for each Hit you've Blocked in the past 10 seconds"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each Hit you've Blocked in the past 10 seconds "}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["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["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=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% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=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% 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["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["+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["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["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={name="Melee Splash",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["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellDamageAppliesToAttacks",flags=0}},nil}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["Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life"]={nil,"Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life "}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["10% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=10,name="Speed",keywordFlags=2}},nil}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["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={level=5,name="Vulnerability",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["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={name="Endurance Charge on Melee Stun",level=20},name="ExtraSupport",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["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["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=10,name="Speed",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["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["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["12% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}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["40% increased Attack and Cast Speed if Energy Shield Recharge has started Recently"]={{[1]={[1]={type="Condition",var="EnergyShieldRechargeRecently"},flags=0,type="INC",value=40,name="Speed",keywordFlags=0}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=29,name="ChaosResist",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"]={{[1]={flags=0,type="BASE",value=50,name="AvoidBleed",keywordFlags=0}},nil}c["+25 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Dex",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["+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["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["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["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 57% 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=57}},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["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["25% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-25,name="FlaskDuration",keywordFlags=0}},nil}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["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["+1% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=1,name="ColdResistMax",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["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["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["Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently"]={nil,"Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently "}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["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["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["+6% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=6,name="FireResistMax",keywordFlags=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["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={level=20,name="SpiderAspect"},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["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,type="INC",value=65,name="IgniteBurnSlower",keywordFlags=0}},nil}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["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["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["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["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["40% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=1048576}},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["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 22 to 35 Chaos Damage"]={{[1]={flags=0,type="BASE",value=22,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ChaosMax",keywordFlags=0}},nil}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["100% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=100,name="PowerChargesDuration",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["20% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=20,name="LifeLeechRate",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["Maximum Life Leech Rate is doubled."]={{[1]={value=100,type="MORE",keywordFlags=0,name="MaxLifeLeechRate",flags=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="Damage",keywordFlags=8650752}}," 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["7% increased Intelligence"]={{[1]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}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=0,type="BASE",value=80,name="BlockChanceConv",keywordFlags=0}},nil}c["Grants level 20 Summon Beastial Ursa Skill +400 to Accuracy Rating"]={nil,nil}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["+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["+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={level=20,name="Animate Weapon"},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="Damage",keywordFlags=8388608}},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="MovementSpeed",keywordFlags=0}}," Attack and with Her Blessing "}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["45% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=45,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}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["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=33,name="CritMultiplier",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["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=90,name="CritMultiplier",keywordFlags=0}},nil}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["Your Hits have 5% chance to gain 100% of Non-Chaos Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}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 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=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["+350 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=350,name="Evasion",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["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["20% chance to Ignite"]={{[1]={flags=0,type="BASE",value=20,name="EnemyIgniteChance",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["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["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["25% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=25,name="ChaosDamage",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["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,type="LIST",value={level=10,name="TriggeredConsecrate"},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=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["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["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"]={{[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["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["Auras you Cast 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["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["+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]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,type="INC",value=50,name="Damage",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["50% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShield",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={level=20,name="CatAspect"},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["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow by at least 10%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow by at least 10% "}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["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["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["-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["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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage"]={{[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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage "}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=0,type="BASE",value=40,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=131072}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds "}c["+40% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=40,name="ElementalResist",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["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["55% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=55,name="ArmourAndEvasion",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["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["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["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["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["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["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy "}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["+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["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.5,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}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["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 31% 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 31% 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={level=20,name="Bear Trap"},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["+30% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}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"]={{[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["+(-20--10)% to Chaos Resistance"]={nil,"+(-20--10)% to Chaos Resistance "}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["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["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["30% increased Totem Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=16384}},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["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["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=3,name="Speed",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["16% increased Totem Duration"]={{[1]={flags=0,type="INC",value=16,name="TotemDuration",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["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["12% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",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["+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["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["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["+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["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}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["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["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["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["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["25% reduced Bleed duration"]={{[1]={flags=0,type="INC",value=-25,name="EnemyBleedDuration",keywordFlags=0}},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["40% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=40,name="Damage",keywordFlags=0}}," while you have Arcane Surge "}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["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["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["30% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=4096}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="Mana",keywordFlags=0}},nil}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["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["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["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=60,name="PhysicalDamage",keywordFlags=0}},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["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,type="LIST",value={level=25,name="Scorching Ray"},name="ExtraSkill",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 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["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["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill "}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill "}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["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill "}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["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["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,type="LIST",value={level=20,name="SummonVoidSphere"},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["26% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",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["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["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["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["4% increased maximum Life"]={{[1]={flags=0,type="INC",value=4,name="Life",keywordFlags=0}},nil}c["You have Far Shot while you do not have Iron Reflexes Elder Item"]={nil,"You have Far Shot while you do not have Iron Reflexes Elder Item "}c["60% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=60,name="LightningDamage",keywordFlags=0}},nil}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["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["+15 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill "}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["+23% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ChaosResist",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["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion "}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 Beastial Ursa Skill"]={nil,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["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["25% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=25,name="CooldownRecovery",keywordFlags=4096}},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 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["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["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 when Hit by an Attack "}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="ProjectileCount",keywordFlags=0}}," of Piercing "}c["You are Cursed with Level 20 Vulnerability"]={{[1]={flags=0,type="LIST",value={level=20,name="Vulnerability",applyToPlayer=true},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["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["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={level=20,name="BirdAspect"},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["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["Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage "}c["+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={name="Pierce",level=15},name="ExtraSupport",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["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["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]={[1]={type="Condition",var="AffectedByVitality"},flags=0,type="BASE",value=1.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="ManaRegen",keywordFlags=0}},nil}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.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={level=5,name="Frostbite"},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["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["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={name="Chance to Flee",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["14% increased Armour"]={{[1]={flags=0,type="INC",value=14,name="Armour",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["Casts level 7 Abberath's Fury when equipped"]={{[1]={flags=0,type="LIST",value={level=7,name="RepeatingShockwave"},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["20% increased Totem Life"]={{[1]={flags=0,type="INC",value=20,name="TotemLife",keywordFlags=0}},nil}c["80% increased Armour"]={{[1]={flags=0,type="INC",value=80,name="Armour",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["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 Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=25,name="PhysicalDamage",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["+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["+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["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["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["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]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsFire",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["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 33% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="MORE",value=33,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["+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["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["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["15% increased Attack and Movement Speed while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion "}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["14% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}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["Damage Penetrates 5% Fire Resistance"]={{[1]={flags=0,type="BASE",value=5,name="FirePenetration",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["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["+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="Damage",keywordFlags=8388608}},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["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["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=150,name="EnergyShieldRechargeFaster",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["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["If you've used a Skill Recently, you and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="UsedSkillRecently"},value=true,type="FLAG",keywordFlags=0,name="Condition:Tailwind",flags=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["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["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["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Fire Damage",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["178% increased Physical Damage"]={{[1]={flags=0,type="INC",value=178,name="PhysicalDamage",keywordFlags=0}},nil}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["16% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=16,name="TotemPlacementSpeed",keywordFlags=0}},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["75% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-75,name="SelfChillEffect",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["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["You Regenerate 0.5% of Mana per second per Totem You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem You and your Totems Regenerate 1% of Life per second per Totem "}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=-1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when "}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=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["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["20% less Minimum Physical Attack Damage 20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum 20% more Maximum Physical Attack Damage "}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 One Handed Melee Weapons"]={{[1]={flags=18874368,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["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["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["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["15% increased Attack and Movement Speed while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion "}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["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["+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 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["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["+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 69% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=69,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["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["+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["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["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["Damage Penetrates 10% of Enemy Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",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["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["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["+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 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["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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}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["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["25% increased Poison Duration at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=25,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Attacks have Blood Magic"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=1}},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% 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=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["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["You can have one additional Curse"]={nil,"You can have one additional Curse "}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=19,name="LifeOnHit",keywordFlags=0}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life "}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "}c["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["1% increased Movement Speed per 450 Evasion Rating, up to 100%"]={{[1]={[1]={limit=100,stat="Evasion",div=450,type="PerStat",limitTotal=true},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}},nil}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 Chaos Damage"]={{[1]={flags=0,type="INC",value=100,name="ChaosDamage",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["10% chance to Dodge Attack and Spell Hits while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0},[2]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="BASE",value=10,name="SpellDodgeChance",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["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["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["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["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"]={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["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["+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["Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently"]={nil,"Life Leech effects are not removed at Full Life 20% 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% 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]={[1]={type="PerStat",stat="EnergyShield",div=500},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-65,name="FlaskRecovery",keywordFlags=0}},nil}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["+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=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["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "}c["5% chance to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill "}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["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish "}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]={[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["+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["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["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["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["60% increased Cold Damage"]={{[1]={flags=0,type="INC",value=60,name="ColdDamage",keywordFlags=0}},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["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={name="Fortify",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["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=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={name="Cold to Fire",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,type="BASE",value=20,name="CritMultiplier",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["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["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["30% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=65536}},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["+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["Requiresd level 54"]={nil,"Requiresd level 54 "}c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,type="MORE",value=-50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["20% increased Poison Duration at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=20,name="EnemyPoisonDuration",keywordFlags=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["116% increased Physical Damage"]={{[1]={flags=0,type="INC",value=116,name="PhysicalDamage",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["45% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="SelfChillEffect",keywordFlags=0}},nil}c["44% increased Spell Damage"]={{[1]={flags=2,type="INC",value=44,name="Damage",keywordFlags=0}},nil}c["5% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=5,name="CooldownRecovery",keywordFlags=4096}},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["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["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["You can have one additional Curse 20% increased Damage per Curse on you"]={nil,"You can have one additional Curse 20% increased Damage per Curse on you "}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["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["Life Leech is applied to Energy Shield instead"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="GhostReaver",flags=0}},nil}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["Radius: 18 Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}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["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["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["+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["16% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=16,name="CritChance",keywordFlags=0}},nil}c["Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7.5,name="NonChaosDamageGainAsChaos",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 Two Handed Melee Weapons"]={{[1]={flags=35651584,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["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud on Death, dealing 50% of their maximum Life as Chaos Damage per second "}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["0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," while you have Arcane Surge "}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["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["18% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="LifeRecoveryRate",keywordFlags=0}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy Skills which throw Traps have Blood Magic"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy Skills which throw Traps have Blood Magic "}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["30% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds "}c["14% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=14,name="ChaosDamage",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,"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["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["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["+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["Using Warcries is Instant Warcries cost no Mana"]={nil,"Using Warcries is Instant Warcries cost no Mana "}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["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["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["Grants level 20 Summon Beastial Snake Skill {variant:3}Grants level 20 Summon Beastial Ursa Skill"]={nil,nil}c["16% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=16,name="LifeLeechRate",keywordFlags=0}},nil}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["+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["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% chance to Fortify on Melee hit Enemies you Taunt 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 you Taunt take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["Golems 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["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["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["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["15% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},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="Damage",keywordFlags=8388608}},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={name="Generosity",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["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"]={{[1]={flags=0,type="LIST",value={level=1,name="SummonHarbingerOfBrutality"},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["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["9% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["135% increased Charges used"]={{[1]={flags=0,type="INC",value=135,name="FlaskChargesUsed",keywordFlags=0}},nil}c["10% chance of Arrows Piercing"]={{}," of Arrows Piercing "}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Echo",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["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["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["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["+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 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["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=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["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]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,type="BASE",value=8,name="SpellBlockChance",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["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "}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["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]={[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 20 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 20 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["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["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={name="Cast on Death",level=20},name="ExtraSupport",keywordFlags=0}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire "}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["+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["+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["14% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=14,name="AuraEffect",keywordFlags=0}},nil}c["Arrows Pierce all Targets"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PierceAllTargets",flags=1}},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["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["15% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-15,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["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["You are Immune to Silence"]={nil,"You are Immune to Silence "}c["30% increased Attack Speed"]={{[1]={flags=1,type="INC",value=30,name="Speed",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={name="Increased Area of Effect",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["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["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["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage"]={nil,"+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage "}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,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=0,type="INC",value=50,name="Damage",keywordFlags=786432}},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["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=16384}},nil}c["235% increased Physical Damage"]={{[1]={flags=0,type="INC",value=235,name="PhysicalDamage",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["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded "}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["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["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["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["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["42% increased Spell Damage"]={{[1]={flags=2,type="INC",value=42,name="Damage",keywordFlags=0}},nil}c["30% 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=30,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased "}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["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["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["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["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["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["5% increased effect of Flasks on you"]={{[1]={flags=0,type="INC",value=5,name="FlaskEffect",keywordFlags=0}},nil}c["8% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=8,name="Evasion",keywordFlags=0}},nil}c["25% increased Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=25,name="FireResist",keywordFlags=0}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=90,name="CritChance",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]={[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["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["25% increased Totem Life"]={{[1]={flags=0,type="INC",value=25,name="TotemLife",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["22% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=22,name="StunRecovery",keywordFlags=0}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=20,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["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=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["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["+45 to Strength"]={{[1]={flags=0,type="BASE",value=45,name="Str",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["18% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["If you've Attacked Recently, you and nearby Allies have 10% chance to Block Attacks"]={{[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["Grants level 20 Summon Beastial Snake Skill"]={nil,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["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="FirePenetration",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["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["240% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=240,name="Evasion",keywordFlags=0}},nil}c["20% of Overkill Damage is Leeched as Life You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="BASE",value=20,name="DamageLifeLeech",keywordFlags=0}}," Overkill You are Immune to Bleeding "}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["Cold Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=32}},nil}c["Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect "}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["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["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["+10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ColdResist",keywordFlags=0}},nil}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["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["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["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["0.5% of Spell Damage Leeched as Life while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge "}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["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["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["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage "}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["6 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="LifeRegen",keywordFlags=0}},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["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["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}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["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["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["Adds 21 to 35 Cold Damage"]={{[1]={flags=0,type="BASE",value=21,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,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["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 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["Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire "}c["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={name="Hypothermia",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["10 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="ManaRegen",keywordFlags=0}},nil}c["5% increased Defences"]={{[1]={flags=0,type="INC",value=5,name="Defences",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["24% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+13 to Dexterity"]={{[1]={flags=0,type="BASE",value=13,name="Dex",keywordFlags=0}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=257,name="IntRequirement",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["+190 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=190,name="EnergyShield",keywordFlags=0}},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["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["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["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["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["Speed per second"]={nil,"Speed per second "}c["Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion {variant:3}Adds 16-25 Physical Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=65536}}," while you have a Beastial Minion {variant:3}Adds 16-25 to Attacks while you have a Beastial Minion "}c["Lightning Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=64}},nil}c["1.5% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.5,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," to gain Onslaught for 3 seconds on Kill Recover 1% of on Kill "}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["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 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 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["Adds 65 to 195 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage "}c["Onslaught"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=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 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["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["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blood Magic",level=1},name="ExtraSupport",keywordFlags=0}},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["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit "}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,type="INC",value=-10,name="DamageTakenOverTime",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 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["150% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=150,name="EnemyChillDuration",keywordFlags=0}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-8,name="ManaCost",keywordFlags=0}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=435,name="Accuracy",keywordFlags=0}},nil}c["100% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEvasion",keywordFlags=0}},nil}c["8% increased Physical Damage for each Hit you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy in the past 10 seconds 1% additional Block Chance for each Hit 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 Hit you've Blocked in the past 10 seconds 80% increased Physical Damage 1% additional Block Chance for each Hit you've Blocked in the past 10 seconds "}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={name="Elemental Proliferation",level=5},name="ExtraSupport",keywordFlags=0}},nil}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage "}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["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["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["15% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Damage",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 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["Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Minion Damage",level=17},name="ExtraSupport",keywordFlags=0}},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["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["16% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["50% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-50,name="Damage",keywordFlags=16384}},nil}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["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["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "}c["20% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}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["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["190% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=190,name="Evasion",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["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["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["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["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["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion "}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["If you've Blocked in the past 10 seconds, you"]={nil,"If you've Blocked in the past 10 seconds, you "}c["8% increased Area of Effect"]={{[1]={flags=0,type="INC",value=8,name="AreaOfEffect",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["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["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["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["Your Chaos Damage Poisons Enemies"]={{[1]={value=100,type="BASE",keywordFlags=0,name="ChaosPoisonChance",flags=0}},nil}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="SupportElementalPenetration",level=20},name="ExtraSupport",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["Life Leeched per Second is doubled."]={{[1]={value=100,type="MORE",keywordFlags=0,name="LifeLeechRate",flags=0}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=15,name="CurseEffect",keywordFlags=0}},nil}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={name="Concentrated Effect",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["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["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["+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["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "}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["Your Raised Zombies spread Caustic Cloud on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ZombieCausticCloudOnDeath",flags=0}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge 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["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["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["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["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["+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=0,type="BASE",value=400,name="PhysicalMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=600,name="PhysicalMax",keywordFlags=131072}},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["+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["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage "}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["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["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["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["50% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=50,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently "}c["10% chance to Fortify on Melee hit Enemies you Taunt take 10% increased Damage 25% chance to Taunt on Hit"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies you Taunt take 10% increased 25% chance to Taunt on Hit "}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy "}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked 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% 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["+240 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=240,name="Accuracy",keywordFlags=0}},nil}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["4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",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["33% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-33,name="CurseEffect",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=30,name="CritMultiplier",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["140% increased Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EnergyShield",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["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["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["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["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["16% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Hits with this Weapon deal 52% 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=52}},nil}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=33,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["6% increased Strength"]={{[1]={flags=0,type="INC",value=6,name="Str",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["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum "}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["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["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["Immune to Shock"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=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["40% increased Totem Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=16384}},nil}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEnergyShield",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["+12% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=15,name="FlaskManaRecovery",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["+100 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["+18 to maximum Life"]={{[1]={flags=0,type="BASE",value=18,name="Life",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["+58 to Dexterity"]={{[1]={flags=0,type="BASE",value=58,name="Dex",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["180% increased Physical Damage"]={{[1]={flags=0,type="INC",value=180,name="PhysicalDamage",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["4% additional Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=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["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["Grants Level 20 Summon Petrification Statue Skill"]={nil,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["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,type="INC",value=8,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["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["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask "}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes "}c["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["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["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["Your Lightning Damage can Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanIgnite",flags=0}},nil}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=12,name="LifeOnHit",keywordFlags=0}},nil}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["+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=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["Perfect Agony"]={{[1]={value="Perfect Agony",type="LIST",keywordFlags=0,name="Keystone",flags=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["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move "}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage "}c["8% increased Physical Damage for each Hit you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked a Hit 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 Hit you've Blocked in the past 10 seconds 80% increased Physical Damage "}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["+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["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["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["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=-100,type="MORE",keywordFlags=0,name="Damage",flags=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["+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["+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["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "}c["12% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited "}c["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["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["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block "}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["+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["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 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["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["12% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=12,name="LootQuantity",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["+5 to Maximum number of Crab Barriers"]={{[1]={flags=0,type="BASE",value=5,name="CrabBarriersMax",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["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["Grants level 30 Reckoning Skill"]={{[1]={flags=0,type="LIST",value={level=30,name="Reckoning"},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["+370 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=370,name="Accuracy",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 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["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["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["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 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["+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["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["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["175% increased Armour"]={{[1]={flags=0,type="INC",value=175,name="Armour",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["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}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["+173 to Armour"]={{[1]={flags=0,type="BASE",value=173,name="Armour",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 Cold Damage"]={{[1]={flags=0,type="INC",value=50,name="ColdDamage",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["+40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},nil}c["+10 to Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["30% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="PhysicalDamage",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["50% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=50,name="MineLayingSpeed",keywordFlags=0}},nil}c["+35 to Intelligence"]={{[1]={flags=0,type="BASE",value=35,name="Int",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["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=0,type="MORE",value=100,name="CritChance",keywordFlags=262144}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "}c["2% increased Movement Speed"]={{[1]={flags=0,type="INC",value=2,name="MovementSpeed",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["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["0% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootRarity",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["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["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["6% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",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["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["+120 to Armour"]={{[1]={flags=0,type="BASE",value=120,name="Armour",keywordFlags=0}},nil}c["6% increased Area of Effect"]={{[1]={flags=0,type="INC",value=6,name="AreaOfEffect",keywordFlags=0}},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["77% increased Spell Damage"]={{[1]={flags=2,type="INC",value=77,name="Damage",keywordFlags=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["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=38,name="LifeOnHit",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["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 Attack Skills"]={{[1]={flags=0,type="INC",value=34,name="ElementalDamage",keywordFlags=65536}},nil}c["+74 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=74,name="Accuracy",keywordFlags=0}},nil}c["18% increased Cold Damage"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",keywordFlags=0}},nil}c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,type="BASE",value=6,name="FirePenetration",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["+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["172% increased Physical Damage"]={{[1]={flags=0,type="INC",value=172,name="PhysicalDamage",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["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "}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["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=256,type="INC",value=50,name="Damage",keywordFlags=262144}},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["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+69 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=69,name="EnergyShield",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["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["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion "}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["+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["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["5% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-5,name="MovementSpeed",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["Can't use Chest armour"]={nil,"Can't use Chest armour "}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["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["+63 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=63,name="EnergyShield",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["+84 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=84,name="EnergyShield",keywordFlags=0}},nil}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["+231 to Armour"]={{[1]={flags=0,type="BASE",value=231,name="Armour",keywordFlags=0}},nil}c["74% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="EvasionAndEnergyShield",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["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["+17 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=17,name="Evasion",keywordFlags=0}},nil}c["+17 to Armour"]={{[1]={flags=0,type="BASE",value=17,name="Armour",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["+23 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=23,name="Evasion",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 Ailments against other targets"]={{}," Enemies Taunted by you deal 10% less against other targets "}c["18% increased Melee Damage"]={{[1]={flags=256,type="INC",value=18,name="Damage",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={level=12,name="LightningSpell"},name="ExtraSkill",keywordFlags=0}},nil}c["+23 to Armour"]={{[1]={flags=0,type="BASE",value=23,name="Armour",keywordFlags=0}},nil}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["+425 to Armour"]={{[1]={flags=0,type="BASE",value=425,name="Armour",keywordFlags=0}},nil}c["45% increased Burning Damage"]={{[1]={flags=0,type="INC",value=45,name="Damage",keywordFlags=8388608}},nil}c["74% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+48 to Dexterity"]={{[1]={flags=0,type="BASE",value=48,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["74% increased Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="EnergyShield",keywordFlags=0}},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["70% increased Damage with Channelling Skills"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["74% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=74,name="Evasion",keywordFlags=0}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=48,name="Evasion",keywordFlags=0}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",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["100% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=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["-50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-50,name="ElementalResist",keywordFlags=0}},nil}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["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["23% increased Trap Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=4096}},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["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["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["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["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["28% increased Trap Damage"]={{[1]={flags=0,type="INC",value=28,name="Damage",keywordFlags=4096}},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["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["You have Resolute Technique while you do not have Elemental Overload Elder Item"]={nil,"You have Resolute Technique while you do not have Elemental Overload Elder Item "}c["15% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=-15,name="Duration",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["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Attacks",level=18},name="ExtraSupport",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["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 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 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["+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["+20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningResist",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["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["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{}," "}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["75% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=75,name="BlockChanceConv",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["15% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=120,name="BlockChanceConv",keywordFlags=0}},nil}c["+12% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0}},nil}c["18 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=18,name="LifeRegen",keywordFlags=0}},nil}c["55% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=55,name="CritChance",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["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["+8% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResistMax",keywordFlags=0}},nil}c["20 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["+60 Maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "}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"]={{}," Level of Aura Gems in this item "}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["100% increased Spell Damage"]={{[1]={flags=2,type="INC",value=100,name="Damage",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["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=18,name="ElementalDamage",keywordFlags=0}},nil}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["1% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",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["50% reduced Freeze Duration on You"]={{[1]={flags=0,type="INC",value=-50,name="EnemyFreezeDuration",keywordFlags=0}}," on You "}c["+4% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalResist",keywordFlags=0}},nil}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={level=20,name="FireAegis"},name="ExtraSkill",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["+3000 to Armour"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}},nil}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["+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["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["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.4,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["+45% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=45,name="ColdResist",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["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,type="BASE",value=200,name="Accuracy",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["+8 to Armour"]={{[1]={flags=0,type="BASE",value=8,name="Armour",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["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["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["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={level=20,name="ColdAegis"},name="ExtraSkill",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 place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}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["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["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["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,type="LIST",value={level=1,name="TriggeredSummonSpider"},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["25% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="PhysicalDamage",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["+51 to maximum Mana"]={{[1]={flags=0,type="BASE",value=51,name="Mana",keywordFlags=0}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=160,name="Evasion",keywordFlags=0}},nil}c["120% increased Block Recovery"]={{[1]={flags=0,type="INC",value=120,name="BlockRecovery",keywordFlags=0}},nil}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["200% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=200,name="Evasion",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["8% chance to Freeze"]={{[1]={flags=0,type="BASE",value=8,name="EnemyFreezeChance",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["+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["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["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["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["60% reduced Duration"]={{[1]={flags=0,type="INC",value=-60,name="Duration",keywordFlags=0}},nil}c["60% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=60,name="BlockChanceConv",keywordFlags=0}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",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["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["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit "}c["+2 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=2,name="PowerChargesMax",keywordFlags=0}},nil}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 to Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Int",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["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"]={{[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["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["260% increased Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EnergyShield",keywordFlags=0}},nil}c["+38% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=38,name="LightningResist",keywordFlags=0}},nil}c["Shock Reflection"]={nil,"Shock Reflection "}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry "}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["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,type="BASE",value=10,name="Damage",keywordFlags=0}}," Reflected Gained as Life "}c["+5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegen",keywordFlags=0}},nil}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["23% increased Poison Duration"]={{[1]={flags=0,type="INC",value=23,name="EnemyPoisonDuration",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["90% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["25% Increased Warcry Effect"]={{[1]={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=4}},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["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["80% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-80,name="TrapDuration",keywordFlags=0}},nil}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["12% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=65536}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",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["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["+18% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-10,name="EnergyShield",keywordFlags=0}},nil}c["+14 to all Attributes"]={{[1]={flags=0,type="BASE",value=14,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=14,name="Int",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["10% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["Projectiles Pierce 5 additional Targets"]={{[1]={flags=0,type="BASE",value=5,name="PierceCount",keywordFlags=0}},nil}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["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["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["7 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=7,name="LifeRegen",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["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["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["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill "}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["100% increased Curse Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=2}},nil}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["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["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["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["Acrobatics"]={{[1]={value="Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "}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["50% reduced Duration of Curses on you"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}}," of Curses on you "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently Shaper Item"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently Shaper Item "}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["28% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=28,name="ElementalDamage",keywordFlags=65536}},nil}c["+30 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",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["+300 Armour per active Totem"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active "}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["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["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=16384}},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["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=16384}},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["0.5% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["60% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},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["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["200% increased Armour against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles "}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["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["-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["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["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level "}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["+6% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdResistMax",keywordFlags=0}},nil}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["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy "}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="Damage",keywordFlags=8388608}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-30,name="Speed",keywordFlags=0}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}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["+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["74% increased Armour"]={{[1]={flags=0,type="INC",value=74,name="Armour",keywordFlags=0}},nil}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={level=20,name="ElementalAegis"},name="ExtraSkill",keywordFlags=0}},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 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["40% increased Physical Damage"]={{[1]={flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["+4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",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={level=8,name="Summon Raging Spirit"},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["+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["235% increased Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EnergyShield",keywordFlags=0}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "}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["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["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks "}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["+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["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["+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["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["Projectiles gain Damage as they travel further, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Projectiles gain Damage as they travel further, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToFire",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["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["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["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["+73 to maximum Life"]={{[1]={flags=0,type="BASE",value=73,name="Life",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["4% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=4,name="Speed",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["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["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["170% increased Armour"]={{[1]={flags=0,type="INC",value=170,name="Armour",keywordFlags=0}},nil}c["140% increased Armour"]={{[1]={flags=0,type="INC",value=140,name="Armour",keywordFlags=0}},nil}c["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability "}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["22% increased Cold Damage"]={{[1]={flags=0,type="INC",value=22,name="ColdDamage",keywordFlags=0}},nil}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["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["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "}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["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike "}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["75% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=75,name="CritChance",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["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["500% increased Physical Damage"]={{[1]={flags=0,type="INC",value=500,name="PhysicalDamage",keywordFlags=0}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.6,name="PhysicalDamageManaLeech",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["+175 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=175,name="Accuracy",keywordFlags=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["+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["230% increased Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="EnergyShield",keywordFlags=0}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,type="INC",value=4,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["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["+1 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Innervate",level=18},name="ExtraSupport",keywordFlags=0}},nil}c["+1 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=65536}},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% 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["+185 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=185,name="Accuracy",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["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% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-20,name="ProjectileSpeed",keywordFlags=0}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-25,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["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["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies "}c["10% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=10,name="FireDamageTaken",keywordFlags=0}},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["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["2% additional Block Chance"]={{[1]={flags=0,type="BASE",value=2,name="BlockChance",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["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Reduced Mana",level=1},name="ExtraSupport",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["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["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=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["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["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["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 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 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["+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["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["150% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=150,name="Evasion",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["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 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["20% increased Fire Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=0}},nil}c["Chills from your Hits always Slow by at least 10%"]={nil,"Chills from your Hits always Slow by at least 10% "}c["+30 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=30,name="Evasion",keywordFlags=0}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",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["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["+1 Maximum Power Charge"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},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["19% increased Attack Speed"]={{[1]={flags=1,type="INC",value=19,name="Speed",keywordFlags=0}},nil}c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=48,name="ElementalDamage",keywordFlags=65536}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=13,name="FireResist",keywordFlags=0}},nil}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"]={{[1]={flags=0,type="INC",value=55,name="ElementalDamage",keywordFlags=65536}},nil}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["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=3,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}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["15% reduced Intelligence"]={{[1]={flags=0,type="INC",value=-15,name="Int",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["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["30% Chance to Dodge Spell Hits"]={{[1]={flags=0,type="BASE",value=30,name="SpellDodgeChance",keywordFlags=0}},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["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["Gain a Void Charge every second Elder Item"]={nil,"Gain a Void Charge every second Elder Item "}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 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 Effect of Shrine Buffs on you"]={{[1]={flags=0,type="INC",value=75,name="FlaskEffect",keywordFlags=0}}," of Shrine Buffs on you "}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["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["3% increased Movement Speed"]={{[1]={flags=0,type="INC",value=3,name="MovementSpeed",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently 60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently 60% increased Damage for each 200 total Mana you have Spent Recently "}c["60% increased Damage with Channelling Skills"]={{[1]={[1]={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["+2 to Weapon Range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",keywordFlags=0}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=8192}},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["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["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["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["50% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=50,name="ManaCost",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["10% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=10,name="PhysicalDamage",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["8% increased Physical Damage"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",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["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["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["+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["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["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges "}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["Grants level 15 Envy Skill"]={{[1]={flags=0,type="LIST",value={level=15,name="Envy"},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["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,type="LIST",value={level=1,name="Flammability",noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}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["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy "}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 55 to 76 Chaos Damage"]={{[1]={flags=0,type="BASE",value=55,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="ChaosMax",keywordFlags=0}},nil}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["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["26% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["8% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-8,name="EnergyShield",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["100% increased Charge Recovery"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargeRecovery",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["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["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}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=0,type="BASE",value=1,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=65,name="LightningMax",keywordFlags=131072}},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["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["83% increased Spell Damage"]={{[1]={flags=2,type="INC",value=83,name="Damage",keywordFlags=0}},nil}c["+8% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ColdResist",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["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["Grants Summon Harbinger of the Arcane Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="SummonHarbingerOfTheArcane"},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["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["Grants level 20 Death Aura Skill"]={{[1]={flags=0,type="LIST",value={level=20,name="ChaosDegenAuraUnique"},name="ExtraSkill",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["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["10% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=10,name="TotemPlacementSpeed",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["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["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["Your Spells are disabled"]={{[1]={[1]={type="SkillType",skillType=2},value=true,type="FLAG",keywordFlags=0,name="DisableSkill",flags=0}},nil}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",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["90% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=90,name="ElementalDamage",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["Far Shot Elder Item"]={nil,"Far Shot Elder Item "}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["Adds 70 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",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["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["25% increased Flask Life Recovery rate"]={{[1]={flags=0,type="INC",value=25,name="FlaskLifeRecoveryRate",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["+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["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["Grants 1 Passive Skill Point"]={{[1]={flags=0,type="BASE",value=1,name="ExtraPoints",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["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["10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Ghosts "}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["22% increased Damage"]={{[1]={flags=0,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["40% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-40,name="Damage",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["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["+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["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["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite "}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["Socketed Gems are supported by level 1 Multistrike"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Multistrike",level=1},name="ExtraSupport",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["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["Creates a Smoke Cloud on Use"]={{},nil}c["21% increased Attack Speed"]={{[1]={flags=1,type="INC",value=21,name="Speed",keywordFlags=0}},nil}c["You and nearby allies have 15% 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=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["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["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["10% increased Effect of Buffs on you"]={{[1]={flags=0,type="INC",value=10,name="BuffEffectOnSelf",keywordFlags=0}},nil}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-8,name="ManaCost",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["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["25% increased Physical Damage"]={{[1]={flags=0,type="INC",value=25,name="PhysicalDamage",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["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["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["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["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=83,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}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["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["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["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["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldRechargeFaster",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["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["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration "}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["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="LightningDamageConvertToCold",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["+5 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",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["66% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=66,name="CritChance",keywordFlags=0}},nil}c["Has no Attribute Requirements"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoAttributeRequirements",flags=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["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["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["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["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite "}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,type="INC",value=50,name="IgniteBurnFaster",keywordFlags=0}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing "}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["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["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["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill "}c["18% Increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["80% increased Physical Damage if you've Blocked a Hit 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["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["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["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}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["4% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},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["10% reduced Maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["+125 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=125,name="Accuracy",keywordFlags=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 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["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["130% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEvasion",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["180% increased Armour"]={{[1]={flags=0,type="INC",value=180,name="Armour",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["+475 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=475,name="Accuracy",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["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["40% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=40,name="PhysicalDamage",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["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["20% increased Movement Speed"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=10,name="FlaskDuration",keywordFlags=0}},nil}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["16% increased Totem Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=16384}},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["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["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["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=40,name="Accuracy",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["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["1.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.8,name="LifeRegenPercent",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["110% increased Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EnergyShield",keywordFlags=0}},nil}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["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["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="DamageLifeLeech",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["+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block "}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["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy "}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["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["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=1000,name="PhysicalDamage",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["45% increased Area Damage"]={{[1]={flags=512,type="INC",value=45,name="Damage",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["20% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}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["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["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["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["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["150% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEvasion",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["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["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Attacks",level=10},name="ExtraSupport",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["+28% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=28,name="LightningResist",keywordFlags=0}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,type="INC",value=88,name="PhysicalDamage",keywordFlags=0}},nil}c["+36 to Armour"]={{[1]={flags=0,type="BASE",value=36,name="Armour",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["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["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["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["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={name="Iron Will",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["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["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 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["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["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["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["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["Curse Reflection"]={nil,"Curse Reflection "}c["12% increased Dexterity"]={{[1]={flags=0,type="INC",value=12,name="Dex",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 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={level=20,name="LightningSpell"},name="ExtraSkill",keywordFlags=0}},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["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=25,name="ElementalDamage",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["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["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["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% 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["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["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=31,name="LifeOnHit",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["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium "}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["12% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},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["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["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["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,type="LIST",value={level=1,name="Abyssal Cry"},name="ExtraSkill",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["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["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},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["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=44,name="LifeOnHit",keywordFlags=0}},nil}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["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% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "}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["8% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=8,name="MineLayingSpeed",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["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="SummonHarbingerOfStorms"},name="ExtraSkill",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["245% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=245,name="EvasionAndEnergyShield",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["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["Using Warcries is Instant"]={nil,"Using Warcries is Instant "}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["+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["260% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EvasionAndEnergyShield",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["20% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=20,name="ManaCost",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["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["8% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["Socketed Curse Gems are Supported by Level 22 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blasphemy",level=22},name="ExtraSupport",keywordFlags=0}},nil}c["18% increased Intelligence"]={{[1]={flags=0,type="INC",value=18,name="Int",keywordFlags=0}},nil}c["Arrows always Pierce after Chaining"]={nil,"Arrows always Pierce after Chaining "}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["+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["45% increased Damage"]={{[1]={flags=0,type="INC",value=45,name="Damage",keywordFlags=0}},nil}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["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,type="LIST",value={level=10,name="Temporal Chains",noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["Attacks with this Weapon deal 90 to 180 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=90},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",keywordFlags=262144,name="FireMax",value=180}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",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 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["+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["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded "}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,type="LIST",value={level=1,name="TriggeredSummonLesserShrine"},name="ExtraSkill",keywordFlags=0}},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life "}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyFreezeDuration",keywordFlags=0}},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["Templar: Damage Penetrates 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["+29% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=29,name="FireResist",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["+32% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=32,name="FireResist",keywordFlags=0}},nil}c["50% increased Physical Damage"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamage",keywordFlags=0}},nil}c["21% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=21,name="StunRecovery",keywordFlags=0}},nil}c["20% increased Area Damage"]={{[1]={flags=512,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=22,name="Defences",keywordFlags=0}},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["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use "}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["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block "}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["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["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["Gain 8% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=8,name="ManaGainAsEnergyShield",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["Immune to Elemental Ailments while Phasing"]={nil,"Immune to Elemental Ailments while Phasing "}c["Cannot Leech Mana"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechMana",flags=0}},nil}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Cold Penetration",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["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["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,type="INC",value=-25,name="ChaosDamageTakenOverTime",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["10% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=10,name="LightningDamage",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["10% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=10,name="ManaReserved",keywordFlags=0}},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["+200 to maximum Mana"]={{[1]={flags=0,type="BASE",value=200,name="Mana",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["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["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["100% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding "}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["+250 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=250,name="EnergyShield",keywordFlags=0}},nil}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["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 Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToCold",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["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={{[1]={flags=0,type="LIST",value={level=20,name="SpiritBurst"},name="ExtraSkill",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["45% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=45,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},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["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["50% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEnergyShield",keywordFlags=0}},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["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={level=1,name="SummonHarbingerOfFocus"},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["+52% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=52,name="ChaosResist",keywordFlags=0}},nil}c["+60 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=60,name="EnergyShield",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["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["+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% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack "}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["+45% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=45,name="FireResist",keywordFlags=0}},nil}c["+350 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=350,name="Accuracy",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["+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["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["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["-1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,type="INC",value=22,name="Mana",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["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["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["6% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=6,name="Damage",keywordFlags=65536}},nil}c["120% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Mercury Footprints"]={nil,"Mercury Footprints "}c["+65 to Dexterity"]={{[1]={flags=0,type="BASE",value=65,name="Dex",keywordFlags=0}},nil}c["10% increased Totem Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=16384}},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["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike "}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered "}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["+250 to Armour"]={{[1]={flags=0,type="BASE",value=250,name="Armour",keywordFlags=0}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit "}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-5,name="EnemyStunThreshold",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["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["+140 to maximum Life"]={{[1]={flags=0,type="BASE",value=140,name="Life",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["250% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEvasion",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["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["12% increased Attack Speed"]={{[1]={flags=1,type="INC",value=12,name="Speed",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["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["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["+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=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["300% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEvasion",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["40% increased Attack and Cast Speed if Energy"]={{[1]={flags=0,type="INC",value=40,name="Speed",keywordFlags=0}}," if Energy "}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["Socketed Gems are Supported by level 6 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",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={name="Blind",level=18},name="ExtraSupport",keywordFlags=0}},nil}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["Socketed Gems are Supported by level 12 Faster Attacks"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Attacks",level=12},name="ExtraSupport",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["35% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=35,name="LootRarity",keywordFlags=0}},nil}c["10% increased Intelligence"]={{[1]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["15% increased Intelligence"]={{[1]={flags=0,type="INC",value=15,name="Int",keywordFlags=0}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEvasion",keywordFlags=0}},nil}c["25% increased Attack Speed"]={{[1]={flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["+25% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",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["Adds 65 to 325 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=325,name="PhysicalMax",keywordFlags=0}},nil}c["+88 to maximum Life"]={{[1]={flags=0,type="BASE",value=88,name="Life",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["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["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["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,type="INC",value=-75,name="ActiveRagingSpiritLimit",keywordFlags=0}},nil}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage "}c["20% increased Onslaught duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Onslaught "}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["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["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,type="LIST",value={level=10,name="TriggeredShockedGround"},name="ExtraSkill",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block "}c["90% increased Spell Damage"]={{[1]={flags=2,type="INC",value=90,name="Damage",keywordFlags=0}},nil}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire "}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["100% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=100,name="BlockChanceConv",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["Grants level 1 Icestorm Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="IcestormUniqueStaff12"},name="ExtraSkill",keywordFlags=0}},nil}c["Radius: 18 Chills from your Hits always Slow by at least 10%"]={nil,"Radius: 18 Chills from your Hits always Slow by at least 10% "}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={name="Concentrated Effect",level=20},name="ExtraSupport",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["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["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% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=50,name="AvoidFrozen",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["+80 to maximum Mana"]={{[1]={flags=0,type="BASE",value=80,name="Mana",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["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["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Concentrated Effect",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["8% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Curse Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=2}},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=786432}},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["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 Cold Damage"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",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["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["65% increased Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="EnergyShield",keywordFlags=0}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=210,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["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks "}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["0.4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.4,name="LifeRegenPercent",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["0.3% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.3,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["135% increased Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EnergyShield",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["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["10% increased Melee Damage"]={{[1]={flags=256,type="INC",value=10,name="Damage",keywordFlags=0}},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["+70 to Dexterity"]={{[1]={flags=0,type="BASE",value=70,name="Dex",keywordFlags=0}},nil}c["23% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=23,name="LootRarity",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["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["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,type="LIST",value={level=20,name="TouchOfGod"},name="ExtraSkill",keywordFlags=0}},nil}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["-10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-10,name="ColdResist",keywordFlags=0}},nil}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=6,name="PhysicalDamage",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["Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Immune to Elemental Ailments while you have Arcane Surge "}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "}c["10% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=10,name="LootRarity",keywordFlags=0}},nil}c["+90 to maximum Mana"]={{[1]={flags=0,type="BASE",value=90,name="Mana",keywordFlags=0}},nil}c["Cannot be Shocked"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=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 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["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["25% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=25,name="AvoidChilled",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["-30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="FireResist",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["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["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["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["+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["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth "}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["+113% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=113,name="CritMultiplier",keywordFlags=0}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamageTaken",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["120% increased Armour"]={{[1]={flags=0,type="INC",value=120,name="Armour",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["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["+650 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=650,name="Evasion",keywordFlags=0}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["50% increased Area Damage"]={{[1]={flags=512,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=20,name="AvoidStun",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=60,name="CritChance",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["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["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges "}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["+13 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=13,name="EnergyShield",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["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["82% increased Spell Damage"]={{[1]={flags=2,type="INC",value=82,name="Damage",keywordFlags=0}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=40,name="CritChance",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["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["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["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}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["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["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 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["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% 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["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["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["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=50,name="CritChance",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["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow "}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["+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["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 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}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["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% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",keywordFlags=0}},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={[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["Socketed Gems are supported by level 20 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",level=20},name="ExtraSupport",keywordFlags=0}},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["Socketed Gems are supported by level 5 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",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["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["26% increased Spell Damage"]={{[1]={flags=2,type="INC",value=26,name="Damage",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["+18 to maximum Mana"]={{[1]={flags=0,type="BASE",value=18,name="Mana",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["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,name="Speed",keywordFlags=16384}},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["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["19% chance to Ignite"]={{[1]={flags=0,type="BASE",value=19,name="EnemyIgniteChance",keywordFlags=0}},nil}c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=30,name="EnergyShieldRecharge",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["200% increased Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EnergyShield",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["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["50% increased Burning Damage"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=8388608}},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["30% increased Cast Speed"]={{[1]={flags=16,type="INC",value=30,name="Speed",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["17% increased Spell Damage"]={{[1]={flags=2,type="INC",value=17,name="Damage",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Controlled Destruction",level=1},name="ExtraSupport",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["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability "}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["+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["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned "}c["+250 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=250,name="Accuracy",keywordFlags=0}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=4096}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "}c["40% increased Trap Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=4096}},nil}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["Socketed Gems are Supported by level 10 Knockback"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Knockback",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["12% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellDodgeChance",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["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield "}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"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum "}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["6% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=6,name="ManaRegenPercent",keywordFlags=0},[2]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=6,name="EnergyShieldRegenPercent",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["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["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["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["Projectiles Pierce an additional Target"]={{[1]={value=1,type="BASE",keywordFlags=0,name="PierceCount",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["625% increased Armour"]={{[1]={flags=0,type="INC",value=625,name="Armour",keywordFlags=0}},nil}c["+10 to maximum Life"]={{[1]={flags=0,type="BASE",value=10,name="Life",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["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["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["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["3% additional chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=3,name="AttackDodgeChance",keywordFlags=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["75% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=75,name="ProjectileSpeed",keywordFlags=0}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-40,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["You are cursed with Level 10 Vulnerability"]={{[1]={flags=0,type="LIST",value={level=10,name="Vulnerability",applyToPlayer=true},name="ExtraCurse",keywordFlags=0}},nil}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun "}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["+320 to Armour and Evasion Rating"]={{[1]={flags=0,type="BASE",value=320,name="ArmourAndEvasion",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["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=12,name="Accuracy",keywordFlags=0}},nil}c["50% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-50,name="Damage",keywordFlags=0}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "}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["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["33% increased Physical Damage"]={{[1]={flags=0,type="INC",value=33,name="PhysicalDamage",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["71 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=71,name="LifeRegen",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["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["14% increased Totem Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=16384}},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["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}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["-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["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=8192}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=75,name="LifeRegen",keywordFlags=0}},nil}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["+48 to Strength"]={{[1]={flags=0,type="BASE",value=48,name="Str",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["5% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill "}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["+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["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["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["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["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["+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% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",keywordFlags=0}},nil}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,type="LIST",value={level=12,name="Summon Stone Golem"},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["120% 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=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire "}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},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["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["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["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["18% increased Physical Damage"]={{[1]={flags=0,type="INC",value=18,name="PhysicalDamage",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["+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["24% increased Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="PhysicalDamage",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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage 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=0,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=0,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=0,name="EnergyShieldRecoveryRate",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned "}c["Enemies Ignited by an Attack Burn 35% faster"]={{[1]={flags=1,type="INC",value=35,name="IgniteBurnFaster",keywordFlags=0}},nil}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge "}c["Ranger: 7% increased Movement Speed"]={{[1]={[1]={type="Condition",var="ConnectedToRangerStart"},flags=0,type="INC",value=7,name="MovementSpeed",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["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["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown "}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["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["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy "}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["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",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["6% chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",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["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["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["100% increased Totem Duration"]={{[1]={flags=0,type="INC",value=100,name="TotemDuration",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["Elemental Hit deals 10% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Elemental Hit"},flags=0,type="INC",value=10,name="Damage",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["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["360% increased Physical Damage"]={{[1]={flags=0,type="INC",value=360,name="PhysicalDamage",keywordFlags=0}},nil}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes "}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["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["6% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=15,name="ElementalDamage",keywordFlags=65536}},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["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["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["40% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",keywordFlags=0}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,type="BASE",value=55,name="Mana",keywordFlags=0}},nil}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["20% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="EnergyShield",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["55% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=55,name="ManaRegen",keywordFlags=0}},nil}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["+5 to Strength"]={{[1]={flags=0,type="BASE",value=5,name="Str",keywordFlags=0}},nil}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["Counts as Dual Wielding"]={{[1]={value={key="countsAsDualWielding",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=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={name="Increased Area of Effect",level=20},name="ExtraSupport",keywordFlags=0}},nil}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={level=20,name="TriggeredBoneNova"},name="ExtraSkill",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["+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["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["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["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=65536}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["Adds 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["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["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Melee Physical Damage",level=18},name="ExtraSupport",keywordFlags=0}},nil}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={level=16,name="TriggeredMoltenStrike"},name="ExtraSkill",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["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["Grants Summon Harbinger of Directions Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="SummonHarbingerOfDirections"},name="ExtraSkill",keywordFlags=0}},nil}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["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["225% increased Physical Damage"]={{[1]={flags=0,type="INC",value=225,name="PhysicalDamage",keywordFlags=0}},nil}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike "}c["1% of Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="ManaRegenPercent",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["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["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="Damage",keywordFlags=8388608}},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["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["+300 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=300,name="IntRequirement",keywordFlags=0}},nil}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["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "}c["Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of "}c["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["16% increased Intelligence"]={{[1]={flags=0,type="INC",value=16,name="Int",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=20,name="Accuracy",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["+23 to Strength"]={{[1]={flags=0,type="BASE",value=23,name="Str",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["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["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalDamageGainAsFire",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["Your Curses can apply to Hexproof Enemies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CursesIgnoreHexproof",flags=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 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["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["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["+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["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["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=35,name="PhysicalDamageGainAsFire",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["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["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["15% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=15,name="EnemyChillEffect",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["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["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["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["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["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike "}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["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["15% reduced Accuracy Rating"]={{[1]={flags=0,type="INC",value=-15,name="Accuracy",keywordFlags=0}},nil}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="Lightning Warp"},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["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["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["Grants Summon Harbinger of Time Skill"]={{[1]={flags=0,type="LIST",value={level=1,name="SummonHarbingerOfTime"},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["110% increased Physical Damage"]={{[1]={flags=0,type="INC",value=110,name="PhysicalDamage",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["+6 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=6,name="LifeOnKill",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["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["+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["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["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["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["40% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+20 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",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 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["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["Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap and Mine Damage",level=16},name="ExtraSupport",keywordFlags=0}},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["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["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["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["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["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["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["4% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-4,name="ManaCost",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["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% 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["28% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}c["10% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["8% reduced Damage taken if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="INC",value=-8,name="DamageTaken",keywordFlags=0}},nil}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["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=4,name="Speed",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 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["30% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=30,name="PoisonChance",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["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=65536}},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["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["+50 to Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}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["Melee Attacks cause Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}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["+13% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=13,name="LightningResist",keywordFlags=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["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["10% chance of Arrows Piercing {variant:2}Arrows Pierce an additional Target"]={{}," of Arrows Piercing {variant:2}Arrows Pierce an additional Target "}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["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="ManaOnHit",keywordFlags=0}},nil}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-20,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=60,name="MineLayingSpeed",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["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["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["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["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["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["20% increased Arrow Speed"]={{[1]={flags=8192,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour "}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["Spells have an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=2}},nil}c["6% increased Attack Speed"]={{[1]={flags=1,type="INC",value=6,name="Speed",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["-20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-20,name="ElementalResist",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["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect "}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["20% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-20,name="LootRarity",keywordFlags=0}},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["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["+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["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["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["+75 to Intelligence"]={{[1]={flags=0,type="BASE",value=75,name="Int",keywordFlags=0}},nil}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "}c["+100 to Maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit Enemies you Taunt 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 you Taunt take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life "}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["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["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["25% increased Defences"]={{[1]={flags=0,type="INC",value=25,name="Defences",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={name="Lesser Multiple Projectiles",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% increased Movement Speed"]={{[1]={flags=0,type="INC",value=40,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Light Radius"]={{[1]={flags=0,type="INC",value=10,name="LightRadius",keywordFlags=0}},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["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["24% increased Armour"]={{[1]={flags=0,type="INC",value=24,name="Armour",keywordFlags=0}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-6,name="ManaCost",keywordFlags=0}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="ManaRegen",keywordFlags=0}},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["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% 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["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["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["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["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["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["+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["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["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy "}c["150% increased Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EnergyShield",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["Socketed Gems are Supported by level 16 Increased Minion Speed"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Minion Speed",level=16},name="ExtraSupport",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["70% increased Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="EnergyShield",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 Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,type="INC",value=20,name="Speed",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 Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,type="INC",value=20,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 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["270% increased Physical Damage"]={{[1]={flags=0,type="INC",value=270,name="PhysicalDamage",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["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["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["100% increased Mine Arming Speed"]={{}," Arming Speed "}c["16% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=16,name="Damage",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["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["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["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 are Supported by level 20 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Totem",level=20},name="ExtraSupport",keywordFlags=0}},nil}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["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=0,type="BASE",value=75,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=225,name="LightningMax",keywordFlags=131072}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=25,name="LifeOnHit",keywordFlags=0}},nil}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["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["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["+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["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["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["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you "}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["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["+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["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FirePenetration",keywordFlags=0}},nil}c["13% chance to Ignite"]={{[1]={flags=0,type="BASE",value=13,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Golems have 13% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you "}c["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["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["Socketed Gems are Supported by level 30 Spell Echo"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Echo",level=30},name="ExtraSupport",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["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["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["25% increased Area of Effect while you have Arcane Surge 0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}}," while you have Arcane Surge 0.5% of Damage Leeched as Life while you have Arcane Surge "}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",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["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "}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["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["20% increased Cold Damage"]={{[1]={flags=0,type="INC",value=20,name="ColdDamage",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 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",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["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["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["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["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["40% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=40,name="ManaReserved",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["+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["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["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["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["45% increased Physical Damage"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamage",keywordFlags=0}},nil}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy "}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["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["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["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality "}c["+18% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",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["+280 to Armour"]={{[1]={flags=0,type="BASE",value=280,name="Armour",keywordFlags=0}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=325,name="Accuracy",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["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill "}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["35% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=35,name="ManaRegen",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["Celestial Footprints"]={nil,"Celestial Footprints "}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["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=25,name="ElementalDamage",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["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=16384}},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=35,name="StunRecovery",keywordFlags=0}},nil}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["+7% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",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["8% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=8,name="ElementalDamage",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["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=196608},[2]={flags=0,type="BASE",value=40,name="FireMax",keywordFlags=196608}},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["+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["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["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["+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["10% increased Area Damage"]={{[1]={flags=512,type="INC",value=10,name="Damage",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["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["220% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EvasionAndEnergyShield",keywordFlags=0}},nil}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["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["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["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["28% increased Cold Damage"]={{[1]={flags=0,type="INC",value=28,name="ColdDamage",keywordFlags=0}},nil}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["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsLightning",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["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["50% reduced Duration"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}},nil}c["11% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=11,name="LootRarity",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["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["+85 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=85,name="EnergyShield",keywordFlags=0}},nil}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["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["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers "}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["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["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["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["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-18,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "}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["45% increased Cold Damage"]={{[1]={flags=0,type="INC",value=45,name="ColdDamage",keywordFlags=0}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=8,name="LightningResist",keywordFlags=0}},nil}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage "}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["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["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["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["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=99,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}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["70% increased Burning Damage"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=8388608}},nil}c["20% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["29% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-29,name="CurseEffect",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["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["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["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 Trap Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=4096}},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["Socketed Gems are Supported by level 5 Cold to Fire"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Cold to Fire",level=5},name="ExtraSupport",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["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={name="Lesser Poison",level=10},name="ExtraSupport",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["10% reduced Character Size"]={{}," Character Size "}c["6% increased Armour"]={{[1]={flags=0,type="INC",value=6,name="Armour",keywordFlags=0}},nil}c["160% increased Spell Damage"]={{[1]={flags=2,type="INC",value=160,name="Damage",keywordFlags=0}},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 140 to 225 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=140,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=225,name="FireMax",keywordFlags=131072}},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["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["Grants level 15 Vengeance Skill"]={{[1]={flags=0,type="LIST",value={level=15,name="Vengeance"},name="ExtraSkill",keywordFlags=0}},nil}c["+20% chance to be Pierced by Projectiles {variant:2}Projectiles Pierce you"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by {variant:2}Projectiles Pierce you "}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["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["4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegenPercent",keywordFlags=0}},nil}c["Summoned Skeletons take 23.4% 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.234,name="FireDegen",keywordFlags=0}},name="MinionModifier",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["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["50% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-50,name="Speed",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% 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["6% Chance to Block"]={{[1]={flags=0,type="BASE",value=6,name="BlockChance",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 8 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap",level=8},name="ExtraSupport",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 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["25% increased Poison Duration"]={{[1]={flags=0,type="INC",value=25,name="EnemyPoisonDuration",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["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["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}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["20% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockEffect",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["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["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["15% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["Socketed Gems are supported by level 10 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Life Leech",level=10},name="ExtraSupport",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["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a Flask "}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["Lose 33.5 Mana per Second"]={{[1]={flags=0,type="BASE",value=33.5,name="ManaDegen",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["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["19% increased maximum Mana"]={{[1]={flags=0,type="INC",value=19,name="Mana",keywordFlags=0}},nil}c["70% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=70,name="ChaosDamage",keywordFlags=0}},nil}c["25% more Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=25,name="Damage",keywordFlags=2097152}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower "}c["+60 to Intelligence"]={{[1]={flags=0,type="BASE",value=60,name="Int",keywordFlags=0}},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["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion "}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["Socketed Gems are Supported by level 10 Remote Mine"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Remote Mine",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["Trigger level 20 Storm Cascade when you Attack"]={{[1]={flags=0,type="LIST",value={level=20,name="StormCascadeTriggered"},name="ExtraSkill",keywordFlags=0}},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["160% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+2 to Maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=2,name="ActiveZombieLimit",keywordFlags=0}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item "}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={name="Minion Life",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["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["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["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 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["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.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "}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["+70 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=70,name="EnergyShield",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["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground "}c["70% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=2097152}},nil}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["40% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-40,name="CurseEffectOnSelf",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["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion "}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["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You "}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=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["17% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=17,name="LootQuantity",keywordFlags=0}},nil}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["+220 to Armour"]={{[1]={flags=0,type="BASE",value=220,name="Armour",keywordFlags=0}},nil}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["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["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["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["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["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant "}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["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["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire "}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["4% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=4,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["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["+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["70% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEvasion",keywordFlags=0}},nil}c["20% increased Burning Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8388608}},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["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground "}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["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["12% increased Burning Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=8388608}},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["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["+120 to maximum Mana"]={{[1]={flags=0,type="BASE",value=120,name="Mana",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={name="Faster Attacks",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["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["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["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["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["23% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=23,name="BlockChanceConv",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["You have Fortify"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Fortify",flags=0}},nil}c["25% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=25,name="BlockChanceConv",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["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["5% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=5,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Vile Toxins",level=20},name="ExtraSupport",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["Recover 2% of Maximum Life on Kill"]={nil,"Recover 2% of Maximum Life on Kill "}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["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["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["17% increased Strength"]={{[1]={flags=0,type="INC",value=17,name="Str",keywordFlags=0}},nil}c["20% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=16,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["30% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["Socketed Gems are Supported by level 11 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap",level=11},name="ExtraSupport",keywordFlags=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["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["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["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["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}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["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["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 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["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=16,name="SpellDodgeChance",keywordFlags=0}},nil}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "}c["8% chance to Ignite"]={{[1]={flags=0,type="BASE",value=8,name="EnemyIgniteChance",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["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["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["65% increased Armour"]={{[1]={flags=0,type="INC",value=65,name="Armour",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["+26% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=26,name="LightningResist",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["+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["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["Adds 25 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}},nil}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["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "}c["10% increased Fortify duration"]={{[1]={flags=0,type="INC",value=10,name="FortifyDuration",keywordFlags=0}},nil}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["Cannot Be Slowed to Below Base Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=0}},nil}c["+150 to maximum Life"]={{[1]={flags=0,type="BASE",value=150,name="Life",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["8% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=8,name="AvoidStun",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["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["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding "}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Elemental Proliferation",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["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["+100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=100,name="Accuracy",keywordFlags=0}},nil}c["12% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="Damage",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["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["16% increased Area of Effect"]={{[1]={flags=0,type="INC",value=16,name="AreaOfEffect",keywordFlags=0}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted "}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["+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["30% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=30,name="ManaLeechRate",keywordFlags=0}},nil}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% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place a Totem"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place a "}c["33% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=33,name="ChaosDamage",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["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["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["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["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["+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["Uses both hand slots"]={nil,"Uses both hand slots "}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["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["15% more Damage over Time"]={{[1]={flags=8,type="MORE",value=15,name="Damage",keywordFlags=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["110% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EvasionAndEnergyShield",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 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["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 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["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,type="LIST",value={level=10,name="Purity of Elements"},name="ExtraSkill",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["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,type="LIST",value={level=20,name="MerveilWarp"},name="ExtraSkill",keywordFlags=0}},nil}c["+200 to maximum Life"]={{[1]={flags=0,type="BASE",value=200,name="Life",keywordFlags=0}},nil}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["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["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["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,type="INC",value=3,name="Int",keywordFlags=0}}," Character Size 6% increased "}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=24,name="CritMultiplier",keywordFlags=0}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="FrenzyChargesDuration",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["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["2% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=2,name="Speed",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={name="Cast when Stunned",level=10},name="ExtraSupport",keywordFlags=0}},nil}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["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["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Chaos Damage",level=10},name="ExtraSupport",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["28% increased Fire Damage"]={{[1]={flags=0,type="INC",value=28,name="FireDamage",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["35% increased Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["+145 to maximum Life"]={{[1]={flags=0,type="BASE",value=145,name="Life",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["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% 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["+120 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=120,name="Accuracy",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["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["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["35% increased Damage over Time"]={{[1]={flags=8,type="INC",value=35,name="Damage",keywordFlags=0}},nil}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["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["12% increased Damage over Time"]={{[1]={flags=8,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,type="INC",value=18,name="Speed",keywordFlags=0}},nil}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["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,type="INC",value=30,name="CritChance",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["1% of maximum Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill "}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="CritChance",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["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["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["8% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={{}," to gain an Endurance Charge when you Stun an Enemy "}c["5% increased Physical Damage"]={{[1]={flags=0,type="INC",value=5,name="PhysicalDamage",keywordFlags=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["10% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=10,name="Damage",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["+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["4% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=4,name="MineLayingSpeed",keywordFlags=0}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",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["4% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=4,name="Speed",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["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["10% increased Cold Damage"]={{[1]={flags=0,type="INC",value=10,name="ColdDamage",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["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["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["+24% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=24,name="ElementalResist",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["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["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["+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["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["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={level=20,name="TriggeredIcicleNova"},name="ExtraSkill",keywordFlags=0}},nil}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges "}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["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["+18% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,type="INC",value=13,name="Speed",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["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["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["+20 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",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["35% increased maximum Life"]={{[1]={flags=0,type="INC",value=35,name="Life",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["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["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["135% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=135,name="Evasion",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["Unwavering Stance"]={{[1]={value="Unwavering Stance",type="LIST",keywordFlags=0,name="Keystone",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["Socketed Gems are Supported by level 18 Added Lightning Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Lightning Damage",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["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["+12% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=12,name="LightningResist",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["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["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["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["6% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=6,name="AuraEffect",keywordFlags=0}},nil}c["Rquires Level 64 60% increased Spell Damage"]={nil,"Rquires Level 64 60% increased Spell Damage "}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=20,name="Damage",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["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["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit "}c["10% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},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["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["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["60 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=60,name="LifeRegen",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["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["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["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["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["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 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["+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["30% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["10% increased Area of Effect for Traps"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=4096}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=20,name="Evasion",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["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=8192,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=25,name="CritMultiplier",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["+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["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["75% increased Charges used"]={{[1]={flags=0,type="INC",value=75,name="FlaskChargesUsed",keywordFlags=0}},nil}c["8% increased Dexterity"]={{[1]={flags=0,type="INC",value=8,name="Dex",keywordFlags=0}},nil}c["You have Onslaught while not on Low Mana"]={{[1]={[1]={type="Condition",var="LowMana"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=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["15% reduced Flask Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}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["+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["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["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["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["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["Removes all but one Life on use"]={nil,"Removes all but one Life on use "}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["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% 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["+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["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["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["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life "}c["30% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{[1]={flags=0,type="BASE",value=30,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds "}c["Movement Skills cost no Mana"]={{[1]={value=-100,type="MORE",keywordFlags=8,name="ManaCost",flags=0}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=100,name="ManaCost",keywordFlags=0}},nil}c["+150 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=150,name="Accuracy",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["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["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["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["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["4% increased maximum Mana"]={{[1]={flags=0,type="INC",value=4,name="Mana",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block "}c["14% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=14,name="Evasion",keywordFlags=0}},nil}c["10% increased Damage taken"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",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["14% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=14,name="LootQuantity",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["+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["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["30% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{[1]={flags=0,type="BASE",value=30,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "}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["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["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["20% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="LifeRecoveryRate",keywordFlags=0}},nil}c["40% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=40,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% increased Strength"]={{[1]={flags=0,type="INC",value=10,name="Str",keywordFlags=0}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun "}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["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=12,name="CritMultiplier",keywordFlags=0}},nil}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blasphemy",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["15% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",keywordFlags=0}},nil}c["+67 to maximum Life"]={{[1]={flags=0,type="BASE",value=67,name="Life",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["118% increased Physical Damage"]={{[1]={flags=0,type="INC",value=118,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=4096}},nil}c["Cannot Leech Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=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["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds "}c["+460 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=460,name="Accuracy",keywordFlags=0}},nil}c["10% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesGained",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["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["15% chance to Ignite"]={{[1]={flags=0,type="BASE",value=15,name="EnemyIgniteChance",keywordFlags=0}},nil}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=40,name="ManaRegen",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["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["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["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["Your Hits have 25% chance to gain 25% of Non-Chaos Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=6.25,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite"]={nil,"Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite "}c["6% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=6,name="EnergyShield",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["15% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=15,name="LightningDamage",keywordFlags=0}},nil}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["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% 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["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["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["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["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 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["8% increased Armour"]={{[1]={flags=0,type="INC",value=8,name="Armour",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["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["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["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["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=6,name="ElementalPenetration",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 Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["30% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=1048576}},nil}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["Attacks with this Weapon deal 90 to 180 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=90},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",keywordFlags=262144,name="PhysicalMax",value=180}},nil}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["7% increased Movement Speed"]={{[1]={flags=0,type="INC",value=7,name="MovementSpeed",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["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}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["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back "}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Chaos Damage",level=15},name="ExtraSupport",keywordFlags=0}},nil}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine "}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 Chaos Damage"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",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["+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["5% increased Intelligence"]={{[1]={flags=0,type="INC",value=5,name="Int",keywordFlags=0}},nil}c["30% chance to create Consecrated Ground when Hit, lasting 8 seconds"]={{}," to create Consecrated Ground when Hit, lasting 8 seconds "}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["Damage Penetrates 6% Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdPenetration",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["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=15,name="ElementalDamage",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["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["-5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-5,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=15,name="TotemPlacementSpeed",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["20% increased Armour"]={{[1]={flags=0,type="INC",value=20,name="Armour",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["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["Gain 5% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["Immune to Elemental Ailments during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect "}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-6,name="ManaCost",keywordFlags=0}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,type="INC",value=20,name="TotemDuration",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["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["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["If you have 3 Primordial Jewels, can Summon up to 1 additional Golem at a time"]={{[1]={[1]={type="MultiplierThreshold",threshold=3,var="PrimordialJewel"},flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies "}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=16384}},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["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["Totems Reflect 15% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to "}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["+100 to Strength"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0}},nil}c["10% increased Armour"]={{[1]={flags=0,type="INC",value=10,name="Armour",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["You and Allies deal 30% increased Damage while affected by Auras you Cast"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},name="AffectedByAuraMod",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["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use "}c["With at least 40 Strength in Radius, Ground Slam has a 35% 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 35% 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["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["8 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=8,name="LifeRegen",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["25% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,type="INC",value=16,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["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["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "}c["+65 to maximum Mana"]={{[1]={flags=0,type="BASE",value=65,name="Mana",keywordFlags=0}},nil}c["5% increased Damage taken"]={{[1]={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},nil}c["35% increased Fire Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",keywordFlags=0}},nil}c["15% increased Fire Damage"]={{[1]={flags=0,type="INC",value=15,name="FireDamage",keywordFlags=0}},nil}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["+10 to Strength"]={{[1]={flags=0,type="BASE",value=10,name="Str",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["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["13% increased Cold Damage"]={{[1]={flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=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["Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",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["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["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["22% increased Fire Damage"]={{[1]={flags=0,type="INC",value=22,name="FireDamage",keywordFlags=0}},nil}c["13% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-13,name="Mana",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["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["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["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["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice "}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["180% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["4% additional chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},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["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies "}c["10% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShield",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["+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["1% additional Block Chance for each Hit you've Blocked in the past 10 seconds"]={{[1]={flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}}," for each Hit you've Blocked in the past 10 seconds "}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["+50 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=50,name="Evasion",keywordFlags=0}},nil}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["+18% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ElementalResist",keywordFlags=0}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=65536}}," while you have a Beastial Minion "}c["15% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=15,name="ProjectileSpeed",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["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["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["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["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-15,name="EnemyStunThreshold",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["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["Blood Magic"]={{[1]={value="Blood Magic",type="LIST",keywordFlags=0,name="Keystone",flags=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["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["+30% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},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["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["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["50% additional Block Chance for 2 seconds every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,type="BASE",value=50,name="BlockChance",keywordFlags=0}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootQuantity",keywordFlags=0}},nil}c["+15% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=15,name="LightningResist",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["180% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=180,name="Evasion",keywordFlags=0}},nil}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["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["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["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["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["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["You can inflict Bleeding on an Enemy up to 8 times"]={nil,"You can inflict Bleeding on an Enemy up to 8 times "}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["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["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill "}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["24% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=8}},nil}c["30% increased maximum Mana"]={{[1]={flags=0,type="INC",value=30,name="Mana",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["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="ColdPenetration",keywordFlags=0}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",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["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}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["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["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["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["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["5% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel further, 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 further, dealing up\nto 50% increased Damage with Hits to targets "}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["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["100 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}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["15% reduced Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",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["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["50% reduced Experience gain"]={{}," Experience gain "}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["10% more Damage"]={{[1]={flags=0,type="MORE",value=10,name="Damage",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["+10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",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["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["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["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["Never deal Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NeverCrit",flags=0}},nil}c["50% chance to gain a Power Charge when you place a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge when you place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["190% increased Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="EnergyShield",keywordFlags=0}},nil}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["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["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["50% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["15% chance to Shock"]={{[1]={flags=0,type="BASE",value=15,name="EnemyShockChance",keywordFlags=0}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-50,name="FireResist",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["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["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["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=8192}},nil}c["220% increased Armour"]={{[1]={flags=0,type="INC",value=220,name="Armour",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["650% increased Armour"]={{[1]={flags=0,type="INC",value=650,name="Armour",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["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 "}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["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["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["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["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=0,type="INC",value=130,name="CritChance",keywordFlags=262144}},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["10% increased Scorching Ray beam length"]={{},"beam length "}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells "}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill "}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["Recover 4% of Maximum Mana on Kill"]={nil,"Recover 4% of Maximum Mana on Kill "}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["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["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["Adds 1 to 51 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=51,name="LightningMax",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["24% increased Trap Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=4096}},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["+12% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=12,name="CritMultiplier",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["20% increased Mine Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8192}},nil}c["+10 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",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["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},[3]={type="StatThreshold",stat="PierceCount",threshold=1},flags=0,type="INC",keywordFlags=786432,name="Damage",value=50}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes "}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["50% less Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=-50,name="Damage",keywordFlags=2097152}},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["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={{}," to gain a Power,or Endurance Charge on Hit "}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["Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Added Cold Damage",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=26,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["+175 to maximum Life"]={{[1]={flags=0,type="BASE",value=175,name="Life",keywordFlags=0}},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["40% increased Mine Detonation Area of Effect"]={{[1]={flags=0,type="INC",value=40,name="MineDetonationAreaOfEffect",keywordFlags=0}},nil}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances "}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["110% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=110,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["25% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyStunDuration",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["+14 to maximum Mana"]={{[1]={flags=0,type="BASE",value=14,name="Mana",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["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["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["13% increased Area Damage"]={{[1]={flags=512,type="INC",value=13,name="Damage",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["+12 to maximum Life"]={{[1]={flags=0,type="BASE",value=12,name="Life",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["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["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["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["+80 to Armour"]={{[1]={flags=0,type="BASE",value=80,name="Armour",keywordFlags=0}},nil}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{[1]={flags=0,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["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["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=10,name="BleedChance",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["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["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["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["Grants level 20 Summon Beastial Rhoa Skill"]={nil,nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",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]={[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["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["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["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["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+3% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=3,name="ElementalResist",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["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["+20 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=20,name="Accuracy",keywordFlags=0}},nil}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=16}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamage",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["60% increased Physical Damage"]={{[1]={flags=0,type="INC",value=60,name="PhysicalDamage",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["3% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=3,name="Speed",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["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["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["10% increased Spell Damage"]={{[1]={flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}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["Bow Attacks have 15% chance to cause Bleeding"]={{[1]={flags=8193,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=700,name="PhysicalDamage",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["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["25% increased Area of Effect while you have Arcane Surge 0.5% of Spell Damage Leeched as Life while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}}," while you have Arcane Surge 0.5% of Damage Leeched as Life while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge "}c["50% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",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["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["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use "}c["+30 to Maximum Mana"]={{[1]={flags=0,type="BASE",value=30,name="Mana",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 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["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,type="LIST",value={level=15,name="BloodOffering"},name="ExtraSkill",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={name="Cold to Fire",level=30},name="ExtraSupport",keywordFlags=0}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ChaosResist",keywordFlags=0}},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["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["+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["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["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses "}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,type="MORE",value=40,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}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["+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["5% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=5,name="AuraEffect",keywordFlags=0}},nil}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}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["+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["30% increased Mine Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=8192}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}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["25% increased Cold Damage"]={{[1]={flags=0,type="INC",value=25,name="ColdDamage",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["35% increased Burning Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=8388608}},nil}c["+20 to Dexterity"]={{[1]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=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["Your Lightning Damage can Poison"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanPoison",flags=0}},nil}c["70 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=70,name="LifeRegen",keywordFlags=0}},nil}c["10% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="PhysicalDamage",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["10% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",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["18% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=18,name="EnemyChillEffect",keywordFlags=0}},nil}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["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=12,name="CritMultiplier",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["8% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill "}c["80% increased Curse Duration"]={{[1]={flags=0,type="INC",value=80,name="Duration",keywordFlags=2}},nil}c["+75% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=75,name="ColdResist",keywordFlags=0}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootRarity",keywordFlags=0}},nil}c["10% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}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["15% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=15,name="Evasion",keywordFlags=0}},nil}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked "}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["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["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,type="INC",value=14,name="Damage",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["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 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["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["+25% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning "}c["Adds 55 to 75 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=55,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=75,name="ColdMax",keywordFlags=65536}},nil}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["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["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage "}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}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["+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["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "}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["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "}c["Can Allocate Passives from the Duelist's starting point"]={{},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["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect "}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["25% increased Mine Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8192}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,type="INC",value=8,name="FireDamage",keywordFlags=0}},nil}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["50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill "}c["10% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=10,name="EnemyShockEffect",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["15% increased Cold Damage"]={{[1]={flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["18% increased Strength"]={{[1]={flags=0,type="INC",value=18,name="Str",keywordFlags=0}},nil}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["15% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=15,name="EnduranceChargesDuration",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["Grants level 20 Summon Beastial Rhoa Skill {variant:2}Grants level 20 Summon Beastial Snake Skill"]={nil,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["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["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=150,name="CritChance",keywordFlags=0}},nil}c["50% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=1048576}},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["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["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["20% increased Trap Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=4096}},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["Gain 10% of Wand Physical Damage as Extra Fire Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsFire",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["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["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["6% increased maximum Life"]={{[1]={flags=0,type="INC",value=6,name="Life",keywordFlags=0}},nil}c["+76 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=76,name="EnergyShield",keywordFlags=0}},nil}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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud 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["10% chance to Poison on Hit with Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=65536}},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["30% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-30,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",keywordFlags=0}},nil}c["-10 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-10,name="ChaosDamageTaken",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["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["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["90% increased Charges used"]={{[1]={flags=0,type="INC",value=90,name="FlaskChargesUsed",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["20% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=43,name="ManaRegen",keywordFlags=0}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,type="INC",value=6,name="Mana",keywordFlags=0}},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["Damage Penetrates 5% Cold Resistance"]={{[1]={flags=0,type="BASE",value=5,name="ColdPenetration",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 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["+50 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=50,name="EnergyShield",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["+100 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="LifeOnKill",keywordFlags=0}},nil}c["+225 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=225,name="Accuracy",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["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["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["+4% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=4,name="BlockChanceMax",keywordFlags=0}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=40,name="LootRarity",keywordFlags=0}},nil}c["100% increased Armour"]={{[1]={flags=0,type="INC",value=100,name="Armour",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["100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillName="Blink Arrow"},flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=0},[2]={[1]={type="SkillName",skillName="Mirror Arrow"},flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=0}},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["18% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=18,name="CurseEffect",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["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use "}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["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["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion "}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 Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use "}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["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of "}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["10% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 20 Animate Guardian's when Animated Weapon Kills an Enemy "}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["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}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["+25 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}},nil}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={{[1]={flags=0,type="LIST",value={level=30,name="Poacher's Mark",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["Culling Strike 20% increased Damage while Leeching"]={nil,"Culling Strike 20% increased Damage while Leeching "}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used "}c["12% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=4096}},nil}c["+25 to Intelligence"]={{[1]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}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["Strength provides no bonus to Maximum Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoStrBonusToLife",flags=0}},nil}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["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["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=16,name="PhysicalDamage",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["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["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["5% increased Experience gain"]={{}," Experience gain "}c["+45 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=45,name="Evasion",keywordFlags=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["+15 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",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["10% increased Physical Damage"]={{[1]={flags=0,type="INC",value=10,name="PhysicalDamage",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["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:CanGainAdrenaline",flags=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["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={{[1]={flags=0,type="LIST",value={level=20,name="OnHitWhileCursedTriggeredCurseNova"},name="ExtraSkill",keywordFlags=0}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges "}c["25% increased Movement Speed"]={{[1]={flags=0,type="INC",value=25,name="MovementSpeed",keywordFlags=0}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,type="MORE",value=-50,name="ManaReserved",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["began Recently"]={nil,"began Recently "}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}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["+144 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=144,name="EnergyShield",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["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["Primordial"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:PrimordialJewel",flags=0}},nil}c["15% increased Totem Life"]={{[1]={flags=0,type="INC",value=15,name="TotemLife",keywordFlags=0}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,type="INC",value=13,name="MovementSpeed",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["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["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=25,name="PhysicalDamage",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 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["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use "}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["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,type="LIST",value={level=10,name="VoidGaze"},name="ExtraSkill",keywordFlags=0}},nil}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="LIST",value={name="Despair",level=21},name="ExtraCurse",keywordFlags=0}},nil}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["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["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,type="LIST",value={level=10,name="Assassin's Mark",noSupports=true},name="ExtraSkill",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 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["33% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=33,name="ElementalDamage",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["5% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["50% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=50,name="Damage",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["24% increased Fire Damage"]={{[1]={flags=0,type="INC",value=24,name="FireDamage",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["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["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["16% increased Totem Life"]={{[1]={flags=0,type="INC",value=16,name="TotemLife",keywordFlags=0}},nil}c["18% increased Fire Damage"]={{[1]={flags=0,type="INC",value=18,name="FireDamage",keywordFlags=0}},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["10% increased Mine Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=8192}},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["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["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["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["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% chance to gain a Frenzy Charge and a Power Charge on Kill"]={{}," to gain aCharge and a Power Charge on Kill "}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["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,type="INC",value=15,name="Mana",keywordFlags=0}},nil}c["100% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=100,name="OnslaughtEffect",keywordFlags=0}},nil}c["+50 to maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",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["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["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["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Mana",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["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["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["24% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=4096}},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["+33 to maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",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["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["40% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyStunDuration",keywordFlags=0}},nil}c["+35 to Dexterity"]={{[1]={flags=0,type="BASE",value=35,name="Dex",keywordFlags=0}},nil}c["+160 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=160,name="EnergyShield",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["10% less Mana Reservation of Skills"]={{[1]={flags=0,type="MORE",value=-10,name="ManaReserved",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["420% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=420,name="Evasion",keywordFlags=0}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=4,name="Speed",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["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["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["+400 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=400,name="Accuracy",keywordFlags=0}},nil}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 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["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies "}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["Hits with this Weapon deal 46% 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=46}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",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["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["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% chance to be Pierced by Projectiles"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by "}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["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["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=5,name="BleedChance",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["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage "}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["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["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["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=15,name="BleedChance",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["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel further, 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 further, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill "}c["30% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=30,name="Damage",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["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["4% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["3% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-40,name="LootRarity",keywordFlags=0}},nil}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["9% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",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["15% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=15,name="Speed",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["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["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy "}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="EnduranceChargesDuration",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["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,type="LIST",value={level=20,name="TentacleSmash"},name="ExtraSkill",keywordFlags=0}},nil}c["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect "}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["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["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["22% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=22,name="PhysicalDamage",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["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["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% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=0,type="INC",value=6,name="Damage",keywordFlags=8388608}}," for each Enemy you have Shocked Recently "}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["+30 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="ManaOnKill",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["20% increased Physical Damage"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["+15 to maximum Mana"]={{[1]={flags=0,type="BASE",value=15,name="Mana",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["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["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["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["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=30,name="CritMultiplier",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 Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells"]={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 Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells "}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["10% chance that if you would gain a Crab Barrier, you instead gain up to"]={{}," that if you would gain a Crab Barrier, you instead gain up to "}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{[1]={flags=0,type="BASE",value=10,name="CrabBarriersMax",keywordFlags=0}}," that if you would gain a Crab Barrier, you instead gain up to your "}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=8192}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=35,name="LightningResist",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["165% increased Armour"]={{[1]={flags=0,type="INC",value=165,name="Armour",keywordFlags=0}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",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["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["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["Flasks gain 3 Charges every 3 seconds"]={nil,"Flasks gain 3 Charges every 3 seconds "}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["8% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,type="INC",value=60,name="FireDamage",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["130% increased Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EnergyShield",keywordFlags=0}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy "}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["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "}c["+20% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ChaosResist",keywordFlags=0}},nil}c["+40 to maximum Mana"]={{[1]={flags=0,type="BASE",value=40,name="Mana",keywordFlags=0}},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["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["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["+350 to Armour"]={{[1]={flags=0,type="BASE",value=350,name="Armour",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["+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["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["14% increased Melee Damage"]={{[1]={flags=256,type="INC",value=14,name="Damage",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["+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["Cannot be Frozen"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=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["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["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ElementalDamage",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["+30% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}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["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["+50 to Intelligence"]={{[1]={flags=0,type="BASE",value=50,name="Int",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["50% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEvasion",keywordFlags=0}},nil}c["50% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=50,name="BlockChanceConv",keywordFlags=0}},nil}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you "}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["Nearby Enemies have 100% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 100% reduced Life Regeneration rate "}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["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["31% increased Spell Damage"]={{[1]={flags=2,type="INC",value=31,name="Damage",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["Unaffected by Temporal Chains"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["90% increased Armour"]={{[1]={flags=0,type="INC",value=90,name="Armour",keywordFlags=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["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskManaRecovery",keywordFlags=0}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,type="INC",value=190,name="PhysicalDamage",keywordFlags=0}},nil}c["18% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=18,name="PhysicalDamage",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["+10% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalResist",keywordFlags=0}},nil}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,type="LIST",value={level=15,name="UniqueAnimateWeapon"},name="ExtraSkill",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 16 Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Trap",level=16},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["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["Effects granted for having Rage are Doubled"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:RageEffect",flags=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["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="BleedChance",keywordFlags=0}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=25,name="PhysicalDamage",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["12% increased Armour"]={{[1]={flags=0,type="INC",value=12,name="Armour",keywordFlags=0}},nil}c["+46 to maximum Life"]={{[1]={flags=0,type="BASE",value=46,name="Life",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["25% increased Knockback Distance"]={{[1]={flags=0,type="INC",value=25,name="EnemyKnockbackDistance",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={name="Added Chaos Damage",level=15},name="ExtraSupport",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["135% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=135,name="ArmourAndEvasion",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["25% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=25,name="EnemyShockEffect",keywordFlags=0}},nil}c["350% increased Armour"]={{[1]={flags=0,type="INC",value=350,name="Armour",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["+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% 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["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["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["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["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["50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}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["+55 to maximum Life"]={{[1]={flags=0,type="BASE",value=55,name="Life",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["18% Chance to Block"]={{[1]={flags=0,type="BASE",value=18,name="BlockChance",keywordFlags=0}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Unknown",level=16},name="ExtraSupport",keywordFlags=0}},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["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["+50 to Strength"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=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["70% increased Physical Damage"]={{[1]={flags=0,type="INC",value=70,name="PhysicalDamage",keywordFlags=0}},nil}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["+15 to Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="Dex",keywordFlags=0}},nil}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["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["Your Chaos Damage has 60% chance to Poison Enemies"]={{[1]={flags=0,type="BASE",value=60,name="ChaosPoisonChance",keywordFlags=0}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}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["Damage Penetrates 5% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=5,name="LightningPenetration",keywordFlags=0}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["Gain a Void Charge every second"]={nil,"Gain a Void Charge every second "}c["10% reduced Damage taken from Blinded Enemies"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies "}c["12% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",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["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["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["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["5 Maximum Void Charges Gain a Void Charge every second"]={nil,"5 Maximum Void Charges Gain a Void Charge every second "}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["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["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["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["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["+26 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=26,name="LifeOnKill",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["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=800,name="Armour",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["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["120% increased Physical Damage"]={{[1]={flags=0,type="INC",value=120,name="PhysicalDamage",keywordFlags=0}},nil}c["20% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-20,name="MovementSpeed",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["5% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-5,name="ManaCost",keywordFlags=0}},nil}c["25% increased Burning Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8388608}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you "}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["50% chance to gain a Power Charge when you place a Totem"]={{}," to gain a Power Charge when you place a "}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=30,name="ManaRegen",keywordFlags=0}},nil}c["60% increased Block Recovery"]={{[1]={flags=0,type="INC",value=60,name="BlockRecovery",keywordFlags=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["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["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["5% reduced Damage taken"]={{[1]={flags=0,type="INC",value=-5,name="DamageTaken",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["15% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootRarity",keywordFlags=0}},nil}c["20% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-20,name="LightRadius",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["145% increased Physical Damage"]={{[1]={flags=0,type="INC",value=145,name="PhysicalDamage",keywordFlags=0}},nil}c["3% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["30% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=0}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,type="INC",value=310,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=128}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,type="INC",value=75,name="PhysicalDamage",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 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["30% increased Fire Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",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["Rquires Level 64"]={nil,"Rquires Level 64 "}c["50% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}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["+60 to Strength"]={{[1]={flags=0,type="BASE",value=60,name="Str",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["+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["+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["+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["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill "}c["150% increased Armour"]={{[1]={flags=0,type="INC",value=150,name="Armour",keywordFlags=0}},nil}c["25% increased Light Radius"]={{[1]={flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=60,name="ChaosResist",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["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["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["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["20% increased Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",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 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["+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["+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["Cannot take Reflected Physical Damage"]={nil,"Cannot take Reflected Physical Damage "}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["15% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["225% increased Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EnergyShield",keywordFlags=0}},nil}c["20% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-20,name="StrRequirement",keywordFlags=0}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=13,name="FlaskRecoveryRate",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["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=24,name="LootQuantity",keywordFlags=0}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=263,name="EvasionAndEnergyShield",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 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["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike "}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["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["8% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=8,name="Speed",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["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["40% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-40,name="LightRadius",keywordFlags=0}},nil}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=10,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=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["60% chance to Poison on Hit during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=60,name="PoisonChance",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["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=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["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["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["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["+2 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",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["20% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=-20,name="Duration",keywordFlags=0}},nil}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["14% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["5% increased Dexterity"]={{[1]={flags=0,type="INC",value=5,name="Dex",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["18% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=18,name="EnergyShield",keywordFlags=0}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=32,name="EnergyShield",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["90% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=90,name="ChaosDamage",keywordFlags=0}},nil}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["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block "}c["12% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=12,name="ChaosDamage",keywordFlags=0}},nil}c["Has 1 Abyssal Socket"]={{[1]={flags=0,type="BASE",value=1,name="AbyssalSocketCount",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["15% increased Mine Duration"]={{[1]={flags=0,type="INC",value=15,name="MineDuration",keywordFlags=0}},nil}c["80% less Burning Damage"]={{[1]={flags=0,type="MORE",value=-80,name="Damage",keywordFlags=8388608}},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["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["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["Your hits can't be Evaded"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=0}},nil}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Faster Casting",level=18},name="ExtraSupport",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["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["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds "}c["30% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use "}c["160% increased Armour"]={{[1]={flags=0,type="INC",value=160,name="Armour",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["10% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=1048576}},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["+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["15% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=2}},nil}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,type="LIST",value={level=20,name="CrabAspect"},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["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["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["13% increased Light Radius"]={{[1]={flags=0,type="INC",value=13,name="LightRadius",keywordFlags=0}},nil}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["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["+120 to maximum Life"]={{[1]={flags=0,type="BASE",value=120,name="Life",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}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["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill "}c["Enemies you Taunt 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["4% additional Block Chance"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,type="INC",value=15,name="Accuracy",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["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["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["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned "}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["65% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="ArmourAndEnergyShield",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["Instant Recovery"]={{[1]={value=100,type="BASE",keywordFlags=0,name="FlaskInstantRecovery",flags=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["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["25% increased Zombie Size"]={{}," Size "}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["20% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=20,name="ManaRegen",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Generosity",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["8% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=8,name="FlaskDuration",keywordFlags=0}},nil}c["30% increased Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,type="INC",value=30,name="Damage",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["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["Socketed Gems are Supported by level 14 Spell Totem"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Spell Totem",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["Crimson Dance"]={{[1]={value="Crimson Dance",type="LIST",keywordFlags=0,name="Keystone",flags=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["+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["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy "}c["Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies Take 10% increased Elemental Damage"]={nil,"Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies Take 10% increased Elemental Damage "}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",keywordFlags=0}},nil}c["+500 to maximum Life"]={{[1]={flags=0,type="BASE",value=500,name="Life",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["+30 to Dexterity"]={{[1]={flags=0,type="BASE",value=30,name="Dex",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["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["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["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Ice Bite",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["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["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["15% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["24% increased Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ColdDamage",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-20,name="EnemyStunThreshold",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["13% increased Fire Damage"]={{[1]={flags=0,type="INC",value=13,name="FireDamage",keywordFlags=0}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=1}},nil}c["15% increased Area Damage"]={{[1]={flags=512,type="INC",value=15,name="Damage",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["20% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=20,name="CurseEffect",keywordFlags=0}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius "}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage "}c["Socketed Gems are Supported by level 10 Blind"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Blind",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["+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["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["130% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EvasionAndEnergyShield",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["8% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=8,name="PhysicalDamage",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["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["20% increased Melee Damage"]={{[1]={flags=256,type="INC",value=20,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["Radius: 18 Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite"]={nil,"Radius: 18 Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite "}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["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["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["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={level=10,name="VaalAuraElementalDamageHealing"},name="ExtraSkill",keywordFlags=0}},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["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={level=18,name="SummonRigwaldsPack"},name="ExtraSkill",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["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["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["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["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={level=10,name="Flammability",noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock "}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["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["8% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskLifeRecovery",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["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["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["15% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=15,name="PoisonChance",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["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["Has 2 Abyssal Sockets"]={{[1]={flags=0,type="BASE",value=2,name="AbyssalSocketCount",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["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["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["30% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyChillDuration",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["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["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["25% increased Spell Damage"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["50% increased Fire Damage"]={{[1]={flags=0,type="INC",value=50,name="FireDamage",keywordFlags=0}},nil}c["+110 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=110,name="EnergyShield",keywordFlags=0}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=6,name="LootQuantity",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["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["25% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",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["Requiresd level 54 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}},"Requiresd level 54 "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted "}c["18% increased Poison Duration"]={{[1]={flags=0,type="INC",value=18,name="EnemyPoisonDuration",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["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds "}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["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["+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["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["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["165% increased Physical Damage"]={{[1]={flags=0,type="INC",value=165,name="PhysicalDamage",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["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["20% increased Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=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["2 additional Arrows"]={{[1]={flags=1,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}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 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["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["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["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["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["18% increased maximum Mana"]={{[1]={flags=0,type="INC",value=18,name="Mana",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["+8 to Dexterity"]={{[1]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Light Radius"]={{[1]={flags=0,type="INC",value=30,name="LightRadius",keywordFlags=0}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=0}},nil}c["30% less Damage with Hits"]={{[1]={flags=0,type="MORE",value=-30,name="Damage",keywordFlags=262144}},nil}c["10% chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}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["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ManaOnHit",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["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["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["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["10% chance to Fortify on Melee hit Enemies you Taunt take 10% increased Damage"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies you Taunt take 10% increased "}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["+65 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=65,name="EnergyShield",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["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=90,name="CritChance",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 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["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "}c["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies "}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=10,name="CritMultiplier",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["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["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life "}c["Gore Footprints"]={nil,"Gore Footprints "}c["30% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-30,name="StrRequirement",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["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["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["12% Chance to Block"]={{[1]={flags=0,type="BASE",value=12,name="BlockChance",keywordFlags=0}},nil}c["Extra Gore"]={nil,"Extra Gore "}c["+2000 to Armour"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",keywordFlags=0}},nil}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="LifeOnKill",keywordFlags=0}},nil}c["+16 to maximum Life"]={{[1]={flags=0,type="BASE",value=16,name="Life",keywordFlags=0}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-15,name="Damage",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["+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["10% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["or Unique Enemy"]={nil,"or Unique Enemy "}c["100% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyStunDuration",keywordFlags=0}},nil}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Fire Penetration",level=10},name="ExtraSupport",keywordFlags=0}},nil}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",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["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=5,name="ElementalPenetration",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["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["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["8% increased effect of Flasks on you"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["Zealot's Oath"]={{[1]={value="Zealot's Oath",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["25% increased Area of Effect while you have Arcane Surge"]={{[1]={flags=0,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}}," while you have Arcane Surge "}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["Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={[1]={type="SocketedIn",slotName="{SlotName}"},flags=0,type="LIST",value={name="Life Leech",level=16},name="ExtraSupport",keywordFlags=0}},nil}c["10% chance to Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},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["220% increased Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EnergyShield",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["8% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Area of Effect"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",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["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["+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["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["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 Attacks"]={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 Attacks "}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=115,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Immune to Ignite"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=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["Iron Reflexes"]={{[1]={value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["6% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=6,name="Speed",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={name="Mana Leech",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["Adds 16-25 Physical Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=65536}}," while you have a Beastial Minion "}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["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["+6 to maximum Mana"]={{[1]={flags=0,type="BASE",value=6,name="Mana",keywordFlags=0}},nil}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["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=65536}},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["16% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={{},nil}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["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when 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["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["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["38% increased Duration"]={{[1]={flags=0,type="INC",value=38,name="Duration",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["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["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["8% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=8,name="CritChance",keywordFlags=0}},nil}c["+28% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=28,name="ColdResist",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["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["+22% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=22,name="ElementalResist",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["+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["40% increased Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="BlockRecovery",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["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["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["10% reduced Charges used"]={{[1]={flags=0,type="INC",value=-10,name="FlaskChargesUsed",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["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=35,name="CritChance",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["Avatar of Fire"]={{[1]={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=4096}},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["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["9% increased Movement Speed"]={{[1]={flags=0,type="INC",value=9,name="MovementSpeed",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["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalDamageGainAsFire",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["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["+40 to Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=50,name="BleedChance",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% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=10,name="EnergyShield",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["+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["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["10% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["16% Chance to Block"]={{[1]={flags=0,type="BASE",value=16,name="BlockChance",keywordFlags=0}},nil}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsCold",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["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,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["+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=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["20% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=20,name="Damage",keywordFlags=65536}},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["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["15% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,type="INC",value=15,name="EnemyShockEffect",keywordFlags=0},[2]={flags=0,type="INC",value=15,name="EnemyChillEffect",keywordFlags=0},[3]={flags=0,type="INC",value=15,name="EnemyFreezeEffech",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["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["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["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["+175 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=175,name="EnergyShield",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 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["50% increased Critical Strike Chance with Staves"]={{[1]={flags=131072,type="INC",value=50,name="CritChance",keywordFlags=0}},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["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=0,type="BASE",value=6,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=12,name="FireMax",keywordFlags=131072}},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["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["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["+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["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["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius "}c["+8% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResist",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"]={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["+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["300% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=300,name="EvasionAndEnergyShield",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["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["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}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["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,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:1}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"]={{[1]={[1]={type="SkillName",skillName="Aspect of the Cat"},value={key="manaCostForced",value=0},type="LIST",keywordFlags=0,name="SkillData",flags=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["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["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=true,type="FLAG",keywordFlags=0,name="MinionInstability",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["16% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=16,name="PhysicalDamage",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["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["+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["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["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["If you've Cast a Spell Recently, you and nearby Allies have 10% chance to Block Spells"]={{[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["35% increased Spell Damage"]={{[1]={flags=2,type="INC",value=35,name="Damage",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["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["Gain 5 Souls for Vaal Skills on Rampage Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage Rampage "}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["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["28% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=28,name="BlockChanceConv",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["23% increased Spell Damage"]={{[1]={flags=2,type="INC",value=23,name="Damage",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["+180 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=180,name="EnergyShield",keywordFlags=0}},nil}c["4% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=4,name="Damage",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["30% Chance to Dodge Attack Hits. 50% less Armour, 30% less 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=-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["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["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["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["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["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["24% increased maximum Life"]={{[1]={flags=0,type="INC",value=24,name="Life",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["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["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% increased Damage with Hits against Frozen, Shocked or Ignited Enemies"]={{[1]={[1]={type="ActorCondition",varList={[1]="Frozen",[2]="Shocked",[3]="Ignited"},actor="enemy"},flags=0,type="INC",value=25,name="Damage",keywordFlags=262144}},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["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["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["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["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["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["217% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=217,name="EvasionAndEnergyShield",keywordFlags=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 Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsFire",keywordFlags=0}},nil}c["Cannot take Reflected Elemental Damage"]={nil,"Cannot take Reflected Elemental Damage "}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["10% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=10,name="AuraEffect",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["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["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["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["Minions deal 37% increased Damage"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=37,name="Damage",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}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["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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud 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["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["+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["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["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["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["+25 to maximum Life"]={{[1]={flags=0,type="BASE",value=25,name="Life",keywordFlags=0}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,type="INC",value=50,name="Damage",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["+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["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["18% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",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["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius "}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 20% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Life Leech effects are not removed at Full Life 20% 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["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["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["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["Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 31% reduced Soul Gain Prevention Duration "}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=8193,type="BASE",value=10,name="BleedChance",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% 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["+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["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["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["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["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["+6 to maximum Life"]={{[1]={flags=0,type="BASE",value=6,name="Life",keywordFlags=0}},nil}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 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["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["+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["+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["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["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["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["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed "}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["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["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 +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["74% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=74,name="ArmourAndEvasion",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["35% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=35,name="Accuracy",keywordFlags=0}},nil}c["50% increased Armour"]={{[1]={flags=0,type="INC",value=50,name="Armour",keywordFlags=0}},nil}c["45% chance to avoid Bleeding"]={{[1]={flags=0,type="BASE",value=45,name="AvoidBleed",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 further, dealing up to 50% increased Damage with Hits to targets"]={nil,"Projectiles gain Damage as they travel further, 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 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 20 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["70% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=1048576}},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["20% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=20,name="Damage",keywordFlags=0}}," while you have Arcane Surge "}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["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=0,type="BASE",value=1,name="LightningMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=2,name="LightningMax",keywordFlags=65536}},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["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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage 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["+13 to Strength"]={{[1]={flags=0,type="BASE",value=13,name="Str",keywordFlags=0}},nil}c["8% increased Physical Damage for each Hit you've Blocked in the past 10 seconds"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}}," for each Hit you've Blocked in the past 10 seconds "}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["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["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=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% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=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% 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["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["+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["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["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["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SpellDamageAppliesToAttacks",flags=0}},nil}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["Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life"]={nil,"Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life "}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["10% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=10,name="Speed",keywordFlags=2}},nil}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["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["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen "}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["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["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["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=10,name="Speed",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["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["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["12% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=12,name="Damage",keywordFlags=65536}},nil}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["40% increased Attack and Cast Speed if Energy Shield Recharge has started Recently"]={{[1]={[1]={type="Condition",var="EnergyShieldRechargeRecently"},flags=0,type="INC",value=40,name="Speed",keywordFlags=0}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=29,name="ChaosResist",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"]={{[1]={flags=0,type="BASE",value=50,name="AvoidBleed",keywordFlags=0}},nil}c["+25 to Dexterity"]={{[1]={flags=0,type="BASE",value=25,name="Dex",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["+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["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["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["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 57% 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=57}},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["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["25% reduced Flask effect duration"]={{[1]={flags=0,type="INC",value=-25,name="FlaskDuration",keywordFlags=0}},nil}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["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["+1% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=1,name="ColdResistMax",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["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["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["Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently"]={nil,"Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently "}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["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["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["+6% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=6,name="FireResistMax",keywordFlags=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["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["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,type="INC",value=65,name="IgniteBurnSlower",keywordFlags=0}},nil}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["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["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["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["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["40% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=1048576}},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["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 22 to 35 Chaos Damage"]={{[1]={flags=0,type="BASE",value=22,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,name="ChaosMax",keywordFlags=0}},nil}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["100% increased Power Charge Duration"]={{[1]={flags=0,type="INC",value=100,name="PowerChargesDuration",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["20% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=20,name="LifeLeechRate",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["Maximum Life Leech Rate is doubled."]={{[1]={value=100,type="MORE",keywordFlags=0,name="MaxLifeLeechRate",flags=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="Damage",keywordFlags=8650752}}," 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["7% increased Intelligence"]={{[1]={flags=0,type="INC",value=7,name="Int",keywordFlags=0}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}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=0,type="BASE",value=80,name="BlockChanceConv",keywordFlags=0}},nil}c["Grants level 20 Summon Beastial Ursa Skill +400 to Accuracy Rating"]={nil,nil}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["+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["+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="Damage",keywordFlags=8388608}},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="MovementSpeed",keywordFlags=0}}," Attack and with Her Blessing "}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["45% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=45,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}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["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=33,name="CritMultiplier",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["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=90,name="CritMultiplier",keywordFlags=0}},nil}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["Your Hits have 5% chance to gain 100% of Non-Chaos Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}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 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=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["+350 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=350,name="Evasion",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["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["20% chance to Ignite"]={{[1]={flags=0,type="BASE",value=20,name="EnemyIgniteChance",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["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["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["25% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=25,name="ChaosDamage",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["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=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["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["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"]={{[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["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["Auras you Cast 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["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["+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]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,type="INC",value=50,name="Damage",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["50% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-50,name="EnergyShield",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["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow by at least 10%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow by at least 10% "}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["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["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["-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["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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage"]={{[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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage "}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=0,type="BASE",value=40,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=70,name="LightningMax",keywordFlags=131072}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds "}c["+40% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=40,name="ElementalResist",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["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["55% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=55,name="ArmourAndEvasion",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["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["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["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["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["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["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy "}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["+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["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=0.5,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}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["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 31% 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 31% 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["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["+30% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=30,name="ChaosResist",keywordFlags=0}},nil}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"]={{[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["+(-20--10)% to Chaos Resistance"]={nil,"+(-20--10)% to Chaos Resistance "}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["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["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["30% increased Totem Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=16384}},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["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["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=3,name="Speed",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["16% increased Totem Duration"]={{[1]={flags=0,type="INC",value=16,name="TotemDuration",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["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["12% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",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["+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["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["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["+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["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}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["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["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["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["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["25% reduced Bleed duration"]={{[1]={flags=0,type="INC",value=-25,name="EnemyBleedDuration",keywordFlags=0}},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["40% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=40,name="Damage",keywordFlags=0}}," while you have Arcane Surge "}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["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["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["30% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=30,name="CooldownRecovery",keywordFlags=4096}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,type="INC",value=20,name="Mana",keywordFlags=0}},nil}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["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["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["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=60,name="PhysicalDamage",keywordFlags=0}},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["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,type="LIST",value={skillId="FireBeam",level=25},name="ExtraSkill",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 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["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["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill "}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill "}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["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill "}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["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["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["26% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=26,name="ElementalDamage",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["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["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["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["4% increased maximum Life"]={{[1]={flags=0,type="INC",value=4,name="Life",keywordFlags=0}},nil}c["You have Far Shot while you do not have Iron Reflexes Elder Item"]={nil,"You have Far Shot while you do not have Iron Reflexes Elder Item "}c["60% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=60,name="LightningDamage",keywordFlags=0}},nil}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["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["+15 Energy Shield gained on Kill"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",keywordFlags=0}}," gained on Kill "}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["+23% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=23,name="ChaosResist",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["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion "}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 Beastial Ursa Skill"]={nil,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["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["25% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=25,name="CooldownRecovery",keywordFlags=4096}},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 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["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["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 when Hit by an Attack "}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="ProjectileCount",keywordFlags=0}}," of Piercing "}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["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["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["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["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["Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage "}c["+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 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 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["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]={[1]={type="Condition",var="AffectedByVitality"},flags=0,type="BASE",value=1.5,name="DamageLifeLeech",keywordFlags=0}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="ManaRegen",keywordFlags=0}},nil}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.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["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["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["14% increased Armour"]={{[1]={flags=0,type="INC",value=14,name="Armour",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["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["20% increased Totem Life"]={{[1]={flags=0,type="INC",value=20,name="TotemLife",keywordFlags=0}},nil}c["80% increased Armour"]={{[1]={flags=0,type="INC",value=80,name="Armour",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["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 Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=25,name="PhysicalDamage",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["+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["+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["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["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["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]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,type="BASE",value=12,name="PhysicalDamageTakenAsFire",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["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 33% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="MORE",value=33,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["+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["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["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["15% increased Attack and Movement Speed while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion "}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["14% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}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["Damage Penetrates 5% Fire Resistance"]={{[1]={flags=0,type="BASE",value=5,name="FirePenetration",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["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["+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="Damage",keywordFlags=8388608}},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["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["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=150,name="EnergyShieldRechargeFaster",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["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["If you've used a Skill Recently, you and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="UsedSkillRecently"},value=true,type="FLAG",keywordFlags=0,name="Condition:Tailwind",flags=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["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["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["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["178% increased Physical Damage"]={{[1]={flags=0,type="INC",value=178,name="PhysicalDamage",keywordFlags=0}},nil}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["16% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=16,name="TotemPlacementSpeed",keywordFlags=0}},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["75% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-75,name="SelfChillEffect",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["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["You Regenerate 0.5% of Mana per second per Totem You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem You and your Totems Regenerate 1% of Life per second per Totem "}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,type="BASE",value=-1,name="EnduranceChargesMax",keywordFlags=0}},nil}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when "}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=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["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["20% less Minimum Physical Attack Damage 20% more Maximum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum 20% more Maximum Physical Attack Damage "}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 One Handed Melee Weapons"]={{[1]={flags=18874368,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["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["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["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["15% increased Attack and Movement Speed while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}}," Attack and while you have a Beastial Minion {variant:2}Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion "}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["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["+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 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["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["+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 69% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="INC",value=69,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["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["+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["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["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["Damage Penetrates 10% of Enemy Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",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["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["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["+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 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["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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}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["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["25% increased Poison Duration at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=25,name="EnemyPoisonDuration",keywordFlags=0}},nil}c["6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["Attacks have Blood Magic"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="SkillBloodMagic",flags=1}},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% 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=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["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["You can have one additional Curse"]={nil,"You can have one additional Curse "}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=19,name="LifeOnHit",keywordFlags=0}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life "}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "}c["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["1% increased Movement Speed per 450 Evasion Rating, up to 100%"]={{[1]={[1]={limit=100,stat="Evasion",div=450,type="PerStat",limitTotal=true},flags=0,type="INC",value=1,name="MovementSpeed",keywordFlags=0}},nil}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 Chaos Damage"]={{[1]={flags=0,type="INC",value=100,name="ChaosDamage",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["10% chance to Dodge Attack and Spell Hits while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0},[2]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,type="BASE",value=10,name="SpellDodgeChance",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["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["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["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["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"]={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["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["+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["Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently"]={nil,"Life Leech effects are not removed at Full Life 20% 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% 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]={[1]={type="PerStat",stat="EnergyShield",div=500},flags=0,type="BASE",value=1,name="LifeRegenPercent",keywordFlags=0}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,type="INC",value=-65,name="FlaskRecovery",keywordFlags=0}},nil}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["+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=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["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "}c["5% chance to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill "}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["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish "}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]={[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["+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["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["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["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["60% increased Cold Damage"]={{[1]={flags=0,type="INC",value=60,name="ColdDamage",keywordFlags=0}},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["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["+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["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=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["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=16384,type="BASE",value=20,name="CritMultiplier",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["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["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["30% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=65536}},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["+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["Requiresd level 54"]={nil,"Requiresd level 54 "}c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,type="MORE",value=-50,name="EnergyShieldRecharge",keywordFlags=0}},nil}c["20% increased Poison Duration at least 150 Intelligence"]={{[1]={[1]={type="StatThreshold",stat="Int",threshold=150},flags=0,type="INC",value=20,name="EnemyPoisonDuration",keywordFlags=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["116% increased Physical Damage"]={{[1]={flags=0,type="INC",value=116,name="PhysicalDamage",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["45% reduced Effect of Chill on You"]={{[1]={flags=0,type="INC",value=-45,name="SelfChillEffect",keywordFlags=0}},nil}c["44% increased Spell Damage"]={{[1]={flags=2,type="INC",value=44,name="Damage",keywordFlags=0}},nil}c["5% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,type="INC",value=5,name="CooldownRecovery",keywordFlags=4096}},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["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["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["You can have one additional Curse 20% increased Damage per Curse on you"]={nil,"You can have one additional Curse 20% increased Damage per Curse on you "}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["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["Life Leech is applied to Energy Shield instead"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="GhostReaver",flags=0}},nil}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyFreezeDuration",keywordFlags=0}},nil}c["Radius: 18 Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}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["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["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["+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["16% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=16,name="CritChance",keywordFlags=0}},nil}c["Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7.5,name="NonChaosDamageGainAsChaos",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 Two Handed Melee Weapons"]={{[1]={flags=35651584,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["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud on Death, dealing 50% of their maximum Life as Chaos Damage per second "}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["0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," while you have Arcane Surge "}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["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["18% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=18,name="LifeRecoveryRate",keywordFlags=0}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when a Trap is Triggered by an Enemy Skills which throw Traps have Blood Magic"]={{}," to gain an Endurance,or Power Charge when a is Triggered by an Enemy Skills which throw Traps have Blood Magic "}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["30% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{}," to create Consecrated Ground on Kill, lasting 8 seconds "}c["14% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=14,name="ChaosDamage",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,"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["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["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["+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["Using Warcries is Instant Warcries cost no Mana"]={nil,"Using Warcries is Instant Warcries cost no Mana "}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["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["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["Grants level 20 Summon Beastial Snake Skill {variant:3}Grants level 20 Summon Beastial Ursa Skill"]={nil,nil}c["16% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=16,name="LifeLeechRate",keywordFlags=0}},nil}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["+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["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% chance to Fortify on Melee hit Enemies you Taunt 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 you Taunt take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["Golems 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["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["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["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["15% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=15,name="Damage",keywordFlags=65536}},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="Damage",keywordFlags=8388608}},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["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"]={{[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["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["9% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=9,name="Speed",keywordFlags=0}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["135% increased Charges used"]={{[1]={flags=0,type="INC",value=135,name="FlaskChargesUsed",keywordFlags=0}},nil}c["10% chance of Arrows Piercing"]={{}," of Arrows Piercing "}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["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["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["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["+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 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["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=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["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]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,type="BASE",value=8,name="SpellBlockChance",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["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "}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["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]={[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 20 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 20 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["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["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["50% of Physical Damage Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamage",keywordFlags=0}}," Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire "}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["+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["+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["14% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=14,name="AuraEffect",keywordFlags=0}},nil}c["Arrows Pierce all Targets"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="PierceAllTargets",flags=1}},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["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["15% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-15,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["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["You are Immune to Silence"]={nil,"You are Immune to Silence "}c["30% increased Attack Speed"]={{[1]={flags=1,type="INC",value=30,name="Speed",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["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["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["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage"]={nil,"+(-20--10)% to Chaos Resistance 8% chance to Dodge Spell Damage "}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,type="INC",value=6,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=0,type="INC",value=50,name="Damage",keywordFlags=786432}},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["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=16384}},nil}c["235% increased Physical Damage"]={{[1]={flags=0,type="INC",value=235,name="PhysicalDamage",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["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded "}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["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["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["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["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["42% increased Spell Damage"]={{[1]={flags=2,type="INC",value=42,name="Damage",keywordFlags=0}},nil}c["30% 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=30,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased "}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["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["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["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["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["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["5% increased effect of Flasks on you"]={{[1]={flags=0,type="INC",value=5,name="FlaskEffect",keywordFlags=0}},nil}c["8% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=8,name="Evasion",keywordFlags=0}},nil}c["25% increased Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,type="INC",value=25,name="FireResist",keywordFlags=0}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=90,name="CritChance",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]={[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["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["25% increased Totem Life"]={{[1]={flags=0,type="INC",value=25,name="TotemLife",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["22% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=22,name="StunRecovery",keywordFlags=0}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=20,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["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=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["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["+45 to Strength"]={{[1]={flags=0,type="BASE",value=45,name="Str",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["18% increased Projectile Attack Damage"]={{[1]={flags=1025,type="INC",value=18,name="Damage",keywordFlags=0}},nil}c["If you've Attacked Recently, you and nearby Allies have 10% chance to Block Attacks"]={{[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["Grants level 20 Summon Beastial Snake Skill"]={nil,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["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="FirePenetration",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["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["240% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=240,name="Evasion",keywordFlags=0}},nil}c["20% of Overkill Damage is Leeched as Life You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="BASE",value=20,name="DamageLifeLeech",keywordFlags=0}}," Overkill You are Immune to Bleeding "}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["Cold Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=32}},nil}c["Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 69% increased Damage during effect "}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["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["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["+10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=10,name="ColdResist",keywordFlags=0}},nil}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["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["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["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["0.5% of Spell Damage Leeched as Life while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="BASE",value=0.5,name="DamageLifeLeech",keywordFlags=0}}," while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge "}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["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["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["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage "}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["6 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=6,name="LifeRegen",keywordFlags=0}},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["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["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}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["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["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["Adds 21 to 35 Cold Damage"]={{[1]={flags=0,type="BASE",value=21,name="ColdMin",keywordFlags=0},[2]={flags=0,type="BASE",value=35,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["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 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["Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire "}c["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["10 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=10,name="ManaRegen",keywordFlags=0}},nil}c["5% increased Defences"]={{[1]={flags=0,type="INC",value=5,name="Defences",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["24% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+13 to Dexterity"]={{[1]={flags=0,type="BASE",value=13,name="Dex",keywordFlags=0}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=257,name="IntRequirement",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["+190 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=190,name="EnergyShield",keywordFlags=0}},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["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["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["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["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["Speed per second"]={nil,"Speed per second "}c["Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion {variant:3}Adds 16-25 Physical Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=65536}}," while you have a Beastial Minion {variant:3}Adds 16-25 to Attacks while you have a Beastial Minion "}c["Lightning Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",keywordFlags=64}},nil}c["1.5% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.5,name="EnergyShieldRegenPercent",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,type="BASE",value=5,name="Life",keywordFlags=0}}," to gain Onslaught for 3 seconds on Kill Recover 1% of on Kill "}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["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 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 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["Adds 65 to 195 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=195,name="PhysicalMax",keywordFlags=0}},nil}c["Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage "}c["Onslaught"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=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 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["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["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["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 gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit "}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,type="INC",value=-10,name="DamageTakenOverTime",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 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["150% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=150,name="EnemyChillDuration",keywordFlags=0}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-8,name="ManaCost",keywordFlags=0}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=435,name="Accuracy",keywordFlags=0}},nil}c["100% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=100,name="ArmourAndEvasion",keywordFlags=0}},nil}c["8% increased Physical Damage for each Hit you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked a Hit from a Unique Enemy in the past 10 seconds 1% additional Block Chance for each Hit 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 Hit you've Blocked in the past 10 seconds 80% increased Physical Damage 1% additional Block Chance for each Hit you've Blocked in the past 10 seconds "}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["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage "}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["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["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["15% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=15,name="Damage",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 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["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 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["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["16% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["50% reduced Totem Damage"]={{[1]={flags=0,type="INC",value=-50,name="Damage",keywordFlags=16384}},nil}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["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["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "}c["20% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}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["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["190% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=190,name="Evasion",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["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["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["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["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["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion {variant:1}15% increased Attack and Movement Speed while you have a Beastial Minion "}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["If you've Blocked in the past 10 seconds, you"]={nil,"If you've Blocked in the past 10 seconds, you "}c["8% increased Area of Effect"]={{[1]={flags=0,type="INC",value=8,name="AreaOfEffect",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["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["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["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["Your Chaos Damage Poisons Enemies"]={{[1]={value=100,type="BASE",keywordFlags=0,name="ChaosPoisonChance",flags=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["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["Life Leeched per Second is doubled."]={{[1]={value=100,type="MORE",keywordFlags=0,name="LifeLeechRate",flags=0}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=15,name="CurseEffect",keywordFlags=0}},nil}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["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["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["+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["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "}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["Your Raised Zombies spread Caustic Cloud on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ZombieCausticCloudOnDeath",flags=0}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge 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["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["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["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["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["+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=0,type="BASE",value=400,name="PhysicalMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=600,name="PhysicalMax",keywordFlags=131072}},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["+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["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage "}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["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["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["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["50% chance to double Stun Duration"]={{[1]={flags=0,type="BASE",value=50,name="EnemyStunDuration",keywordFlags=0}}," to double "}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["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently "}c["10% chance to Fortify on Melee hit Enemies you Taunt take 10% increased Damage 25% chance to Taunt on Hit"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies you Taunt take 10% increased 25% chance to Taunt on Hit "}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy "}c["50% increased Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies {variant:2,3,4}30% increased Rarity of Items Dropped by Slain Shocked 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% 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["+240 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=240,name="Accuracy",keywordFlags=0}},nil}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["4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",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["33% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-33,name="CurseEffect",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=30,name="CritMultiplier",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["140% increased Energy Shield"]={{[1]={flags=0,type="INC",value=140,name="EnergyShield",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["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["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["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["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["16% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["+30% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Hits with this Weapon deal 52% 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=52}},nil}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,type="INC",value=33,name="EnemyIgniteDuration",keywordFlags=0}},nil}c["6% increased Strength"]={{[1]={flags=0,type="INC",value=6,name="Str",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["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,type="MORE",value=-20,name="PhysicalDamage",keywordFlags=0}}," Minimum "}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["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["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["Immune to Shock"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=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["40% increased Totem Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=16384}},nil}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="ArmourAndEnergyShield",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["+12% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=12,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=15,name="FlaskManaRecovery",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["+100 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShield",keywordFlags=0}},nil}c["+18 to maximum Life"]={{[1]={flags=0,type="BASE",value=18,name="Life",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["+58 to Dexterity"]={{[1]={flags=0,type="BASE",value=58,name="Dex",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["180% increased Physical Damage"]={{[1]={flags=0,type="INC",value=180,name="PhysicalDamage",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["4% additional Physical Damage Reduction"]={{[1]={flags=0,type="BASE",value=4,name="PhysicalDamageReduction",keywordFlags=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["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["Grants Level 20 Summon Petrification Statue Skill"]={nil,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["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,type="INC",value=8,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["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["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask "}c["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes "}c["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["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["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["Your Lightning Damage can Ignite"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanIgnite",flags=0}},nil}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=12,name="LifeOnHit",keywordFlags=0}},nil}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["+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=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["Perfect Agony"]={{[1]={value="Perfect Agony",type="LIST",keywordFlags=0,name="Keystone",flags=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["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move "}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage "}c["8% increased Physical Damage for each Hit you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked a Hit 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 Hit you've Blocked in the past 10 seconds 80% increased Physical Damage "}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["+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["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["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["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=-100,type="MORE",keywordFlags=0,name="Damage",flags=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["+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["+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["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "}c["12% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited "}c["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["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["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block "}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["+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["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 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["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["12% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=12,name="LootQuantity",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["+5 to Maximum number of Crab Barriers"]={{[1]={flags=0,type="BASE",value=5,name="CrabBarriersMax",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["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["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["+370 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=370,name="Accuracy",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 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["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["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["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 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["+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["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["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["175% increased Armour"]={{[1]={flags=0,type="INC",value=175,name="Armour",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["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=7,name="LifeOnHit",keywordFlags=0}},nil}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["+173 to Armour"]={{[1]={flags=0,type="BASE",value=173,name="Armour",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 Cold Damage"]={{[1]={flags=0,type="INC",value=50,name="ColdDamage",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["+40% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=40,name="ColdResist",keywordFlags=0}},nil}c["+10 to Intelligence"]={{[1]={flags=0,type="BASE",value=10,name="Int",keywordFlags=0}},nil}c["30% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=30,name="PhysicalDamage",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["50% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=50,name="MineLayingSpeed",keywordFlags=0}},nil}c["+35 to Intelligence"]={{[1]={flags=0,type="BASE",value=35,name="Int",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["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=0,type="MORE",value=100,name="CritChance",keywordFlags=262144}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,type="BASE",value=100,name="Mana",keywordFlags=0}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "}c["2% increased Movement Speed"]={{[1]={flags=0,type="INC",value=2,name="MovementSpeed",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["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["0% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootRarity",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["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["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="FireDamageTakenAsCold",keywordFlags=0}},nil}c["6% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",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["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["+120 to Armour"]={{[1]={flags=0,type="BASE",value=120,name="Armour",keywordFlags=0}},nil}c["6% increased Area of Effect"]={{[1]={flags=0,type="INC",value=6,name="AreaOfEffect",keywordFlags=0}},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["77% increased Spell Damage"]={{[1]={flags=2,type="INC",value=77,name="Damage",keywordFlags=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["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=38,name="LifeOnHit",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["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 Attack Skills"]={{[1]={flags=0,type="INC",value=34,name="ElementalDamage",keywordFlags=65536}},nil}c["+74 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=74,name="Accuracy",keywordFlags=0}},nil}c["18% increased Cold Damage"]={{[1]={flags=0,type="INC",value=18,name="ColdDamage",keywordFlags=0}},nil}c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,type="BASE",value=6,name="FirePenetration",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["+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["172% increased Physical Damage"]={{[1]={flags=0,type="INC",value=172,name="PhysicalDamage",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["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "}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["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=256,type="INC",value=50,name="Damage",keywordFlags=262144}},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["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["+69 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=69,name="EnergyShield",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["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["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion "}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["+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["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["5% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-5,name="MovementSpeed",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["Can't use Chest armour"]={nil,"Can't use Chest armour "}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["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["+63 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=63,name="EnergyShield",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["+84 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=84,name="EnergyShield",keywordFlags=0}},nil}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["+231 to Armour"]={{[1]={flags=0,type="BASE",value=231,name="Armour",keywordFlags=0}},nil}c["74% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="EvasionAndEnergyShield",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["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["+17 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=17,name="Evasion",keywordFlags=0}},nil}c["+17 to Armour"]={{[1]={flags=0,type="BASE",value=17,name="Armour",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["+23 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=23,name="Evasion",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 Ailments against other targets"]={{}," Enemies Taunted by you deal 10% less against other targets "}c["18% increased Melee Damage"]={{[1]={flags=256,type="INC",value=18,name="Damage",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["+23 to Armour"]={{[1]={flags=0,type="BASE",value=23,name="Armour",keywordFlags=0}},nil}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["+425 to Armour"]={{[1]={flags=0,type="BASE",value=425,name="Armour",keywordFlags=0}},nil}c["45% increased Burning Damage"]={{[1]={flags=0,type="INC",value=45,name="Damage",keywordFlags=8388608}},nil}c["74% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["+48 to Dexterity"]={{[1]={flags=0,type="BASE",value=48,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["74% increased Energy Shield"]={{[1]={flags=0,type="INC",value=74,name="EnergyShield",keywordFlags=0}},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["70% increased Damage with Channelling Skills"]={{[1]={[1]={type="SkillType",skillType=58},flags=0,type="INC",value=70,name="Damage",keywordFlags=0}},nil}c["74% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=74,name="Evasion",keywordFlags=0}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=48,name="Evasion",keywordFlags=0}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=20,name="PoisonChance",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["100% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyShockDuration",keywordFlags=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["-50% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-50,name="ElementalResist",keywordFlags=0}},nil}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["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["23% increased Trap Damage"]={{[1]={flags=0,type="INC",value=23,name="Damage",keywordFlags=4096}},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["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["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["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["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["28% increased Trap Damage"]={{[1]={flags=0,type="INC",value=28,name="Damage",keywordFlags=4096}},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["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["You have Resolute Technique while you do not have Elemental Overload Elder Item"]={nil,"You have Resolute Technique while you do not have Elemental Overload Elder Item "}c["15% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=-15,name="Duration",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["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% increased Radius of Aura Skills"]={{[1]={[1]={type="SkillType",skillType=44},flags=0,type="INC",value=10,name="AreaOfEffect",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 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 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["+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["+20% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningResist",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["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["50% reduced Freeze Duration on You {variant:3}1% of Life Regenerated per Second"]={{}," "}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["75% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=75,name="BlockChanceConv",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["15% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=15,name="Damage",keywordFlags=0}},nil}c["120% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=120,name="BlockChanceConv",keywordFlags=0}},nil}c["+12% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=12,name="FireResist",keywordFlags=0}},nil}c["18 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=18,name="LifeRegen",keywordFlags=0}},nil}c["55% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=55,name="CritChance",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["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["+8% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=8,name="FireResistMax",keywordFlags=0}},nil}c["20 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=20,name="LifeRegen",keywordFlags=0}},nil}c["+60 Maximum Life"]={{[1]={flags=0,type="BASE",value=60,name="Life",keywordFlags=0}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "}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"]={{}," Level of Aura Gems in this item "}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["100% increased Spell Damage"]={{[1]={flags=2,type="INC",value=100,name="Damage",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["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=18,name="ElementalDamage",keywordFlags=0}},nil}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["1% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=1,name="LifeRegenPercent",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["50% reduced Freeze Duration on You"]={{[1]={flags=0,type="INC",value=-50,name="EnemyFreezeDuration",keywordFlags=0}}," on You "}c["+4% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=4,name="ElementalResist",keywordFlags=0}},nil}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["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["+3000 to Armour"]={{[1]={flags=0,type="BASE",value=3000,name="Armour",keywordFlags=0}},nil}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["+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["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["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=10,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.4,name="ChaosDamageLifeLeech",keywordFlags=0}},nil}c["+45% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=45,name="ColdResist",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["+200 to Accuracy Rating with Swords"]={{[1]={flags=262144,type="BASE",value=200,name="Accuracy",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["+8 to Armour"]={{[1]={flags=0,type="BASE",value=8,name="Armour",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["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["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["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,type="LIST",value={skillId="ColdAegis",level=20},name="ExtraSkill",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 place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}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["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["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["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["25% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="PhysicalDamage",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["+51 to maximum Mana"]={{[1]={flags=0,type="BASE",value=51,name="Mana",keywordFlags=0}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=160,name="Evasion",keywordFlags=0}},nil}c["120% increased Block Recovery"]={{[1]={flags=0,type="INC",value=120,name="BlockRecovery",keywordFlags=0}},nil}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["200% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=200,name="Evasion",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["8% chance to Freeze"]={{[1]={flags=0,type="BASE",value=8,name="EnemyFreezeChance",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["+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["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["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["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["60% reduced Duration"]={{[1]={flags=0,type="INC",value=-60,name="Duration",keywordFlags=0}},nil}c["60% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=60,name="BlockChanceConv",keywordFlags=0}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,type="INC",value=10,name="AuraEffectOnSelf",keywordFlags=0}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=12,name="ColdResist",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["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["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit "}c["+2 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=2,name="PowerChargesMax",keywordFlags=0}},nil}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 to Intelligence"]={{[1]={flags=0,type="BASE",value=20,name="Int",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["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"]={{[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["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["260% increased Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EnergyShield",keywordFlags=0}},nil}c["+38% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=38,name="LightningResist",keywordFlags=0}},nil}c["Shock Reflection"]={nil,"Shock Reflection "}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry "}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["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,type="BASE",value=10,name="Damage",keywordFlags=0}}," Reflected Gained as Life "}c["+5% Chance to Block"]={{[1]={flags=0,type="BASE",value=5,name="BlockChance",keywordFlags=0}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegen",keywordFlags=0}},nil}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["23% increased Poison Duration"]={{[1]={flags=0,type="INC",value=23,name="EnemyPoisonDuration",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["90% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=90,name="Evasion",keywordFlags=0}},nil}c["25% Increased Warcry Effect"]={{[1]={flags=0,type="INC",value=25,name="BuffEffect",keywordFlags=4}},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["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["80% reduced Trap Duration"]={{[1]={flags=0,type="INC",value=-80,name="TrapDuration",keywordFlags=0}},nil}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["12% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=65536}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,type="INC",value=100,name="Evasion",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["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=13,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["+18% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ColdResist",keywordFlags=0}},nil}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-10,name="EnergyShield",keywordFlags=0}},nil}c["+14 to all Attributes"]={{[1]={flags=0,type="BASE",value=14,name="Str",keywordFlags=0},[2]={flags=0,type="BASE",value=14,name="Dex",keywordFlags=0},[3]={flags=0,type="BASE",value=14,name="Int",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["10% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=10,name="SpellBlockChance",keywordFlags=0}},nil}c["Projectiles Pierce 5 additional Targets"]={{[1]={flags=0,type="BASE",value=5,name="PierceCount",keywordFlags=0}},nil}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["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["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["7 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=7,name="LifeRegen",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["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["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["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill "}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["100% increased Curse Duration"]={{[1]={flags=0,type="INC",value=100,name="Duration",keywordFlags=2}},nil}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["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["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["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["Acrobatics"]={{[1]={value="Acrobatics",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "}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["50% reduced Duration of Curses on you"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}}," of Curses on you "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently Shaper Item"]={{[1]={flags=2,type="INC",value=60,name="Damage",keywordFlags=0}}," for each 200 total Mana you have Spent Recently Shaper Item "}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["28% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=28,name="ElementalDamage",keywordFlags=65536}},nil}c["+30 to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",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["+300 Armour per active Totem"]={{[1]={flags=0,type="BASE",value=300,name="Armour",keywordFlags=16384}}," per active "}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["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["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=16384}},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["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,type="INC",value=15,name="AreaOfEffect",keywordFlags=16384}},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["0.5% of Life Regenerated per Second"]={{[1]={flags=0,type="BASE",value=0.5,name="LifeRegenPercent",keywordFlags=0}},nil}c["60% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=60,name="FlaskDuration",keywordFlags=0}},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["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["200% increased Armour against Projectiles"]={{[1]={flags=0,type="INC",value=200,name="Armour",keywordFlags=0}}," against Projectiles "}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["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["-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["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["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level "}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["+6% to maximum Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdResistMax",keywordFlags=0}},nil}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["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy "}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="Damage",keywordFlags=8388608}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-30,name="Speed",keywordFlags=0}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}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["+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["74% increased Armour"]={{[1]={flags=0,type="INC",value=74,name="Armour",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["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 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["40% increased Physical Damage"]={{[1]={flags=0,type="INC",value=40,name="PhysicalDamage",keywordFlags=0}},nil}c["+4% Chance to Block"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",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["+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["235% increased Energy Shield"]={{[1]={flags=0,type="INC",value=235,name="EnergyShield",keywordFlags=0}},nil}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "}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["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["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,type="BASE",value=-25,name="PhysicalDamageTaken",keywordFlags=0}}," from Projectile Attacks "}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["+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["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["+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["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["Projectiles gain Damage as they travel further, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Projectiles gain Damage as they travel further, dealing up to 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToFire",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["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["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["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["+73 to maximum Life"]={{[1]={flags=0,type="BASE",value=73,name="Life",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["4% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=4,name="Speed",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["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["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["170% increased Armour"]={{[1]={flags=0,type="INC",value=170,name="Armour",keywordFlags=0}},nil}c["140% increased Armour"]={{[1]={flags=0,type="INC",value=140,name="Armour",keywordFlags=0}},nil}c["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability "}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["22% increased Cold Damage"]={{[1]={flags=0,type="INC",value=22,name="ColdDamage",keywordFlags=0}},nil}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["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["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "}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["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike "}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=80,name="CritChance",keywordFlags=0}},nil}c["75% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=75,name="CritChance",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["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["500% increased Physical Damage"]={{[1]={flags=0,type="INC",value=500,name="PhysicalDamage",keywordFlags=0}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.6,name="PhysicalDamageManaLeech",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["+175 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=175,name="Accuracy",keywordFlags=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["+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["230% increased Energy Shield"]={{[1]={flags=0,type="INC",value=230,name="EnergyShield",keywordFlags=0}},nil}c["4% increased Movement Speed"]={{[1]={flags=0,type="INC",value=4,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["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["+1 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSkeletonLimit",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["+1 to maximum number of Spectres"]={{[1]={flags=0,type="BASE",value=1,name="ActiveSpectreLimit",keywordFlags=0}},nil}c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",keywordFlags=65536}},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% 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["+185 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=185,name="Accuracy",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["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% reduced Projectile Speed"]={{[1]={flags=0,type="INC",value=-20,name="ProjectileSpeed",keywordFlags=0}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-25,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["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["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies "}c["10% increased Fire Damage taken"]={{[1]={flags=0,type="INC",value=10,name="FireDamageTaken",keywordFlags=0}},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["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["2% additional Block Chance"]={{[1]={flags=0,type="BASE",value=2,name="BlockChance",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["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["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["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["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=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["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["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["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 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 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["+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["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["150% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=150,name="Evasion",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["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 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["20% increased Fire Damage"]={{[1]={flags=0,type="INC",value=20,name="FireDamage",keywordFlags=0}},nil}c["Chills from your Hits always Slow by at least 10%"]={nil,"Chills from your Hits always Slow by at least 10% "}c["+30 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=30,name="Evasion",keywordFlags=0}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=25,name="BleedChance",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["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["+1 Maximum Power Charge"]={{[1]={flags=0,type="BASE",value=1,name="PowerChargesMax",keywordFlags=0}},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["19% increased Attack Speed"]={{[1]={flags=1,type="INC",value=19,name="Speed",keywordFlags=0}},nil}c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=48,name="ElementalDamage",keywordFlags=65536}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=13,name="FireResist",keywordFlags=0}},nil}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"]={{[1]={flags=0,type="INC",value=55,name="ElementalDamage",keywordFlags=65536}},nil}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["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=3,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}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["15% reduced Intelligence"]={{[1]={flags=0,type="INC",value=-15,name="Int",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["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["30% Chance to Dodge Spell Hits"]={{[1]={flags=0,type="BASE",value=30,name="SpellDodgeChance",keywordFlags=0}},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["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["Gain a Void Charge every second Elder Item"]={nil,"Gain a Void Charge every second Elder Item "}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 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 Effect of Shrine Buffs on you"]={{[1]={flags=0,type="INC",value=75,name="FlaskEffect",keywordFlags=0}}," of Shrine Buffs on you "}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["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["3% increased Movement Speed"]={{[1]={flags=0,type="INC",value=3,name="MovementSpeed",keywordFlags=0}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently 60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,type="INC",value=60,name="ManaCost",keywordFlags=0}}," for each 200 total Mana you have Spent Recently 60% increased Damage for each 200 total Mana you have Spent Recently "}c["60% increased Damage with Channelling Skills"]={{[1]={[1]={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["+2 to Weapon Range"]={{[1]={flags=0,type="BASE",value=2,name="WeaponRange",keywordFlags=0}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=8192}},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["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["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["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["50% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=50,name="ManaCost",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["10% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=10,name="PhysicalDamage",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["8% increased Physical Damage"]={{[1]={flags=0,type="INC",value=8,name="PhysicalDamage",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["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["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["+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["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["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges "}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["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["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,type="LIST",value={skillId="Flammability",level=1,noSupports=true},name="ExtraSkill",keywordFlags=0}},nil}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["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy "}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 55 to 76 Chaos Damage"]={{[1]={flags=0,type="BASE",value=55,name="ChaosMin",keywordFlags=0},[2]={flags=0,type="BASE",value=76,name="ChaosMax",keywordFlags=0}},nil}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["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["26% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=26,name="PhysicalDamage",keywordFlags=0}},nil}c["8% reduced maximum Energy Shield"]={{[1]={flags=0,type="INC",value=-8,name="EnergyShield",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["100% increased Charge Recovery"]={{[1]={flags=0,type="INC",value=100,name="FlaskChargeRecovery",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["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["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}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=0,type="BASE",value=1,name="LightningMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=65,name="LightningMax",keywordFlags=131072}},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["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["83% increased Spell Damage"]={{[1]={flags=2,type="INC",value=83,name="Damage",keywordFlags=0}},nil}c["+8% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=8,name="ColdResist",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["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["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["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["Grants level 20 Death Aura Skill"]={{[1]={flags=0,type="LIST",value={skillId="ChaosDegenAuraUnique",level=20},name="ExtraSkill",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["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["10% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=10,name="TotemPlacementSpeed",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["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["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["Your Spells are disabled"]={{[1]={[1]={type="SkillType",skillType=2},value=true,type="FLAG",keywordFlags=0,name="DisableSkill",flags=0}},nil}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="EnergyShieldRegenPercent",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["90% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=90,name="ElementalDamage",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["Far Shot Elder Item"]={nil,"Far Shot Elder Item "}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["Adds 70 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",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["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["25% increased Flask Life Recovery rate"]={{[1]={flags=0,type="INC",value=25,name="FlaskLifeRecoveryRate",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["+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["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["Grants 1 Passive Skill Point"]={{[1]={flags=0,type="BASE",value=1,name="ExtraPoints",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["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["10% increased Damage taken from Ghosts"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",keywordFlags=0}}," from Ghosts "}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["22% increased Damage"]={{[1]={flags=0,type="INC",value=22,name="Damage",keywordFlags=0}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["40% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-40,name="Damage",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["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["+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["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["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["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite "}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["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["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["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["Creates a Smoke Cloud on Use"]={{},nil}c["21% increased Attack Speed"]={{[1]={flags=1,type="INC",value=21,name="Speed",keywordFlags=0}},nil}c["You and nearby allies have 15% 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=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["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["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["10% increased Effect of Buffs on you"]={{[1]={flags=0,type="INC",value=10,name="BuffEffectOnSelf",keywordFlags=0}},nil}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-8,name="ManaCost",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["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["25% increased Physical Damage"]={{[1]={flags=0,type="INC",value=25,name="PhysicalDamage",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["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["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["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["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=83,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}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["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["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["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["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=100,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=10,name="EnergyShieldRechargeFaster",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["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["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration "}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["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="LightningDamageConvertToCold",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["+5 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="ManaOnKill",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["66% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=66,name="CritChance",keywordFlags=0}},nil}c["Has no Attribute Requirements"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoAttributeRequirements",flags=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["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["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["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["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite "}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,type="INC",value=50,name="IgniteBurnFaster",keywordFlags=0}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing "}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["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["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["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill "}c["18% Increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=18,name="Accuracy",keywordFlags=0}},nil}c["80% increased Physical Damage if you've Blocked a Hit 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["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["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["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}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["4% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},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["10% reduced Maximum Life"]={{[1]={flags=0,type="INC",value=-10,name="Life",keywordFlags=0}},nil}c["+125 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=125,name="Accuracy",keywordFlags=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 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["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["130% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=130,name="ArmourAndEvasion",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["180% increased Armour"]={{[1]={flags=0,type="INC",value=180,name="Armour",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["+475 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=475,name="Accuracy",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["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["40% increased Physical Damage with Wands"]={{[1]={flags=524288,type="INC",value=40,name="PhysicalDamage",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["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["20% increased Movement Speed"]={{[1]={flags=0,type="INC",value=20,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=10,name="FlaskDuration",keywordFlags=0}},nil}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,type="BASE",value=-1,name="FrenzyChargesMax",keywordFlags=0}},nil}c["16% increased Totem Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=16384}},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["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["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["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,type="BASE",value=25,name="PhysicalDamageConvertToCold",keywordFlags=0}},nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=40,name="Accuracy",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["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["1.8% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=1.8,name="LifeRegenPercent",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["110% increased Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EnergyShield",keywordFlags=0}},nil}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["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["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.2,name="DamageLifeLeech",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["+20 Mana gained when you Block"]={{[1]={flags=0,type="BASE",value=20,name="Mana",keywordFlags=0}}," gained when you Block "}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["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy "}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["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["1000% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=1000,name="PhysicalDamage",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["45% increased Area Damage"]={{[1]={flags=512,type="INC",value=45,name="Damage",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["20% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}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["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["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["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["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-2,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}c["150% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEvasion",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["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["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["+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["+28% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=28,name="LightningResist",keywordFlags=0}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,type="INC",value=88,name="PhysicalDamage",keywordFlags=0}},nil}c["+36 to Armour"]={{[1]={flags=0,type="BASE",value=36,name="Armour",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["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["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["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["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["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["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 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["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["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["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["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["Curse Reflection"]={nil,"Curse Reflection "}c["12% increased Dexterity"]={{[1]={flags=0,type="INC",value=12,name="Dex",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 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["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["25% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=25,name="ElementalDamage",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["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["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["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% 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["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["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=31,name="LifeOnHit",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["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,type="BASE",value=8,name="LifeOnHit",keywordFlags=0}},nil}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium "}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["12% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},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["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["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["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,type="LIST",value={skillId="AbyssalCry",level=1},name="ExtraSkill",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["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["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},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["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=44,name="LifeOnHit",keywordFlags=0}},nil}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["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% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=13,name="Speed",keywordFlags=0}},nil}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "}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["8% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=8,name="MineLayingSpeed",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["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfStorms",level=1},name="ExtraSkill",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["245% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=245,name="EvasionAndEnergyShield",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["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["Using Warcries is Instant"]={nil,"Using Warcries is Instant "}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["+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["260% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=260,name="EvasionAndEnergyShield",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["20% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=20,name="ManaCost",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["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["8% increased Attack Physical Damage"]={{[1]={flags=1,type="INC",value=8,name="PhysicalDamage",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["18% increased Intelligence"]={{[1]={flags=0,type="INC",value=18,name="Int",keywordFlags=0}},nil}c["Arrows always Pierce after Chaining"]={nil,"Arrows always Pierce after Chaining "}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["+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["45% increased Damage"]={{[1]={flags=0,type="INC",value=45,name="Damage",keywordFlags=0}},nil}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["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["Attacks with this Weapon deal 90 to 180 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=90},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Bleeding"},flags=0,type="BASE",keywordFlags=262144,name="FireMax",value=180}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,type="BASE",value=14,name="SpellBlockChance",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 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["+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["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded "}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["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["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyFreezeDuration",keywordFlags=0}},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["Templar: Damage Penetrates 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,type="BASE",value=5,name="ElementalPenetration",keywordFlags=0}},nil}c["+29% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=29,name="FireResist",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["+32% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=32,name="FireResist",keywordFlags=0}},nil}c["50% increased Physical Damage"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamage",keywordFlags=0}},nil}c["21% increased Stun Recovery"]={{[1]={flags=0,type="INC",value=21,name="StunRecovery",keywordFlags=0}},nil}c["20% increased Area Damage"]={{[1]={flags=512,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=22,name="Defences",keywordFlags=0}},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["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use "}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["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block "}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["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["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["Gain 8% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=8,name="ManaGainAsEnergyShield",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["Immune to Elemental Ailments while Phasing"]={nil,"Immune to Elemental Ailments while Phasing "}c["Cannot Leech Mana"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechMana",flags=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["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["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,type="INC",value=-25,name="ChaosDamageTakenOverTime",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["10% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=10,name="LightningDamage",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["10% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=10,name="ManaReserved",keywordFlags=0}},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["+200 to maximum Mana"]={{[1]={flags=0,type="BASE",value=200,name="Mana",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["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["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["100% increased Critical Strike Chance with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding"]={{[1]={flags=0,type="INC",value=100,name="CritChance",keywordFlags=0}}," with arrows that Fork {variant:1}Arrows that Pierce cause Bleeding "}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["+250 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=250,name="EnergyShield",keywordFlags=0}},nil}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["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 Cold Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToCold",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["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["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["45% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=45,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},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["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["50% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEnergyShield",keywordFlags=0}},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["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["+52% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=52,name="ChaosResist",keywordFlags=0}},nil}c["+60 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=60,name="EnergyShield",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["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["+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% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack "}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["+45% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=45,name="FireResist",keywordFlags=0}},nil}c["+350 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=350,name="Accuracy",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["+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["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["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["-1 to Maximum Power Charges"]={{[1]={flags=0,type="BASE",value=-1,name="PowerChargesMax",keywordFlags=0}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,type="INC",value=22,name="Mana",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["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["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["6% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=6,name="Damage",keywordFlags=65536}},nil}c["120% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=120,name="ArmourAndEvasion",keywordFlags=0}},nil}c["Mercury Footprints"]={nil,"Mercury Footprints "}c["+65 to Dexterity"]={{[1]={flags=0,type="BASE",value=65,name="Dex",keywordFlags=0}},nil}c["10% increased Totem Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=16384}},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["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike "}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered "}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["+250 to Armour"]={{[1]={flags=0,type="BASE",value=250,name="Armour",keywordFlags=0}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit "}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-5,name="EnemyStunThreshold",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["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["+140 to maximum Life"]={{[1]={flags=0,type="BASE",value=140,name="Life",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["250% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=250,name="ArmourAndEvasion",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["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["12% increased Attack Speed"]={{[1]={flags=1,type="INC",value=12,name="Speed",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["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["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["+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=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["300% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=300,name="ArmourAndEvasion",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["40% increased Attack and Cast Speed if Energy"]={{[1]={flags=0,type="INC",value=40,name="Speed",keywordFlags=0}}," if Energy "}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["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["-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["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["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill "}c["35% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=35,name="LootRarity",keywordFlags=0}},nil}c["10% increased Intelligence"]={{[1]={flags=0,type="INC",value=10,name="Int",keywordFlags=0}},nil}c["15% increased Intelligence"]={{[1]={flags=0,type="INC",value=15,name="Int",keywordFlags=0}},nil}c["180% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEvasion",keywordFlags=0}},nil}c["25% increased Attack Speed"]={{[1]={flags=1,type="INC",value=25,name="Speed",keywordFlags=0}},nil}c["+25% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=25,name="ColdResist",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["Adds 65 to 325 Physical Damage"]={{[1]={flags=0,type="BASE",value=65,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=325,name="PhysicalMax",keywordFlags=0}},nil}c["+88 to maximum Life"]={{[1]={flags=0,type="BASE",value=88,name="Life",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["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["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["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,type="INC",value=-75,name="ActiveRagingSpiritLimit",keywordFlags=0}},nil}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage "}c["20% increased Onslaught duration"]={{[1]={flags=0,type="INC",value=20,name="Duration",keywordFlags=0}}," Onslaught "}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["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["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,type="LIST",value={skillId="TriggeredShockedGround",level=10},name="ExtraSkill",keywordFlags=0}},nil}c["10% chance to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block {variant:3}20% chance to gain an Endurance Charge when you Block "}c["90% increased Spell Damage"]={{[1]={flags=2,type="INC",value=90,name="Damage",keywordFlags=0}},nil}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire "}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["100% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=100,name="BlockChanceConv",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["Grants level 1 Icestorm Skill"]={{[1]={flags=0,type="LIST",value={skillId="IcestormUniqueStaff12",level=1},name="ExtraSkill",keywordFlags=0}},nil}c["Radius: 18 Chills from your Hits always Slow by at least 10%"]={nil,"Radius: 18 Chills from your Hits always Slow by at least 10% "}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["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=7,name="ElementalDamageGainAsChaos",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["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% chance to Avoid being Frozen"]={{[1]={flags=0,type="BASE",value=50,name="AvoidFrozen",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["+80 to maximum Mana"]={{[1]={flags=0,type="BASE",value=80,name="Mana",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["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["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["8% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Curse Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=2}},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=786432}},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["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 Cold Damage"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",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["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["65% increased Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="EnergyShield",keywordFlags=0}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=210,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["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks "}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["0.4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=0.4,name="LifeRegenPercent",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["0.3% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.3,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["135% increased Energy Shield"]={{[1]={flags=0,type="INC",value=135,name="EnergyShield",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["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["10% increased Melee Damage"]={{[1]={flags=256,type="INC",value=10,name="Damage",keywordFlags=0}},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["+70 to Dexterity"]={{[1]={flags=0,type="BASE",value=70,name="Dex",keywordFlags=0}},nil}c["23% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=23,name="LootRarity",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["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["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,type="LIST",value={skillId="TouchOfGod",level=20},name="ExtraSkill",keywordFlags=0}},nil}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["-10% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=-10,name="ColdResist",keywordFlags=0}},nil}c["6% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=6,name="PhysicalDamage",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["Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Immune to Elemental Ailments while you have Arcane Surge "}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "}c["10% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=10,name="LootRarity",keywordFlags=0}},nil}c["+90 to maximum Mana"]={{[1]={flags=0,type="BASE",value=90,name="Mana",keywordFlags=0}},nil}c["Cannot be Shocked"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidShock",flags=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 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["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["25% chance to Avoid being Chilled"]={{[1]={flags=0,type="BASE",value=25,name="AvoidChilled",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["-30% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-30,name="FireResist",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["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["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["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["+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["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth "}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["+113% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=113,name="CritMultiplier",keywordFlags=0}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,type="INC",value=50,name="PhysicalDamageTaken",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["120% increased Armour"]={{[1]={flags=0,type="INC",value=120,name="Armour",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["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["+650 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=650,name="Evasion",keywordFlags=0}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,type="INC",value=30,name="Damage",keywordFlags=0}},nil}c["50% increased Area Damage"]={{[1]={flags=512,type="INC",value=50,name="Damage",keywordFlags=0}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=20,name="AvoidStun",keywordFlags=0}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=60,name="CritChance",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["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["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges "}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["+13 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=13,name="EnergyShield",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["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["82% increased Spell Damage"]={{[1]={flags=2,type="INC",value=82,name="Damage",keywordFlags=0}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=40,name="CritChance",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["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["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["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}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["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["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 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["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% 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["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["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["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=32768,type="INC",value=50,name="CritChance",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["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow "}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["+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["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 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=15,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}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["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% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=25,name="StunRecovery",keywordFlags=0}},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={[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["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["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["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["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["26% increased Spell Damage"]={{[1]={flags=2,type="INC",value=26,name="Damage",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["+18 to maximum Mana"]={{[1]={flags=0,type="BASE",value=18,name="Mana",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["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,type="INC",value=3,name="Speed",keywordFlags=16384}},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["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["19% chance to Ignite"]={{[1]={flags=0,type="BASE",value=19,name="EnemyIgniteChance",keywordFlags=0}},nil}c["30% increased Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=30,name="EnergyShieldRecharge",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["200% increased Energy Shield"]={{[1]={flags=0,type="INC",value=200,name="EnergyShield",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["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["50% increased Burning Damage"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=8388608}},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["30% increased Cast Speed"]={{[1]={flags=16,type="INC",value=30,name="Speed",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["17% increased Spell Damage"]={{[1]={flags=2,type="INC",value=17,name="Damage",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["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["Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability"]={nil,"Enemies are Unlucky when Damaging you while you are Cursed with Vulnerability "}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["+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["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned "}c["+250 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=250,name="Accuracy",keywordFlags=0}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=4096}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "}c["40% increased Trap Damage"]={{[1]={flags=0,type="INC",value=40,name="Damage",keywordFlags=4096}},nil}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["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["12% increased Physical Damage with Bows"]={{[1]={flags=8192,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=15,name="SpellDodgeChance",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["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield "}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"]={{[1]={flags=1,type="MORE",value=20,name="PhysicalDamage",keywordFlags=0}}," Maximum "}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["6% of maximum Mana and Energy Shield Regenerated per second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=6,name="ManaRegenPercent",keywordFlags=0},[2]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,type="BASE",value=6,name="EnergyShieldRegenPercent",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["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["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["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["Projectiles Pierce an additional Target"]={{[1]={value=1,type="BASE",keywordFlags=0,name="PierceCount",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["625% increased Armour"]={{[1]={flags=0,type="INC",value=625,name="Armour",keywordFlags=0}},nil}c["+10 to maximum Life"]={{[1]={flags=0,type="BASE",value=10,name="Life",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["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["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["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["3% additional chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=3,name="AttackDodgeChance",keywordFlags=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["75% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=75,name="ProjectileSpeed",keywordFlags=0}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,type="INC",value=-40,name="EnergyShieldRecharge",keywordFlags=0}},nil}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["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun "}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["+320 to Armour and Evasion Rating"]={{[1]={flags=0,type="BASE",value=320,name="ArmourAndEvasion",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["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=12,name="Accuracy",keywordFlags=0}},nil}c["50% less Weapon Damage"]={{[1]={flags=8388608,type="MORE",value=-50,name="Damage",keywordFlags=0}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "}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["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["33% increased Physical Damage"]={{[1]={flags=0,type="INC",value=33,name="PhysicalDamage",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["71 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=71,name="LifeRegen",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["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["14% increased Totem Damage"]={{[1]={flags=0,type="INC",value=14,name="Damage",keywordFlags=16384}},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["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,type="BASE",value=-40,name="PhysicalDamageTaken",keywordFlags=0}}," from Attacks "}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["-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["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=8192}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=75,name="LifeRegen",keywordFlags=0}},nil}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["+48 to Strength"]={{[1]={flags=0,type="BASE",value=48,name="Str",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["5% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill "}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["+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["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["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["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["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["+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% increased Cooldown Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="CooldownRecovery",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["120% 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=120,name="CritChance",keywordFlags=0}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire "}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=15,name="Speed",keywordFlags=0}},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["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["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["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["18% increased Physical Damage"]={{[1]={flags=0,type="INC",value=18,name="PhysicalDamage",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["+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["24% increased Physical Damage"]={{[1]={flags=0,type="INC",value=24,name="PhysicalDamage",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 Your Hits have 15% chance to gain 50% of Non-Chaos Damage 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=0,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=0,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=0,name="EnergyShieldRecoveryRate",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased Your Hits have 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned "}c["Enemies Ignited by an Attack Burn 35% faster"]={{[1]={flags=1,type="INC",value=35,name="IgniteBurnFaster",keywordFlags=0}},nil}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge "}c["Ranger: 7% increased Movement Speed"]={{[1]={[1]={type="Condition",var="ConnectedToRangerStart"},flags=0,type="INC",value=7,name="MovementSpeed",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["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["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown "}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["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["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy "}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["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="PhysicalDamageLifeLeech",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["6% chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=6,name="AttackDodgeChance",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["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["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["100% increased Totem Duration"]={{[1]={flags=0,type="INC",value=100,name="TotemDuration",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["Elemental Hit deals 10% increased Damage"]={{[1]={[1]={type="SkillName",skillName="Elemental Hit"},flags=0,type="INC",value=10,name="Damage",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["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["360% increased Physical Damage"]={{[1]={flags=0,type="INC",value=360,name="PhysicalDamage",keywordFlags=0}},nil}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes "}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["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["6% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=6,name="Speed",keywordFlags=0}},nil}c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=15,name="ElementalDamage",keywordFlags=65536}},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["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["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["40% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="StunRecovery",keywordFlags=0}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,type="BASE",value=55,name="Mana",keywordFlags=0}},nil}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=20,name="ElementalDamage",keywordFlags=0}},nil}c["20% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=20,name="EnergyShield",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["55% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=55,name="ManaRegen",keywordFlags=0}},nil}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["+5 to Strength"]={{[1]={flags=0,type="BASE",value=5,name="Str",keywordFlags=0}},nil}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["Counts as Dual Wielding"]={{[1]={value={key="countsAsDualWielding",value=true},type="LIST",keywordFlags=0,name="WeaponData",flags=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["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["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["+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["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["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["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=40,name="ElementalDamage",keywordFlags=65536}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["Adds 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["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["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["+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["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["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["Grants Summon Harbinger of Directions Skill"]={{[1]={flags=0,type="LIST",value={skillId="SummonHarbingerOfDirections",level=1},name="ExtraSkill",keywordFlags=0}},nil}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["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["225% increased Physical Damage"]={{[1]={flags=0,type="INC",value=225,name="PhysicalDamage",keywordFlags=0}},nil}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike "}c["1% of Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=1,name="ManaRegenPercent",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["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["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="Damage",keywordFlags=8388608}},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["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["+300 Intelligence Requirement"]={{[1]={flags=0,type="BASE",value=300,name="IntRequirement",keywordFlags=0}},nil}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["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "}c["Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of "}c["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["16% increased Intelligence"]={{[1]={flags=0,type="INC",value=16,name="Int",keywordFlags=0}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=65536,type="INC",value=20,name="Accuracy",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["+23 to Strength"]={{[1]={flags=0,type="BASE",value=23,name="Str",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["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["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=70,name="PhysicalDamageGainAsFire",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["Your Curses can apply to Hexproof Enemies"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CursesIgnoreHexproof",flags=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 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["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["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["+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["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["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,type="BASE",value=35,name="PhysicalDamageGainAsFire",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["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["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["15% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=15,name="EnemyChillEffect",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["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["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["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["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["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike "}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["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["15% reduced Accuracy Rating"]={{[1]={flags=0,type="INC",value=-15,name="Accuracy",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["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["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["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["110% increased Physical Damage"]={{[1]={flags=0,type="INC",value=110,name="PhysicalDamage",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["+6 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=6,name="LifeOnKill",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["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["+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["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["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["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["40% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=40,name="Damage",keywordFlags=0}},nil}c["+20 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=20,name="EnergyShield",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 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["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["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["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["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["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["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["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["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["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["4% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-4,name="ManaCost",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["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% 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["28% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=28,name="PhysicalDamage",keywordFlags=0}},nil}c["10% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=10,name="Speed",keywordFlags=0}},nil}c["8% reduced Damage taken if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",neg=true,var="BeenHitRecently"},flags=0,type="INC",value=-8,name="DamageTaken",keywordFlags=0}},nil}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["4% increased Attack Speed with Daggers"]={{[1]={flags=32769,type="INC",value=4,name="Speed",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 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["30% chance to Poison on Melee Hit"]={{[1]={flags=256,type="BASE",value=30,name="PoisonChance",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["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=20,name="ElementalDamage",keywordFlags=65536}},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["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["+50 to Dexterity"]={{[1]={flags=0,type="BASE",value=50,name="Dex",keywordFlags=0}},nil}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["Melee Attacks cause Bleeding"]={{[1]={value=100,type="BASE",keywordFlags=0,name="BleedChance",flags=256}},nil}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["+13% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=13,name="LightningResist",keywordFlags=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["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["10% chance of Arrows Piercing {variant:2}Arrows Pierce an additional Target"]={{}," of Arrows Piercing {variant:2}Arrows Pierce an additional Target "}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["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,type="BASE",value=30,name="ManaOnHit",keywordFlags=0}},nil}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=-20,name="FrenzyChargesDuration",keywordFlags=0}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=60,name="MineLayingSpeed",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["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["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["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["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["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["20% increased Arrow Speed"]={{[1]={flags=8192,type="INC",value=20,name="ProjectileSpeed",keywordFlags=0}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour "}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["Spells have an additional Projectile"]={{[1]={value=1,type="BASE",keywordFlags=0,name="ProjectileCount",flags=2}},nil}c["6% increased Attack Speed"]={{[1]={flags=1,type="INC",value=6,name="Speed",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["-20% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-20,name="ElementalResist",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["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect "}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["20% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-20,name="LootRarity",keywordFlags=0}},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["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["+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["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["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["+75 to Intelligence"]={{[1]={flags=0,type="BASE",value=75,name="Int",keywordFlags=0}},nil}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "}c["+100 to Maximum Life"]={{[1]={flags=0,type="BASE",value=100,name="Life",keywordFlags=0}},nil}c["10% chance to Fortify on Melee hit Enemies you Taunt 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 you Taunt take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life "}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["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["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["25% increased Defences"]={{[1]={flags=0,type="INC",value=25,name="Defences",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% increased Movement Speed"]={{[1]={flags=0,type="INC",value=40,name="MovementSpeed",keywordFlags=0}},nil}c["10% increased Light Radius"]={{[1]={flags=0,type="INC",value=10,name="LightRadius",keywordFlags=0}},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["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=40,name="ColdDamageConvertToFire",keywordFlags=0}},nil}c["24% increased Armour"]={{[1]={flags=0,type="INC",value=24,name="Armour",keywordFlags=0}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,type="BASE",value=-6,name="ManaCost",keywordFlags=0}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,type="BASE",value=5,name="ManaRegen",keywordFlags=0}},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["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% 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["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["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["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["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["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["+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["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["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy "}c["150% increased Energy Shield"]={{[1]={flags=0,type="INC",value=150,name="EnergyShield",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["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["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["70% increased Energy Shield"]={{[1]={flags=0,type="INC",value=70,name="EnergyShield",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 Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,type="INC",value=20,name="Speed",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 Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,type="INC",value=20,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 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["270% increased Physical Damage"]={{[1]={flags=0,type="INC",value=270,name="PhysicalDamage",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["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["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["100% increased Mine Arming Speed"]={{}," Arming Speed "}c["16% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=16,name="Damage",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["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["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["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 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["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["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=0,type="BASE",value=75,name="LightningMin",keywordFlags=131072},[2]={[1]={type="Condition",var="Unarmed"},flags=0,type="BASE",value=225,name="LightningMax",keywordFlags=131072}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=25,name="LifeOnHit",keywordFlags=0}},nil}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["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["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["+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["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["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["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you "}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["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["+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["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,type="BASE",value=20,name="FirePenetration",keywordFlags=0}},nil}c["13% chance to Ignite"]={{[1]={flags=0,type="BASE",value=13,name="EnemyIgniteChance",keywordFlags=0}},nil}c["Golems have 13% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType",skillType=62},flags=0,type="LIST",value={mod={flags=0,type="INC",value=13,name="CooldownRecovery",keywordFlags=0}},name="MinionModifier",keywordFlags=0}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you "}c["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["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["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["+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["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["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["25% increased Area of Effect while you have Arcane Surge 0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}}," while you have Arcane Surge 0.5% of Damage Leeched as Life while you have Arcane Surge "}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,type="BASE",value=1,name="EnduranceChargesMax",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["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "}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["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["20% increased Cold Damage"]={{[1]={flags=0,type="INC",value=20,name="ColdDamage",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 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=15,name="LifeRegen",keywordFlags=0}},nil}c["12% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=12,name="LightningDamage",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["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["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["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["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["40% increased Mana Reserved"]={{[1]={flags=0,type="INC",value=40,name="ManaReserved",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["+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["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["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["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["45% increased Physical Damage"]={{[1]={flags=0,type="INC",value=45,name="PhysicalDamage",keywordFlags=0}},nil}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy "}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["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["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["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality "}c["+18% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=18,name="ChaosResist",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["+280 to Armour"]={{[1]={flags=0,type="BASE",value=280,name="Armour",keywordFlags=0}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=325,name="Accuracy",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["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill "}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["35% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=35,name="ManaRegen",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["Celestial Footprints"]={nil,"Celestial Footprints "}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["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=40,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=65536,type="INC",value=25,name="ElementalDamage",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["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,type="BASE",value=20,name="CritMultiplier",keywordFlags=16384}},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,type="INC",value=35,name="StunRecovery",keywordFlags=0}},nil}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["+7% to All Elemental Resistances"]={{[1]={flags=0,type="BASE",value=7,name="ElementalResist",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["8% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=8,name="ElementalDamage",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["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=196608},[2]={flags=0,type="BASE",value=40,name="FireMax",keywordFlags=196608}},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["+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["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["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["+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["10% increased Area Damage"]={{[1]={flags=512,type="INC",value=10,name="Damage",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["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["220% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EvasionAndEnergyShield",keywordFlags=0}},nil}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["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["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["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["28% increased Cold Damage"]={{[1]={flags=0,type="INC",value=28,name="ColdDamage",keywordFlags=0}},nil}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["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=100,name="ColdDamageTakenAsLightning",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["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["50% reduced Duration"]={{[1]={flags=0,type="INC",value=-50,name="Duration",keywordFlags=0}},nil}c["11% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=11,name="LootRarity",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["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["+85 to Maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=85,name="EnergyShield",keywordFlags=0}},nil}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["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["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers "}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["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["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["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["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-18,name="EnemyStunThreshold",keywordFlags=0}},nil}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "}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["45% increased Cold Damage"]={{[1]={flags=0,type="INC",value=45,name="ColdDamage",keywordFlags=0}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=8,name="LightningResist",keywordFlags=0}},nil}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage "}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["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["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["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["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=262144,type="BASE",value=99,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}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["70% increased Burning Damage"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=8388608}},nil}c["20% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=1048576}},nil}c["29% reduced Effect of your Curses"]={{[1]={flags=0,type="INC",value=-29,name="CurseEffect",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["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["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["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 Trap Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=4096}},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["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["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["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["+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["10% reduced Character Size"]={{}," Character Size "}c["6% increased Armour"]={{[1]={flags=0,type="INC",value=6,name="Armour",keywordFlags=0}},nil}c["160% increased Spell Damage"]={{[1]={flags=2,type="INC",value=160,name="Damage",keywordFlags=0}},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 140 to 225 Fire Damage to Spells"]={{[1]={flags=0,type="BASE",value=140,name="FireMin",keywordFlags=131072},[2]={flags=0,type="BASE",value=225,name="FireMax",keywordFlags=131072}},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["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["Grants level 15 Vengeance Skill"]={{[1]={flags=0,type="LIST",value={skillId="Vengeance",level=15},name="ExtraSkill",keywordFlags=0}},nil}c["+20% chance to be Pierced by Projectiles {variant:2}Projectiles Pierce you"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by {variant:2}Projectiles Pierce you "}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["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["4% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=4,name="LifeRegenPercent",keywordFlags=0}},nil}c["Summoned Skeletons take 23.4% 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.234,name="FireDegen",keywordFlags=0}},name="MinionModifier",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["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["50% reduced Attack Speed"]={{[1]={flags=1,type="INC",value=-50,name="Speed",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% 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["6% Chance to Block"]={{[1]={flags=0,type="BASE",value=6,name="BlockChance",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["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 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["25% increased Poison Duration"]={{[1]={flags=0,type="INC",value=25,name="EnemyPoisonDuration",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["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["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}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["20% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=20,name="EnemyShockEffect",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["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["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["15% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=15,name="PhysicalDamage",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["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["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a Flask "}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["Lose 33.5 Mana per Second"]={{[1]={flags=0,type="BASE",value=33.5,name="ManaDegen",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["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["19% increased maximum Mana"]={{[1]={flags=0,type="INC",value=19,name="Mana",keywordFlags=0}},nil}c["70% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=70,name="ChaosDamage",keywordFlags=0}},nil}c["25% more Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=25,name="Damage",keywordFlags=2097152}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=0}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower "}c["+60 to Intelligence"]={{[1]={flags=0,type="BASE",value=60,name="Int",keywordFlags=0}},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["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Maim on Hit while you have a Beastial Minion "}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["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["+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["160% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=160,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["+2 to Maximum number of Zombies"]={{[1]={flags=0,type="BASE",value=2,name="ActiveZombieLimit",keywordFlags=0}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item "}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["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["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["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 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["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.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,type="BASE",value=0.2,name="PhysicalDamageManaLeech",keywordFlags=0}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "}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["+70 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=70,name="EnergyShield",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["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground "}c["70% increased Damage with Bleeding"]={{[1]={flags=0,type="INC",value=70,name="Damage",keywordFlags=2097152}},nil}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["40% reduced Effect of Curses on You"]={{[1]={flags=0,type="INC",value=-40,name="CurseEffectOnSelf",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["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion "}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["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,type="INC",value=50,name="Duration",keywordFlags=0}}," Elemental Ailment on You "}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=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["17% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=17,name="LootQuantity",keywordFlags=0}},nil}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["+220 to Armour"]={{[1]={flags=0,type="BASE",value=220,name="Armour",keywordFlags=0}},nil}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["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["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["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["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["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant "}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["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["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire "}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["4% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=4,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["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["+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["70% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=70,name="ArmourAndEvasion",keywordFlags=0}},nil}c["20% increased Burning Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8388608}},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["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground "}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["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["12% increased Burning Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=8388608}},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["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["+120 to maximum Mana"]={{[1]={flags=0,type="BASE",value=120,name="Mana",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["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["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["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["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["23% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=23,name="BlockChanceConv",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["You have Fortify"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:Fortify",flags=0}},nil}c["25% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=25,name="BlockChanceConv",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["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["5% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=5,name="TrapThrowingSpeed",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["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["Recover 2% of Maximum Life on Kill"]={nil,"Recover 2% of Maximum Life on Kill "}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["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["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["17% increased Strength"]={{[1]={flags=0,type="INC",value=17,name="Str",keywordFlags=0}},nil}c["20% increased Quantity of Items Found"]={{[1]={flags=0,type="INC",value=20,name="LootQuantity",keywordFlags=0}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=16,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["30% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}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["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["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["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["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["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}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["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["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 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["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=16,name="SpellDodgeChance",keywordFlags=0}},nil}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "}c["8% chance to Ignite"]={{[1]={flags=0,type="BASE",value=8,name="EnemyIgniteChance",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["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["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,type="BASE",value=0.2,name="FireDamageLifeLeech",keywordFlags=0}},nil}c["65% increased Armour"]={{[1]={flags=0,type="INC",value=65,name="Armour",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["+26% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=26,name="LightningResist",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["+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["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageConvertToLightning",keywordFlags=0}},nil}c["Adds 25 to 38 Fire Damage"]={{[1]={flags=0,type="BASE",value=25,name="FireMin",keywordFlags=0},[2]={flags=0,type="BASE",value=38,name="FireMax",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,type="INC",value=50,name="EnemyShockDuration",keywordFlags=0}},nil}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["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "}c["10% increased Fortify duration"]={{[1]={flags=0,type="INC",value=10,name="FortifyDuration",keywordFlags=0}},nil}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["Cannot Be Slowed to Below Base Speed"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="ActionSpeedCannotBeBelowBase",flags=0}},nil}c["+150 to maximum Life"]={{[1]={flags=0,type="BASE",value=150,name="Life",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["8% chance to Avoid being Stunned"]={{[1]={flags=0,type="BASE",value=8,name="AvoidStun",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["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["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding "}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["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,type="INC",value=15,name="MovementSpeed",keywordFlags=0}},nil}c["+100 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=100,name="Accuracy",keywordFlags=0}},nil}c["12% increased Damage with Wands"]={{[1]={flags=524288,type="INC",value=12,name="Damage",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["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["16% increased Area of Effect"]={{[1]={flags=0,type="INC",value=16,name="AreaOfEffect",keywordFlags=0}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted "}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["+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["30% increased Mana Leeched per second"]={{[1]={flags=0,type="INC",value=30,name="ManaLeechRate",keywordFlags=0}},nil}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% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place a Totem"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you place a "}c["33% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=33,name="ChaosDamage",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["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["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["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["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["+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["Uses both hand slots"]={nil,"Uses both hand slots "}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["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["15% more Damage over Time"]={{[1]={flags=8,type="MORE",value=15,name="Damage",keywordFlags=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["110% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=110,name="EvasionAndEnergyShield",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 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["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 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["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,type="LIST",value={skillId="Purity",level=10},name="ExtraSkill",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["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,type="LIST",value={skillId="MerveilWarp",level=20},name="ExtraSkill",keywordFlags=0}},nil}c["+200 to maximum Life"]={{[1]={flags=0,type="BASE",value=200,name="Life",keywordFlags=0}},nil}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["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["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["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,type="INC",value=3,name="Int",keywordFlags=0}}," Character Size 6% increased "}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,type="BASE",value=24,name="CritMultiplier",keywordFlags=0}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="FrenzyChargesDuration",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["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["2% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=2,name="Speed",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["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["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["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["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["28% increased Fire Damage"]={{[1]={flags=0,type="INC",value=28,name="FireDamage",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["35% increased Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=0}},nil}c["+145 to maximum Life"]={{[1]={flags=0,type="BASE",value=145,name="Life",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["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% 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["+120 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=120,name="Accuracy",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["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["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["35% increased Damage over Time"]={{[1]={flags=8,type="INC",value=35,name="Damage",keywordFlags=0}},nil}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["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["12% increased Damage over Time"]={{[1]={flags=8,type="INC",value=12,name="Damage",keywordFlags=0}},nil}c["18% increased Attack Speed"]={{[1]={flags=1,type="INC",value=18,name="Speed",keywordFlags=0}},nil}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["30% increased Critical Strike Chance with Wands"]={{[1]={flags=524288,type="INC",value=30,name="CritChance",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["1% of maximum Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=1,name="Mana",keywordFlags=0}}," gained on Kill "}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=25,name="CritChance",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["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["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["8% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={{}," to gain an Endurance Charge when you Stun an Enemy "}c["5% increased Physical Damage"]={{[1]={flags=0,type="INC",value=5,name="PhysicalDamage",keywordFlags=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["10% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=10,name="Damage",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["+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["4% increased Mine Laying Speed"]={{[1]={flags=0,type="INC",value=4,name="MineLayingSpeed",keywordFlags=0}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=2,name="LifeRegenPercent",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["4% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=4,name="Speed",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["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["10% increased Cold Damage"]={{[1]={flags=0,type="INC",value=10,name="ColdDamage",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["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["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["+24% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=24,name="ElementalResist",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["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["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["+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["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["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["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["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["+18% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=18,name="LightningResist",keywordFlags=0}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,type="INC",value=13,name="Speed",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["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["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["+20 to Armour"]={{[1]={flags=0,type="BASE",value=20,name="Armour",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["35% increased maximum Life"]={{[1]={flags=0,type="INC",value=35,name="Life",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["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["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["135% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=135,name="Evasion",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["Unwavering Stance"]={{[1]={value="Unwavering Stance",type="LIST",keywordFlags=0,name="Keystone",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["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["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["+12% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=12,name="LightningResist",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["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["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["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["6% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=6,name="AuraEffect",keywordFlags=0}},nil}c["Rquires Level 64 60% increased Spell Damage"]={nil,"Rquires Level 64 60% increased Spell Damage "}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,type="INC",value=20,name="Damage",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["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["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit "}c["10% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=10,name="Damage",keywordFlags=65536}},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["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["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["60 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=60,name="LifeRegen",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["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["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["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["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["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 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["+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["30% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=30,name="CritChance",keywordFlags=0}},nil}c["10% increased Area of Effect for Traps"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",keywordFlags=4096}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=20,name="Evasion",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["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=8192,type="INC",value=20,name="EnemyStunDuration",keywordFlags=0}},nil}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=25,name="CritMultiplier",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["+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["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["75% increased Charges used"]={{[1]={flags=0,type="INC",value=75,name="FlaskChargesUsed",keywordFlags=0}},nil}c["8% increased Dexterity"]={{[1]={flags=0,type="INC",value=8,name="Dex",keywordFlags=0}},nil}c["You have Onslaught while not on Low Mana"]={{[1]={[1]={type="Condition",var="LowMana"},value=true,type="FLAG",keywordFlags=0,name="Condition:Onslaught",flags=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["15% reduced Flask Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",keywordFlags=0}},nil}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["+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["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["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["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["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["Removes all but one Life on use"]={nil,"Removes all but one Life on use "}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["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% 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["+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["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["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["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life "}c["30% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds"]={{[1]={flags=0,type="BASE",value=30,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 30% chance to create Consecrated Ground on Kill, lasting 8 seconds "}c["Movement Skills cost no Mana"]={{[1]={value=-100,type="MORE",keywordFlags=8,name="ManaCost",flags=0}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=100,name="ManaCost",keywordFlags=0}},nil}c["+150 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=150,name="Accuracy",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["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["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["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["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsFire",keywordFlags=0}},nil}c["4% increased maximum Mana"]={{[1]={flags=0,type="INC",value=4,name="Mana",keywordFlags=0}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block {variant:2,3}Replenishes Energy Shield by 2% of Armour when you Block "}c["14% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=14,name="Evasion",keywordFlags=0}},nil}c["10% increased Damage taken"]={{[1]={flags=0,type="INC",value=10,name="DamageTaken",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["14% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=14,name="LootQuantity",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["+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["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["30% chance to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased Damage to you and Allies 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{[1]={flags=0,type="BASE",value=30,name="Damage",keywordFlags=0}}," to create Consecrated Ground when Hit, lasting 8 seconds Consecrated Ground you create grants 40% increased 10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "}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["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["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["20% increased Life Recovery rate"]={{[1]={flags=0,type="INC",value=20,name="LifeRecoveryRate",keywordFlags=0}},nil}c["40% increased Trap Trigger Area of Effect"]={{[1]={flags=0,type="INC",value=40,name="TrapTriggerAreaOfEffect",keywordFlags=0}},nil}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=280,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalPenetration",keywordFlags=0}},nil}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,type="INC",value=15,name="EnergyShieldRechargeFaster",keywordFlags=0}},nil}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=120,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["10% increased Strength"]={{[1]={flags=0,type="INC",value=10,name="Str",keywordFlags=0}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun "}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["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=262144,type="BASE",value=12,name="CritMultiplier",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["15% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=15,name="ChaosDamage",keywordFlags=0}},nil}c["+67 to maximum Life"]={{[1]={flags=0,type="BASE",value=67,name="Life",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["118% increased Physical Damage"]={{[1]={flags=0,type="INC",value=118,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=4096}},nil}c["Cannot Leech Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotLeechLife",flags=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["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds "}c["+460 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=460,name="Accuracy",keywordFlags=0}},nil}c["10% increased Flask Charges gained"]={{[1]={flags=0,type="INC",value=10,name="FlaskChargesGained",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["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["15% chance to Ignite"]={{[1]={flags=0,type="BASE",value=15,name="EnemyIgniteChance",keywordFlags=0}},nil}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=40,name="ManaRegen",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["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["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["25% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=25,name="Accuracy",keywordFlags=0}},nil}c["Your Hits have 25% chance to gain 25% of Non-Chaos Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=6.25,name="NonChaosDamageGainAsChaos",keywordFlags=0}},nil}c["Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite"]={nil,"Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite "}c["6% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=6,name="EnergyShield",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["15% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=15,name="LightningDamage",keywordFlags=0}},nil}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["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% 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["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["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["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["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 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["8% increased Armour"]={{[1]={flags=0,type="INC",value=8,name="Armour",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["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["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["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["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=6,name="ElementalPenetration",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 Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["30% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=1048576}},nil}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["Attacks with this Weapon deal 90 to 180 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=90},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="ActorCondition",actor="enemy",var="Ignited"},flags=0,type="BASE",keywordFlags=262144,name="PhysicalMax",value=180}},nil}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["7% increased Movement Speed"]={{[1]={flags=0,type="INC",value=7,name="MovementSpeed",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["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}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["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back "}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["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine "}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 Chaos Damage"]={{[1]={flags=0,type="INC",value=20,name="ChaosDamage",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["+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["5% increased Intelligence"]={{[1]={flags=0,type="INC",value=5,name="Int",keywordFlags=0}},nil}c["30% chance to create Consecrated Ground when Hit, lasting 8 seconds"]={{}," to create Consecrated Ground when Hit, lasting 8 seconds "}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["Damage Penetrates 6% Cold Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ColdPenetration",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["15% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=15,name="ElementalDamage",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["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["-5% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=-5,name="ElementalResist",keywordFlags=0}},nil}c["15% increased Totem Placement speed"]={{[1]={flags=0,type="INC",value=15,name="TotemPlacementSpeed",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["20% increased Armour"]={{[1]={flags=0,type="INC",value=20,name="Armour",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["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["Gain 5% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=5,name="PhysicalDamageGainAsChaos",keywordFlags=0}},nil}c["Immune to Elemental Ailments during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect "}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-6,name="ManaCost",keywordFlags=0}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,type="INC",value=20,name="TotemDuration",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["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["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["If you have 3 Primordial Jewels, can Summon up to 1 additional Golem at a time"]={{[1]={[1]={type="MultiplierThreshold",threshold=3,var="PrimordialJewel"},flags=0,type="BASE",value=1,name="ActiveGolemLimit",keywordFlags=0}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies "}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,type="INC",value=5,name="Speed",keywordFlags=16384}},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["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["Totems Reflect 15% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to "}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["+100 to Strength"]={{[1]={flags=0,type="BASE",value=100,name="Str",keywordFlags=0}},nil}c["10% increased Armour"]={{[1]={flags=0,type="INC",value=10,name="Armour",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["You and Allies deal 30% increased Damage while affected by Auras you Cast"]={{[1]={flags=0,type="LIST",value={mod={flags=0,type="INC",value=30,name="Damage",keywordFlags=0}},name="AffectedByAuraMod",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["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use "}c["With at least 40 Strength in Radius, Ground Slam has a 35% 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 35% 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["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,type="BASE",value=20,name="ElementalDamageGainAsChaos",keywordFlags=0}},nil}c["8 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=8,name="LifeRegen",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["25% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=25,name="PhysicalDamage",keywordFlags=0}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,type="INC",value=16,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["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["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "}c["+65 to maximum Mana"]={{[1]={flags=0,type="BASE",value=65,name="Mana",keywordFlags=0}},nil}c["5% increased Damage taken"]={{[1]={flags=0,type="INC",value=5,name="DamageTaken",keywordFlags=0}},nil}c["35% increased Fire Damage"]={{[1]={flags=0,type="INC",value=35,name="FireDamage",keywordFlags=0}},nil}c["15% increased Fire Damage"]={{[1]={flags=0,type="INC",value=15,name="FireDamage",keywordFlags=0}},nil}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["+10 to Strength"]={{[1]={flags=0,type="BASE",value=10,name="Str",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["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["13% increased Cold Damage"]={{[1]={flags=0,type="INC",value=13,name="ColdDamage",keywordFlags=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["Chills from your Hits always Slow 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 Slow by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=-30,name="EnduranceChargesDuration",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["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["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,type="BASE",value=50,name="PhysicalDamageConvertToFire",keywordFlags=0}},nil}c["22% increased Fire Damage"]={{[1]={flags=0,type="INC",value=22,name="FireDamage",keywordFlags=0}},nil}c["13% reduced maximum Mana"]={{[1]={flags=0,type="INC",value=-13,name="Mana",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["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["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["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["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice "}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["180% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=180,name="ArmourAndEnergyShield",keywordFlags=0}},nil}c["4% additional chance to Dodge Attack Hits"]={{[1]={flags=0,type="BASE",value=4,name="AttackDodgeChance",keywordFlags=0}},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["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies "}c["10% chance to Dodge Attacks"]={{[1]={flags=0,type="BASE",value=10,name="AttackDodgeChance",keywordFlags=0}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=120,name="EnergyShield",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["+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["1% additional Block Chance for each Hit you've Blocked in the past 10 seconds"]={{[1]={flags=0,type="BASE",value=1,name="BlockChance",keywordFlags=0}}," for each Hit you've Blocked in the past 10 seconds "}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["+50 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=50,name="Evasion",keywordFlags=0}},nil}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["+18% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=18,name="ElementalResist",keywordFlags=0}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="BASE",value=19,name="ChaosMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=29,name="ChaosMax",keywordFlags=65536}}," while you have a Beastial Minion "}c["15% increased Projectile Speed"]={{[1]={flags=0,type="INC",value=15,name="ProjectileSpeed",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["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["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["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["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-15,name="EnemyStunThreshold",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["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["Blood Magic"]={{[1]={value="Blood Magic",type="LIST",keywordFlags=0,name="Keystone",flags=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["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["+30% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=0}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},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["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["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["50% additional Block Chance for 2 seconds every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,type="BASE",value=50,name="BlockChance",keywordFlags=0}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=0,name="LootQuantity",keywordFlags=0}},nil}c["+15% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=15,name="LightningResist",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["180% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=180,name="Evasion",keywordFlags=0}},nil}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["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["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["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["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["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["You can inflict Bleeding on an Enemy up to 8 times"]={nil,"You can inflict Bleeding on an Enemy up to 8 times "}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["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["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,type="INC",value=5,name="Speed",keywordFlags=16384}},nil}c["Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill "}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["24% increased Physical Damage with Axes"]={{[1]={flags=4096,type="INC",value=24,name="PhysicalDamage",keywordFlags=0}},nil}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,type="INC",value=15,name="Speed",keywordFlags=8}},nil}c["30% increased maximum Mana"]={{[1]={flags=0,type="INC",value=30,name="Mana",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["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8388608,type="BASE",value=8,name="ColdPenetration",keywordFlags=0}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=10,name="LifeOnKill",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["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}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["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["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["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["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["5% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel further, 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 further, dealing up\nto 50% increased Damage with Hits to targets "}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["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["100 Energy Shield Regenerated per second"]={{[1]={flags=0,type="BASE",value=100,name="EnergyShieldRegen",keywordFlags=0}},nil}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["15% reduced Charges used"]={{[1]={flags=0,type="INC",value=-15,name="FlaskChargesUsed",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["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["50% reduced Experience gain"]={{}," Experience gain "}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["10% more Damage"]={{[1]={flags=0,type="MORE",value=10,name="Damage",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["+10% Chance to Block"]={{[1]={flags=0,type="BASE",value=10,name="BlockChance",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["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["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["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["Never deal Critical Strikes"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NeverCrit",flags=0}},nil}c["50% chance to gain a Power Charge when you place a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge when you place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=250,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["190% increased Energy Shield"]={{[1]={flags=0,type="INC",value=190,name="EnergyShield",keywordFlags=0}},nil}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["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["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["50% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=50,name="Evasion",keywordFlags=0}},nil}c["15% chance to Shock"]={{[1]={flags=0,type="BASE",value=15,name="EnemyShockChance",keywordFlags=0}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,type="BASE",value=-50,name="FireResist",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["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["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["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=30,name="CritMultiplier",keywordFlags=8192}},nil}c["220% increased Armour"]={{[1]={flags=0,type="INC",value=220,name="Armour",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["650% increased Armour"]={{[1]={flags=0,type="INC",value=650,name="Armour",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["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 "}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["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["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["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["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=0,type="INC",value=130,name="CritChance",keywordFlags=262144}},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["10% increased Scorching Ray beam length"]={{},"beam length "}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have 10% chance to Block Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells "}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill "}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["Recover 4% of Maximum Mana on Kill"]={nil,"Recover 4% of Maximum Mana on Kill "}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["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["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["Adds 1 to 51 Lightning Damage"]={{[1]={flags=0,type="BASE",value=1,name="LightningMin",keywordFlags=0},[2]={flags=0,type="BASE",value=51,name="LightningMax",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["24% increased Trap Damage"]={{[1]={flags=0,type="INC",value=24,name="Damage",keywordFlags=4096}},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["+12% to Critical Strike Multiplier"]={{[1]={flags=0,type="BASE",value=12,name="CritMultiplier",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["20% increased Mine Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=8192}},nil}c["+10 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=10,name="EnergyShield",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["8% increased Elemental Damage with Wands"]={{[1]={flags=524288,type="INC",value=8,name="ElementalDamage",keywordFlags=0}},nil}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={{[1]={[1]={type="SkillType",skillType=1},[2]={type="SkillType",skillType=3},[3]={type="StatThreshold",stat="PierceCount",threshold=1},flags=0,type="INC",keywordFlags=786432,name="Damage",value=50}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes "}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["50% less Damage with Bleeding"]={{[1]={flags=0,type="MORE",value=-50,name="Damage",keywordFlags=2097152}},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["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={{}," to gain a Power,or Endurance Charge on Hit "}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["Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Culling Strike 20% increased Damage while Leeching Life Leech effects are not removed at Full Life 20% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}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["26% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=26,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["+175 to maximum Life"]={{[1]={flags=0,type="BASE",value=175,name="Life",keywordFlags=0}},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["40% increased Mine Detonation Area of Effect"]={{[1]={flags=0,type="INC",value=40,name="MineDetonationAreaOfEffect",keywordFlags=0}},nil}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances "}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["110% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=110,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["25% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=25,name="EnemyStunDuration",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["+14 to maximum Mana"]={{[1]={flags=0,type="BASE",value=14,name="Mana",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["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["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["13% increased Area Damage"]={{[1]={flags=512,type="INC",value=13,name="Damage",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["+12 to maximum Life"]={{[1]={flags=0,type="BASE",value=12,name="Life",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["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["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["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=20,name="Accuracy",keywordFlags=0}},nil}c["+80 to Armour"]={{[1]={flags=0,type="BASE",value=80,name="Armour",keywordFlags=0}},nil}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{[1]={flags=0,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["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["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=10,name="BleedChance",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["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["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["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["Grants level 20 Summon Beastial Rhoa Skill"]={nil,nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=8,name="EnergyShield",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]={[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["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["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["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["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="DamageLifeLeech",keywordFlags=0}},nil}c["+3% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=3,name="ElementalResist",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["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["+20 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=20,name="Accuracy",keywordFlags=0}},nil}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,type="INC",value=4,name="Speed",keywordFlags=16}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=8,name="Accuracy",keywordFlags=0}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,type="INC",value=-10,name="PhysicalDamage",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["60% increased Physical Damage"]={{[1]={flags=0,type="INC",value=60,name="PhysicalDamage",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["3% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=3,name="Speed",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["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["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["10% increased Spell Damage"]={{[1]={flags=2,type="INC",value=10,name="Damage",keywordFlags=0}},nil}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["Bow Attacks have 15% chance to cause Bleeding"]={{[1]={flags=8193,type="BASE",value=15,name="BleedChance",keywordFlags=0}},nil}c["700% more Unarmed Physical Damage"]={{[1]={flags=1048576,type="MORE",value=700,name="PhysicalDamage",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["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["25% increased Area of Effect while you have Arcane Surge 0.5% of Spell Damage Leeched as Life while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge"]={{[1]={flags=2,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}}," while you have Arcane Surge 0.5% of Damage Leeched as Life while you have Arcane Surge 40% increased Spell Damage while you have Arcane Surge "}c["50% increased Life Leeched per second"]={{[1]={flags=0,type="INC",value=50,name="LifeLeechRate",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["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["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use "}c["+30 to Maximum Mana"]={{[1]={flags=0,type="BASE",value=30,name="Mana",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 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["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,type="LIST",value={skillId="BloodOffering",level=15},name="ExtraSkill",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["+6% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=6,name="ChaosResist",keywordFlags=0}},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["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["+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["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["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses "}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,type="MORE",value=40,name="ProjectileEvadeChance",keywordFlags=0}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}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["+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["5% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,type="INC",value=5,name="AuraEffect",keywordFlags=0}},nil}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=16384,type="INC",value=40,name="CritChance",keywordFlags=0}},nil}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["+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["30% increased Mine Damage"]={{[1]={flags=0,type="INC",value=30,name="Damage",keywordFlags=8192}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}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["25% increased Cold Damage"]={{[1]={flags=0,type="INC",value=25,name="ColdDamage",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["35% increased Burning Damage"]={{[1]={flags=0,type="INC",value=35,name="Damage",keywordFlags=8388608}},nil}c["+20 to Dexterity"]={{[1]={flags=0,type="BASE",value=20,name="Dex",keywordFlags=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["Your Lightning Damage can Poison"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="LightningCanPoison",flags=0}},nil}c["70 Life Regenerated per second"]={{[1]={flags=0,type="BASE",value=70,name="LifeRegen",keywordFlags=0}},nil}c["10% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=10,name="PhysicalDamage",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["10% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=10,name="ElementalDamage",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["18% increased Effect of Chill"]={{[1]={flags=0,type="INC",value=18,name="EnemyChillEffect",keywordFlags=0}},nil}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["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=8192,type="BASE",value=12,name="CritMultiplier",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["8% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,type="INC",value=8,name="Damage",keywordFlags=65536}},nil}c["Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill "}c["80% increased Curse Duration"]={{[1]={flags=0,type="INC",value=80,name="Duration",keywordFlags=2}},nil}c["+75% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=75,name="ColdResist",keywordFlags=0}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=25,name="LootRarity",keywordFlags=0}},nil}c["10% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=10,name="PhysicalDamage",keywordFlags=0}},nil}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["15% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=15,name="Evasion",keywordFlags=0}},nil}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked "}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["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["14% increased Damage with Two Handed Weapons"]={{[1]={flags=33554432,type="INC",value=14,name="Damage",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["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 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["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["+25% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=25,name="ElementalResist",keywordFlags=0}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning "}c["Adds 55 to 75 Cold Damage to Attacks"]={{[1]={flags=0,type="BASE",value=55,name="ColdMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=75,name="ColdMax",keywordFlags=65536}},nil}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["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["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,type="INC",value=20,name="Damage",keywordFlags=0}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage "}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}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["+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["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "}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["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "}c["Can Allocate Passives from the Duelist's starting point"]={{},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["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect "}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["25% increased Mine Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8192}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,type="INC",value=8,name="FireDamage",keywordFlags=0}},nil}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["50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill "}c["10% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=10,name="EnemyShockEffect",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["15% increased Cold Damage"]={{[1]={flags=0,type="INC",value=15,name="ColdDamage",keywordFlags=0}},nil}c["18% increased Strength"]={{[1]={flags=0,type="INC",value=18,name="Str",keywordFlags=0}},nil}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["15% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=15,name="EnduranceChargesDuration",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["Grants level 20 Summon Beastial Rhoa Skill {variant:2}Grants level 20 Summon Beastial Snake Skill"]={nil,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["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["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=150,name="CritChance",keywordFlags=0}},nil}c["50% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=50,name="Damage",keywordFlags=1048576}},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["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["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["20% increased Trap Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=4096}},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["Gain 10% of Wand Physical Damage as Extra Fire Damage"]={{[1]={flags=524288,type="BASE",value=10,name="PhysicalDamageGainAsFire",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["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["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["6% increased maximum Life"]={{[1]={flags=0,type="INC",value=6,name="Life",keywordFlags=0}},nil}c["+76 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=76,name="EnergyShield",keywordFlags=0}},nil}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["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Cloud 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 Cloud 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["10% chance to Poison on Hit with Attacks"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=65536}},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["30% reduced Trap Throwing Speed"]={{[1]={flags=0,type="INC",value=-30,name="TrapThrowingSpeed",keywordFlags=0}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=30,name="ChaosDamage",keywordFlags=0}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,type="INC",value=12,name="FireDamage",keywordFlags=0}},nil}c["-10 Chaos Damage taken"]={{[1]={flags=0,type="BASE",value=-10,name="ChaosDamageTaken",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["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["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["90% increased Charges used"]={{[1]={flags=0,type="INC",value=90,name="FlaskChargesUsed",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["20% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=20,name="FlaskRecoveryRate",keywordFlags=0}},nil}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=43,name="ManaRegen",keywordFlags=0}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,type="INC",value=12,name="ColdDamage",keywordFlags=0}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,type="INC",value=6,name="Mana",keywordFlags=0}},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["Damage Penetrates 5% Cold Resistance"]={{[1]={flags=0,type="BASE",value=5,name="ColdPenetration",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 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["+50 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=50,name="EnergyShield",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["+100 Life Gained on Kill"]={{[1]={flags=0,type="BASE",value=100,name="LifeOnKill",keywordFlags=0}},nil}c["+225 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=225,name="Accuracy",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["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["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["+4% to maximum Block Chance"]={{[1]={flags=0,type="BASE",value=4,name="BlockChanceMax",keywordFlags=0}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=40,name="LootRarity",keywordFlags=0}},nil}c["100% increased Armour"]={{[1]={flags=0,type="INC",value=100,name="Armour",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["100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"]={{[1]={[1]={type="SkillName",skillName="Blink Arrow"},flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=0},[2]={[1]={type="SkillName",skillName="Mirror Arrow"},flags=0,type="INC",value=100,name="CooldownRecovery",keywordFlags=0}},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["18% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=18,name="CurseEffect",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["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use "}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["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["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion"]={nil,"Projectiles from Attacks have 20% chance to Poison on Hit while you have a Beastial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Beastial Minion "}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 Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use "}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["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of "}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["10% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 20 Animate Guardian's when Animated Weapon Kills an Enemy "}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["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}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["+25 to Strength"]={{[1]={flags=0,type="BASE",value=25,name="Str",keywordFlags=0}},nil}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["Culling Strike 20% increased Damage while Leeching"]={nil,"Culling Strike 20% increased Damage while Leeching "}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used "}c["12% increased Melee Physical Damage"]={{[1]={flags=256,type="INC",value=12,name="PhysicalDamage",keywordFlags=0}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,type="INC",value=12,name="Damage",keywordFlags=4096}},nil}c["+25 to Intelligence"]={{[1]={flags=0,type="BASE",value=25,name="Int",keywordFlags=0}},nil}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["Strength provides no bonus to Maximum Life"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="NoStrBonusToLife",flags=0}},nil}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["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["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=35651584,type="INC",value=16,name="PhysicalDamage",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["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["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["5% increased Experience gain"]={{}," Experience gain "}c["+45 to Evasion Rating"]={{[1]={flags=0,type="BASE",value=45,name="Evasion",keywordFlags=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["+15 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=15,name="EnergyShield",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["10% increased Physical Damage"]={{[1]={flags=0,type="INC",value=10,name="PhysicalDamage",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["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="Condition:CanGainAdrenaline",flags=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["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["25% increased Movement Speed"]={{[1]={flags=0,type="INC",value=25,name="MovementSpeed",keywordFlags=0}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,type="MORE",value=-50,name="ManaReserved",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["began Recently"]={nil,"began Recently "}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=10,name="EnemyStunDuration",keywordFlags=0}},nil}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["+144 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=144,name="EnergyShield",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["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["Primordial"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:PrimordialJewel",flags=0}},nil}c["15% increased Totem Life"]={{[1]={flags=0,type="INC",value=15,name="TotemLife",keywordFlags=0}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,type="INC",value=13,name="MovementSpeed",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["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["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=18874368,type="INC",value=25,name="PhysicalDamage",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 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["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use "}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["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["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=25,name="CritChance",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["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["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["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["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 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["33% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=33,name="ElementalDamage",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["5% increased Attack Speed with Wands"]={{[1]={flags=524289,type="INC",value=5,name="Speed",keywordFlags=0}},nil}c["50% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=50,name="Damage",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["24% increased Fire Damage"]={{[1]={flags=0,type="INC",value=24,name="FireDamage",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["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["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["16% increased Totem Life"]={{[1]={flags=0,type="INC",value=16,name="TotemLife",keywordFlags=0}},nil}c["18% increased Fire Damage"]={{[1]={flags=0,type="INC",value=18,name="FireDamage",keywordFlags=0}},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["10% increased Mine Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=8192}},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["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["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["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["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% chance to gain a Frenzy Charge and a Power Charge on Kill"]={{}," to gain aCharge and a Power Charge on Kill "}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["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,type="INC",value=15,name="Mana",keywordFlags=0}},nil}c["100% increased Onslaught Effect"]={{[1]={flags=0,type="INC",value=100,name="OnslaughtEffect",keywordFlags=0}},nil}c["+50 to maximum Life"]={{[1]={flags=0,type="BASE",value=50,name="Life",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["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["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["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,type="BASE",value=1,name="Mana",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["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["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["24% increased Damage with Ailments from Attack Skills while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=2048,type="INC",value=24,name="Damage",keywordFlags=65536}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,type="INC",value=16,name="Damage",keywordFlags=4096}},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["+33 to maximum Life"]={{[1]={flags=0,type="BASE",value=33,name="Life",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["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["40% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=40,name="EnemyStunDuration",keywordFlags=0}},nil}c["+35 to Dexterity"]={{[1]={flags=0,type="BASE",value=35,name="Dex",keywordFlags=0}},nil}c["+160 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=160,name="EnergyShield",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["10% less Mana Reservation of Skills"]={{[1]={flags=0,type="MORE",value=-10,name="ManaReserved",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["420% increased Evasion Rating"]={{[1]={flags=0,type="INC",value=420,name="Evasion",keywordFlags=0}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=35651585,type="INC",value=4,name="Speed",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["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["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["+400 to Accuracy Rating"]={{[1]={flags=0,type="BASE",value=400,name="Accuracy",keywordFlags=0}},nil}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 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["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 57% increased Damage to Ignited Enemies "}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=4096,type="INC",value=15,name="Accuracy",keywordFlags=0}},nil}c["Hits with this Weapon deal 46% 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=46}},nil}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=20,name="LightningPenetration",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["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["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% chance to be Pierced by Projectiles"]={{[1]={flags=0,type="BASE",value=20,name="ProjectileCount",keywordFlags=0}}," to be Pierced by "}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["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["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=5,name="BleedChance",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["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 23.4% of their Maximum Life per second as Fire Damage "}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["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["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["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,type="BASE",value=15,name="BleedChance",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["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel further, 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 further, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill "}c["30% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=30,name="Damage",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["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["4% increased Melee Attack Speed"]={{[1]={flags=257,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["3% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,type="INC",value=-40,name="LootRarity",keywordFlags=0}},nil}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["9% Increased Attack Speed"]={{[1]={flags=1,type="INC",value=9,name="Speed",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["15% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=15,name="Speed",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["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["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy "}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=18,name="EnduranceChargesDuration",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["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 gain Mana during effect"]={nil,"Cannot gain Mana during effect "}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["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["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["22% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=22,name="PhysicalDamage",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["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["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% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=0,type="INC",value=6,name="Damage",keywordFlags=8388608}}," for each Enemy you have Shocked Recently "}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["+30 Mana gained on Kill"]={{[1]={flags=0,type="BASE",value=30,name="ManaOnKill",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["20% increased Physical Damage"]={{[1]={flags=0,type="INC",value=20,name="PhysicalDamage",keywordFlags=0}},nil}c["+15 to maximum Mana"]={{[1]={flags=0,type="BASE",value=15,name="Mana",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["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["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["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["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=32768,type="BASE",value=30,name="CritMultiplier",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 Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells"]={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 Attacks If you've Cast a Spell Recently, you\nand nearby Allies have 10% chance to Block Spells "}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["10% chance that if you would gain a Crab Barrier, you instead gain up to"]={{}," that if you would gain a Crab Barrier, you instead gain up to "}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{[1]={flags=0,type="BASE",value=10,name="CrabBarriersMax",keywordFlags=0}}," that if you would gain a Crab Barrier, you instead gain up to your "}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,type="BASE",value=15,name="CritMultiplier",keywordFlags=8192}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=35,name="LightningResist",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["165% increased Armour"]={{[1]={flags=0,type="INC",value=165,name="Armour",keywordFlags=0}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,type="INC",value=25,name="FireDamage",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["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["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["Flasks gain 3 Charges every 3 seconds"]={nil,"Flasks gain 3 Charges every 3 seconds "}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["8% increased Physical Damage with Staves"]={{[1]={flags=131072,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["60% increased Fire Damage"]={{[1]={flags=0,type="INC",value=60,name="FireDamage",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["130% increased Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EnergyShield",keywordFlags=0}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 Recover 60 Life when you Ignite an Enemy "}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["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "}c["+20% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=20,name="ChaosResist",keywordFlags=0}},nil}c["+40 to maximum Mana"]={{[1]={flags=0,type="BASE",value=40,name="Mana",keywordFlags=0}},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["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["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["+350 to Armour"]={{[1]={flags=0,type="BASE",value=350,name="Armour",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["+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["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["14% increased Melee Damage"]={{[1]={flags=256,type="INC",value=14,name="Damage",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["+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["Cannot be Frozen"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidFreeze",flags=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["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["12% increased Elemental Damage with Weapons"]={{[1]={flags=8388608,type="INC",value=12,name="ElementalDamage",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["+30% to Lightning Resistance"]={{[1]={flags=0,type="BASE",value=30,name="LightningResist",keywordFlags=0}},nil}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["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["+50 to Intelligence"]={{[1]={flags=0,type="BASE",value=50,name="Int",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["50% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=50,name="ArmourAndEvasion",keywordFlags=0}},nil}c["50% of Block Chance applied to Spells"]={{[1]={flags=0,type="BASE",value=50,name="BlockChanceConv",keywordFlags=0}},nil}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you "}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["Nearby Enemies have 100% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 100% reduced Life Regeneration rate "}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["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=18,name="PhysicalDamage",keywordFlags=0}},nil}c["31% increased Spell Damage"]={{[1]={flags=2,type="INC",value=31,name="Damage",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["Unaffected by Temporal Chains"]={{[1]={[1]={type="SkillName",skillName="Temporal Chains"},value=-100,type="MORE",keywordFlags=0,name="CurseEffectOnSelf",flags=0}},nil}c["90% increased Armour"]={{[1]={flags=0,type="INC",value=90,name="Armour",keywordFlags=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["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,type="INC",value=10,name="FlaskManaRecovery",keywordFlags=0}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,type="INC",value=190,name="PhysicalDamage",keywordFlags=0}},nil}c["18% increased Physical Damage with Claws"]={{[1]={flags=16384,type="INC",value=18,name="PhysicalDamage",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["+10% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=10,name="ElementalResist",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["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["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["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["Effects granted for having Rage are Doubled"]={{[1]={value=1,type="BASE",keywordFlags=0,name="Multiplier:RageEffect",flags=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["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=40,name="BleedChance",keywordFlags=0}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=25,name="PhysicalDamage",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["12% increased Armour"]={{[1]={flags=0,type="INC",value=12,name="Armour",keywordFlags=0}},nil}c["+46 to maximum Life"]={{[1]={flags=0,type="BASE",value=46,name="Life",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["25% increased Knockback Distance"]={{[1]={flags=0,type="INC",value=25,name="EnemyKnockbackDistance",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["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["135% increased Armour and Evasion"]={{[1]={flags=0,type="INC",value=135,name="ArmourAndEvasion",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["25% increased Effect of Shock"]={{[1]={flags=0,type="INC",value=25,name="EnemyShockEffect",keywordFlags=0}},nil}c["350% increased Armour"]={{[1]={flags=0,type="INC",value=350,name="Armour",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["+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% 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["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["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["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["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["50% chance to gain a Power Charge when you place 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 place a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}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["+55 to maximum Life"]={{[1]={flags=0,type="BASE",value=55,name="Life",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["18% Chance to Block"]={{[1]={flags=0,type="BASE",value=18,name="BlockChance",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["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["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["+50 to Strength"]={{[1]={flags=0,type="BASE",value=50,name="Str",keywordFlags=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["70% increased Physical Damage"]={{[1]={flags=0,type="INC",value=70,name="PhysicalDamage",keywordFlags=0}},nil}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["+15 to Dexterity"]={{[1]={flags=0,type="BASE",value=15,name="Dex",keywordFlags=0}},nil}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["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["Your Chaos Damage has 60% chance to Poison Enemies"]={{[1]={flags=0,type="BASE",value=60,name="ChaosPoisonChance",keywordFlags=0}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=35,name="CritChance",keywordFlags=0}},nil}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["Damage Penetrates 5% Lightning Resistance"]={{[1]={flags=0,type="BASE",value=5,name="LightningPenetration",keywordFlags=0}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["Gain a Void Charge every second"]={nil,"Gain a Void Charge every second "}c["10% reduced Damage taken from Blinded Enemies"]={{[1]={flags=0,type="INC",value=-10,name="DamageTaken",keywordFlags=0}}," from Blinded Enemies "}c["12% increased Elemental Damage"]={{[1]={flags=0,type="INC",value=12,name="ElementalDamage",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["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["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["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["5 Maximum Void Charges Gain a Void Charge every second"]={nil,"5 Maximum Void Charges Gain a Void Charge every second "}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["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["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["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["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,type="BASE",value=1,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,type="INC",value=20,name="EnduranceChargesDuration",keywordFlags=0}},nil}c["+26 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=26,name="LifeOnKill",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["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,type="BASE",value=800,name="Armour",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["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["120% increased Physical Damage"]={{[1]={flags=0,type="INC",value=120,name="PhysicalDamage",keywordFlags=0}},nil}c["20% reduced Movement Speed"]={{[1]={flags=0,type="INC",value=-20,name="MovementSpeed",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["5% reduced Mana Cost of Skills"]={{[1]={flags=0,type="INC",value=-5,name="ManaCost",keywordFlags=0}},nil}c["25% increased Burning Damage"]={{[1]={flags=0,type="INC",value=25,name="Damage",keywordFlags=8388608}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,type="INC",value=50,name="EnemyStunDuration",keywordFlags=0}}," on you "}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["50% chance to gain a Power Charge when you place a Totem"]={{}," to gain a Power Charge when you place a "}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=30,name="ManaRegen",keywordFlags=0}},nil}c["60% increased Block Recovery"]={{[1]={flags=0,type="INC",value=60,name="BlockRecovery",keywordFlags=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["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["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["5% reduced Damage taken"]={{[1]={flags=0,type="INC",value=-5,name="DamageTaken",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["15% increased Rarity of Items found"]={{[1]={flags=0,type="INC",value=15,name="LootRarity",keywordFlags=0}},nil}c["20% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-20,name="LightRadius",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["145% increased Physical Damage"]={{[1]={flags=0,type="INC",value=145,name="PhysicalDamage",keywordFlags=0}},nil}c["3% increased Attack Speed with Claws"]={{[1]={flags=16385,type="INC",value=3,name="Speed",keywordFlags=0}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["30% increased Lightning Damage"]={{[1]={flags=0,type="INC",value=30,name="LightningDamage",keywordFlags=0}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,type="INC",value=310,name="PhysicalDamage",keywordFlags=0}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,type="INC",value=40,name="Duration",keywordFlags=128}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,type="INC",value=75,name="PhysicalDamage",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 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["30% increased Fire Damage"]={{[1]={flags=0,type="INC",value=30,name="FireDamage",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["Rquires Level 64"]={nil,"Rquires Level 64 "}c["50% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=50,name="CritChance",keywordFlags=0}},nil}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["+60 to Strength"]={{[1]={flags=0,type="BASE",value=60,name="Str",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["+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["+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["+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["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill "}c["150% increased Armour"]={{[1]={flags=0,type="INC",value=150,name="Armour",keywordFlags=0}},nil}c["25% increased Light Radius"]={{[1]={flags=0,type="INC",value=25,name="LightRadius",keywordFlags=0}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,type="BASE",value=60,name="ChaosResist",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["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["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["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["20% increased Area of Effect"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",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 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["+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["+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["Cannot take Reflected Physical Damage"]={nil,"Cannot take Reflected Physical Damage "}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["15% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=15,name="Duration",keywordFlags=0}},nil}c["225% increased Energy Shield"]={{[1]={flags=0,type="INC",value=225,name="EnergyShield",keywordFlags=0}},nil}c["20% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-20,name="StrRequirement",keywordFlags=0}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,type="INC",value=13,name="FlaskRecoveryRate",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["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,type="BASE",value=1.6,name="PhysicalDamageLifeLeech",keywordFlags=0}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=24,name="LootQuantity",keywordFlags=0}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=263,name="EvasionAndEnergyShield",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 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["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike "}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["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["8% increased Attack Speed with Swords"]={{[1]={flags=262145,type="INC",value=8,name="Speed",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["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["40% reduced Light Radius"]={{[1]={flags=0,type="INC",value=-40,name="LightRadius",keywordFlags=0}},nil}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=10,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=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["60% chance to Poison on Hit during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,type="BASE",value=60,name="PoisonChance",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["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=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["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["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["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["+2 to maximum number of Skeletons"]={{[1]={flags=0,type="BASE",value=2,name="ActiveSkeletonLimit",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["20% reduced Skeleton Duration"]={{[1]={[1]={type="SkillName",skillName="Summon Skeleton"},flags=0,type="INC",value=-20,name="Duration",keywordFlags=0}},nil}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["14% increased Physical Damage with Maces"]={{[1]={flags=65536,type="INC",value=14,name="PhysicalDamage",keywordFlags=0}},nil}c["5% increased Dexterity"]={{[1]={flags=0,type="INC",value=5,name="Dex",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["18% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=18,name="EnergyShield",keywordFlags=0}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=32,name="EnergyShield",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["90% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=90,name="ChaosDamage",keywordFlags=0}},nil}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["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block "}c["12% increased Chaos Damage"]={{[1]={flags=0,type="INC",value=12,name="ChaosDamage",keywordFlags=0}},nil}c["Has 1 Abyssal Socket"]={{[1]={flags=0,type="BASE",value=1,name="AbyssalSocketCount",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["15% increased Mine Duration"]={{[1]={flags=0,type="INC",value=15,name="MineDuration",keywordFlags=0}},nil}c["80% less Burning Damage"]={{[1]={flags=0,type="MORE",value=-80,name="Damage",keywordFlags=8388608}},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["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["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["Your hits can't be Evaded"]={{[1]={value=true,type="FLAG",keywordFlags=0,name="CannotBeEvaded",flags=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["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["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["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds "}c["30% increased Accuracy Rating"]={{[1]={flags=0,type="INC",value=30,name="Accuracy",keywordFlags=0}},nil}c["Removes Burning on use"]={nil,"Removes Burning on use "}c["160% increased Armour"]={{[1]={flags=0,type="INC",value=160,name="Armour",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["10% increased Damage with Poison"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=1048576}},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["+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["15% increased Cast Speed for Curses"]={{[1]={flags=16,type="INC",value=15,name="Speed",keywordFlags=2}},nil}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["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["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["13% increased Light Radius"]={{[1]={flags=0,type="INC",value=13,name="LightRadius",keywordFlags=0}},nil}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["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["+120 to maximum Life"]={{[1]={flags=0,type="BASE",value=120,name="Life",keywordFlags=0}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=262144,type="INC",value=25,name="CritChance",keywordFlags=0}},nil}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["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill "}c["Enemies you Taunt 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["4% additional Block Chance"]={{[1]={flags=0,type="BASE",value=4,name="BlockChance",keywordFlags=0}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=262144,type="INC",value=15,name="Accuracy",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["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["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["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned "}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["65% increased Armour and Energy Shield"]={{[1]={flags=0,type="INC",value=65,name="ArmourAndEnergyShield",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["Instant Recovery"]={{[1]={value=100,type="BASE",keywordFlags=0,name="FlaskInstantRecovery",flags=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["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["25% increased Zombie Size"]={{}," Size "}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["20% increased Mana Regeneration Rate"]={{[1]={flags=0,type="INC",value=20,name="ManaRegen",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["8% increased Flask effect duration"]={{[1]={flags=0,type="INC",value=8,name="FlaskDuration",keywordFlags=0}},nil}c["30% increased Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,type="INC",value=30,name="Damage",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["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["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["Crimson Dance"]={{[1]={value="Crimson Dance",type="LIST",keywordFlags=0,name="Keystone",flags=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["+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["Effect per Nearby Enemy"]={nil,"Effect per Nearby Enemy "}c["Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies Take 10% increased Elemental Damage"]={nil,"Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies Take 10% increased Elemental Damage "}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,type="BASE",value=60,name="PhysicalMin",keywordFlags=0},[2]={flags=0,type="BASE",value=120,name="PhysicalMax",keywordFlags=0}},nil}c["+500 to maximum Life"]={{[1]={flags=0,type="BASE",value=500,name="Life",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["+30 to Dexterity"]={{[1]={flags=0,type="BASE",value=30,name="Dex",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["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["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["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["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["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["15% reduced Spark Duration"]={{[1]={[1]={type="SkillName",skillName="Spark"},flags=0,type="INC",value=-15,name="Duration",keywordFlags=0}},nil}c["24% increased Cold Damage"]={{[1]={flags=0,type="INC",value=24,name="ColdDamage",keywordFlags=0}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,type="INC",value=-20,name="EnemyStunThreshold",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["13% increased Fire Damage"]={{[1]={flags=0,type="INC",value=13,name="FireDamage",keywordFlags=0}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,type="INC",value=20,name="AreaOfEffect",keywordFlags=1}},nil}c["15% increased Area Damage"]={{[1]={flags=512,type="INC",value=15,name="Damage",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["20% increased Effect of your Curses"]={{[1]={flags=0,type="INC",value=20,name="CurseEffect",keywordFlags=0}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius "}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage "}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["+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["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["130% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=130,name="EvasionAndEnergyShield",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["8% increased Physical Damage with Swords"]={{[1]={flags=262144,type="INC",value=8,name="PhysicalDamage",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["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["20% increased Melee Damage"]={{[1]={flags=256,type="INC",value=20,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["Radius: 18 Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite"]={nil,"Radius: 18 Chills from your Hits always Slow by at least 10% 20% more Damage with Ignite "}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["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["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["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["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["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% 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["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["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["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["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["Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of their Maximum Life as Lightning Damage which cannot Shock "}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["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["8% increased Life Recovery from Flasks"]={{[1]={flags=0,type="INC",value=8,name="FlaskLifeRecovery",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["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["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["15% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=15,name="PoisonChance",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["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["Has 2 Abyssal Sockets"]={{[1]={flags=0,type="BASE",value=2,name="AbyssalSocketCount",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["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["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["30% increased Chill Duration on Enemies"]={{[1]={flags=0,type="INC",value=30,name="EnemyChillDuration",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["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["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["25% increased Spell Damage"]={{[1]={flags=2,type="INC",value=25,name="Damage",keywordFlags=0}},nil}c["50% increased Fire Damage"]={{[1]={flags=0,type="INC",value=50,name="FireDamage",keywordFlags=0}},nil}c["+110 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=110,name="EnergyShield",keywordFlags=0}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,type="INC",value=6,name="LootQuantity",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["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["25% increased Skill Effect Duration"]={{[1]={flags=0,type="INC",value=25,name="Duration",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["Requiresd level 54 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}},"Requiresd level 54 "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted "}c["18% increased Poison Duration"]={{[1]={flags=0,type="INC",value=18,name="EnemyPoisonDuration",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["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds "}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["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["+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["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["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["165% increased Physical Damage"]={{[1]={flags=0,type="INC",value=165,name="PhysicalDamage",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["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["20% increased Damage"]={{[1]={flags=0,type="INC",value=20,name="Damage",keywordFlags=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["2 additional Arrows"]={{[1]={flags=1,type="BASE",value=2,name="ProjectileCount",keywordFlags=0}},nil}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 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["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["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["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["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["18% increased maximum Mana"]={{[1]={flags=0,type="INC",value=18,name="Mana",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["+8 to Dexterity"]={{[1]={flags=0,type="BASE",value=8,name="Dex",keywordFlags=0}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=32768,type="INC",value=16,name="PhysicalDamage",keywordFlags=0}},nil}c["30% increased Light Radius"]={{[1]={flags=0,type="INC",value=30,name="LightRadius",keywordFlags=0}},nil}c["10% increased Fire Damage"]={{[1]={flags=0,type="INC",value=10,name="FireDamage",keywordFlags=0}},nil}c["30% less Damage with Hits"]={{[1]={flags=0,type="MORE",value=-30,name="Damage",keywordFlags=262144}},nil}c["10% chance to Shock"]={{[1]={flags=0,type="BASE",value=10,name="EnemyShockChance",keywordFlags=0}},nil}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["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,type="BASE",value=2,name="ManaOnHit",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["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["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["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["10% chance to Fortify on Melee hit Enemies you Taunt take 10% increased Damage"]={{[1]={flags=256,type="BASE",value=10,name="Damage",keywordFlags=0}}," to Fortify Enemies you Taunt take 10% increased "}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["+65 to maximum Energy Shield"]={{[1]={flags=0,type="BASE",value=65,name="EnergyShield",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["90% increased Critical Strike Chance for Spells"]={{[1]={flags=2,type="INC",value=90,name="CritChance",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 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["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "}c["25% increased Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies {variant:2,3,4}15% increased Quantity of Items Dropped by Slain Frozen Enemies "}c["4% increased Attack Speed with Axes"]={{[1]={flags=4097,type="INC",value=4,name="Speed",keywordFlags=0}},nil}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,type="BASE",value=10,name="CritMultiplier",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["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["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life "}c["Gore Footprints"]={nil,"Gore Footprints "}c["30% reduced Strength Requirement"]={{[1]={flags=0,type="INC",value=-30,name="StrRequirement",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["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["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["12% Chance to Block"]={{[1]={flags=0,type="BASE",value=12,name="BlockChance",keywordFlags=0}},nil}c["Extra Gore"]={nil,"Extra Gore "}c["+2000 to Armour"]={{[1]={flags=0,type="BASE",value=2000,name="Armour",keywordFlags=0}},nil}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=4194304,type="INC",value=15,name="PhysicalDamage",keywordFlags=0}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,type="BASE",value=5,name="LifeOnKill",keywordFlags=0}},nil}c["+16 to maximum Life"]={{[1]={flags=0,type="BASE",value=16,name="Life",keywordFlags=0}},nil}c["+30% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=30,name="ElementalResist",keywordFlags=0}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,type="INC",value=-15,name="Damage",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["+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["10% chance to Dodge Spell Damage"]={{[1]={flags=0,type="BASE",value=10,name="SpellDodgeChance",keywordFlags=0}},nil}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=18874369,type="INC",value=8,name="Speed",keywordFlags=0}},nil}c["or Unique Enemy"]={nil,"or Unique Enemy "}c["100% increased Stun Duration on Enemies"]={{[1]={flags=0,type="INC",value=100,name="EnemyStunDuration",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["-5% to maximum Fire Resistance"]={{[1]={flags=0,type="BASE",value=-5,name="FireResistMax",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["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8388608,type="BASE",value=5,name="ElementalPenetration",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["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["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["8% increased effect of Flasks on you"]={{[1]={flags=0,type="INC",value=8,name="FlaskEffect",keywordFlags=0}},nil}c["Zealot's Oath"]={{[1]={value="Zealot's Oath",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["25% increased Area of Effect while you have Arcane Surge"]={{[1]={flags=0,type="INC",value=25,name="AreaOfEffect",keywordFlags=0}}," while you have Arcane Surge "}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["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% chance to Ignite"]={{[1]={flags=0,type="BASE",value=10,name="EnemyIgniteChance",keywordFlags=0}},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["220% increased Energy Shield"]={{[1]={flags=0,type="INC",value=220,name="EnergyShield",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["8% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=8,name="PhysicalDamage",keywordFlags=0}},nil}c["10% increased Area of Effect"]={{[1]={flags=0,type="INC",value=10,name="AreaOfEffect",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["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["+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["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["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 Attacks"]={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 Attacks "}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,type="INC",value=115,name="EvasionAndEnergyShield",keywordFlags=0}},nil}c["Immune to Ignite"]={{[1]={value=100,type="BASE",keywordFlags=0,name="AvoidIgnite",flags=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["Iron Reflexes"]={{[1]={value="Iron Reflexes",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["6% increased Attack Speed with Maces"]={{[1]={flags=65537,type="INC",value=6,name="Speed",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["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["Adds 16-25 Physical Damage to Attacks while you have a Beastial Minion"]={{[1]={flags=0,type="BASE",value=16,name="PhysicalMin",keywordFlags=65536},[2]={flags=0,type="BASE",value=25,name="PhysicalMax",keywordFlags=65536}}," while you have a Beastial Minion "}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["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["+6 to maximum Mana"]={{[1]={flags=0,type="BASE",value=6,name="Mana",keywordFlags=0}},nil}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["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,type="INC",value=30,name="ColdDamage",keywordFlags=65536}},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["16% increased Projectile Damage"]={{[1]={flags=1024,type="INC",value=16,name="Damage",keywordFlags=0}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={{},nil}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["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when 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["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["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,type="BASE",value=30,name="PhysicalDamageTakenAsLightning",keywordFlags=0}},nil}c["38% increased Duration"]={{[1]={flags=0,type="INC",value=38,name="Duration",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["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["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["8% increased Critical Strike Chance"]={{[1]={flags=0,type="INC",value=8,name="CritChance",keywordFlags=0}},nil}c["+28% to Cold Resistance"]={{[1]={flags=0,type="BASE",value=28,name="ColdResist",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["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["+22% to all Elemental Resistances"]={{[1]={flags=0,type="BASE",value=22,name="ElementalResist",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["+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["40% increased Block Recovery"]={{[1]={flags=0,type="INC",value=40,name="BlockRecovery",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["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["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,type="BASE",value=20,name="PhysicalDamageGainAsCold",keywordFlags=0}},nil}c["10% reduced Charges used"]={{[1]={flags=0,type="INC",value=-10,name="FlaskChargesUsed",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["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,type="INC",value=35,name="CritChance",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["Avatar of Fire"]={{[1]={value="Avatar of Fire",type="LIST",keywordFlags=0,name="Keystone",flags=0}},nil}c["10% increased Trap Damage"]={{[1]={flags=0,type="INC",value=10,name="Damage",keywordFlags=4096}},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["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["9% increased Movement Speed"]={{[1]={flags=0,type="INC",value=9,name="MovementSpeed",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["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,type="BASE",value=35,name="PhysicalDamageGainAsFire",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["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["+40 to Dexterity"]={{[1]={flags=0,type="BASE",value=40,name="Dex",keywordFlags=0}},nil}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,type="BASE",value=50,name="BleedChance",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% increased maximum Energy Shield"]={{[1]={flags=0,type="INC",value=10,name="EnergyShield",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["+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["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["10% chance to Poison on Hit"]={{[1]={flags=0,type="BASE",value=10,name="PoisonChance",keywordFlags=0}},nil}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,type="INC",value=20,name="Speed",keywordFlags=0}},nil}c["16% Chance to Block"]={{[1]={flags=0,type="BASE",value=16,name="BlockChance",keywordFlags=0}},nil}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,type="BASE",value=100,name="LightningDamageTakenAsCold",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["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 diff --git a/Data/3_0/Skills/act_dex.lua b/Data/3_0/Skills/act_dex.lua index 6842eb70..cb26c89e 100644 --- a/Data/3_0/Skills/act_dex.lua +++ b/Data/3_0/Skills/act_dex.lua @@ -8,17 +8,6 @@ local skills, mod, flag, skill = ... skills["AnimateWeapon"] = { name = "Animate Weapon", - gemTags = { - dexterity = true, - active_skill = true, - duration = true, - minion = true, - spell = true, - }, - gemTagString = "Duration, Minion, Spell", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -84,21 +73,20 @@ skills["AnimateWeapon"] = { [28] = { 86, 42, 100, 216, 54, 46, 69, }, [29] = { 88, 44, 100, 224, 56, 47, 71, }, [30] = { 90, 45, 100, 232, 58, 48, 72, }, + [31] = { 91, 48, 100, 236, 59, 48, 73, }, + [32] = { 92, 50, 100, 240, 60, 49, 74, }, + [33] = { 93, 51, 100, 244, 61, 49, 75, }, + [34] = { 94, 52, 100, 248, 62, 50, 76, }, + [35] = { 95, 54, 100, 252, 63, 50, 76, }, + [36] = { 96, 55, 100, 256, 64, 51, 77, }, + [37] = { 97, 56, 100, 260, 65, 51, 78, }, + [38] = { 98, 57, 100, 264, 66, 52, 78, }, + [39] = { 99, 59, 100, 268, 67, 52, 79, }, + [40] = { 100, 60, 100, 272, 68, 53, 80, }, }, } skills["ArcticArmour"] = { name = "Arctic Armour", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - duration = true, - cold = true, - }, - gemTagString = "Spell, Duration, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -152,20 +140,20 @@ skills["ArcticArmour"] = { [28] = { 86, -15, -14, 5.2, }, [29] = { 88, -15, -15, 5.3, }, [30] = { 90, -15, -15, 5.4, }, + [31] = { 91, -15, -15, 5.45, }, + [32] = { 92, -16, -15, 5.5, }, + [33] = { 93, -16, -15, 5.55, }, + [34] = { 94, -16, -15, 5.6, }, + [35] = { 95, -16, -15, 5.65, }, + [36] = { 96, -16, -16, 5.7, }, + [37] = { 97, -16, -16, 5.75, }, + [38] = { 98, -16, -16, 5.8, }, + [39] = { 99, -16, -16, 5.85, }, + [40] = { 100, -17, -16, 5.9, }, }, } skills["Barrage"] = { name = "Barrage", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - bow = true, - }, - gemTagString = "Attack, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -192,7 +180,7 @@ skills["Barrage"] = { }, baseMods = { skill("castTime", 1), - mod("ProjectileCount", "BASE", 3), --"number_of_additional_projectiles" = 3 + mod("ProjectileCount", "BASE", 4), --"number_of_additional_projectiles" = 4 --"skill_can_fire_arrows" = ? --"skill_can_fire_wand_projectiles" = ? }, @@ -206,53 +194,52 @@ skills["Barrage"] = { [4] = skill("baseMultiplier", nil), }, levels = { - [1] = { 12, 7, 0.5, 0.5, }, - [2] = { 15, 7, 0.51, 0.506, }, - [3] = { 19, 7, 0.51, 0.512, }, - [4] = { 23, 8, 0.52, 0.518, }, - [5] = { 27, 8, 0.52, 0.524, }, - [6] = { 31, 8, 0.53, 0.53, }, - [7] = { 35, 8, 0.54, 0.536, }, - [8] = { 38, 8, 0.54, 0.542, }, - [9] = { 41, 9, 0.55, 0.548, }, - [10] = { 44, 9, 0.55, 0.554, }, - [11] = { 47, 9, 0.56, 0.56, }, - [12] = { 50, 9, 0.57, 0.566, }, - [13] = { 53, 9, 0.57, 0.572, }, - [14] = { 56, 10, 0.58, 0.578, }, - [15] = { 59, 10, 0.58, 0.584, }, - [16] = { 62, 10, 0.59, 0.59, }, - [17] = { 64, 10, 0.6, 0.596, }, - [18] = { 66, 10, 0.6, 0.602, }, - [19] = { 68, 11, 0.61, 0.608, }, - [20] = { 70, 11, 0.61, 0.614, }, - [21] = { 72, 11, 0.62, 0.62, }, - [22] = { 74, 11, 0.63, 0.626, }, - [23] = { 76, 11, 0.63, 0.632, }, - [24] = { 78, 11, 0.64, 0.638, }, - [25] = { 80, 11, 0.64, 0.644, }, - [26] = { 82, 12, 0.65, 0.65, }, - [27] = { 84, 12, 0.66, 0.656, }, - [28] = { 86, 12, 0.66, 0.662, }, - [29] = { 88, 12, 0.67, 0.668, }, - [30] = { 90, 12, 0.67, 0.674, }, + [1] = { 12, 7, 0.4, 0.4, }, + [2] = { 15, 7, 0.4, 0.404, }, + [3] = { 19, 7, 0.41, 0.408, }, + [4] = { 23, 8, 0.41, 0.412, }, + [5] = { 27, 8, 0.42, 0.416, }, + [6] = { 31, 8, 0.42, 0.42, }, + [7] = { 35, 8, 0.42, 0.424, }, + [8] = { 38, 8, 0.43, 0.428, }, + [9] = { 41, 9, 0.43, 0.432, }, + [10] = { 44, 9, 0.44, 0.436, }, + [11] = { 47, 9, 0.44, 0.44, }, + [12] = { 50, 9, 0.44, 0.444, }, + [13] = { 53, 9, 0.45, 0.448, }, + [14] = { 56, 10, 0.45, 0.452, }, + [15] = { 59, 10, 0.46, 0.456, }, + [16] = { 62, 10, 0.46, 0.46, }, + [17] = { 64, 10, 0.46, 0.464, }, + [18] = { 66, 10, 0.47, 0.468, }, + [19] = { 68, 11, 0.47, 0.472, }, + [20] = { 70, 11, 0.48, 0.476, }, + [21] = { 72, 11, 0.48, 0.48, }, + [22] = { 74, 11, 0.48, 0.484, }, + [23] = { 76, 11, 0.49, 0.488, }, + [24] = { 78, 11, 0.49, 0.492, }, + [25] = { 80, 11, 0.5, 0.496, }, + [26] = { 82, 12, 0.5, 0.5, }, + [27] = { 84, 12, 0.5, 0.504, }, + [28] = { 86, 12, 0.51, 0.508, }, + [29] = { 88, 12, 0.51, 0.512, }, + [30] = { 90, 12, 0.52, 0.516, }, + [31] = { 91, 13, 0.52, 0.518, }, + [32] = { 92, 13, 0.52, 0.52, }, + [33] = { 93, 13, 0.52, 0.522, }, + [34] = { 94, 13, 0.52, 0.524, }, + [35] = { 95, 13, 0.53, 0.526, }, + [36] = { 96, 14, 0.53, 0.528, }, + [37] = { 97, 14, 0.53, 0.53, }, + [38] = { 98, 14, 0.53, 0.532, }, + [39] = { 99, 14, 0.53, 0.534, }, + [40] = { 100, 14, 0.54, 0.536, }, }, } skills["BearTrap"] = { name = "Bear Trap", - gemTags = { - trap = true, - dexterity = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Trap, Spell, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "Throws a trap that damages and immobilises a single enemy.", + 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.", skillTypes = { [2] = true, [12] = true, [19] = true, [37] = true, [10] = true, }, baseFlags = { cast = true, @@ -262,11 +249,14 @@ skills["BearTrap"] = { baseMods = { skill("castTime", 1), skill("damageEffectiveness", 2), - skill("CritChance", 5), - skill("cooldown", 3), + skill("CritChance", 6), + skill("cooldown", 4), --"is_trap" = 1 - --"base_trap_duration" = 8000 + --"base_trap_duration" = 4000 --"trap_override_pvp_scaling_time_ms" = 750 + --"bear_trap_damage_taken_+%_from_traps_and_mines" = 15 + --"bear_trap_movement_speed_+%_final" = -80 + skill("duration", 3), --"base_skill_effect_duration" = 3000 --"base_skill_is_trapped" = ? --"display_skill_deals_secondary_damage" = ? skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? @@ -283,52 +273,50 @@ skills["BearTrap"] = { [4] = skill("PhysicalMax", nil), --"secondary_maximum_base_physical_damage" }, levels = { - [1] = { 4, 11, 16, 22, }, - [2] = { 6, 13, 20, 28, }, - [3] = { 9, 15, 27, 38, }, - [4] = { 12, 17, 35, 49, }, - [5] = { 16, 20, 49, 69, }, - [6] = { 20, 22, 67, 94, }, - [7] = { 24, 24, 90, 126, }, - [8] = { 28, 26, 119, 167, }, - [9] = { 32, 28, 156, 218, }, - [10] = { 36, 32, 202, 282, }, - [11] = { 40, 35, 259, 363, }, - [12] = { 44, 38, 331, 463, }, - [13] = { 48, 39, 420, 587, }, - [14] = { 52, 41, 530, 742, }, - [15] = { 55, 42, 630, 881, }, - [16] = { 58, 43, 746, 1045, }, - [17] = { 61, 44, 883, 1236, }, - [18] = { 64, 45, 1043, 1460, }, - [19] = { 67, 46, 1230, 1721, }, - [20] = { 70, 46, 1447, 2026, }, - [21] = { 72, 47, 1613, 2258, }, - [22] = { 74, 48, 1795, 2514, }, - [23] = { 76, 49, 1998, 2797, }, - [24] = { 78, 50, 2222, 3111, }, - [25] = { 80, 50, 2470, 3458, }, - [26] = { 82, 51, 2744, 3842, }, - [27] = { 84, 52, 3047, 4266, }, - [28] = { 86, 53, 3382, 4735, }, - [29] = { 88, 54, 3753, 5254, }, - [30] = { 90, 54, 4162, 5826, }, + [1] = { 4, 6, 16, 22, }, + [2] = { 6, 7, 20, 28, }, + [3] = { 9, 7, 27, 38, }, + [4] = { 12, 8, 35, 49, }, + [5] = { 16, 9, 49, 69, }, + [6] = { 20, 11, 67, 94, }, + [7] = { 24, 12, 90, 126, }, + [8] = { 28, 13, 119, 167, }, + [9] = { 32, 14, 156, 218, }, + [10] = { 36, 16, 202, 282, }, + [11] = { 40, 17, 259, 363, }, + [12] = { 44, 19, 331, 463, }, + [13] = { 48, 20, 420, 587, }, + [14] = { 52, 20, 530, 742, }, + [15] = { 55, 21, 630, 881, }, + [16] = { 58, 22, 746, 1045, }, + [17] = { 61, 23, 883, 1236, }, + [18] = { 64, 23, 1043, 1460, }, + [19] = { 67, 23, 1230, 1721, }, + [20] = { 70, 23, 1447, 2026, }, + [21] = { 72, 24, 1613, 2258, }, + [22] = { 74, 25, 1795, 2514, }, + [23] = { 76, 25, 1998, 2797, }, + [24] = { 78, 25, 2222, 3111, }, + [25] = { 80, 25, 2470, 3458, }, + [26] = { 82, 26, 2744, 3842, }, + [27] = { 84, 27, 3047, 4266, }, + [28] = { 86, 27, 3382, 4735, }, + [29] = { 88, 27, 3753, 5254, }, + [30] = { 90, 28, 4162, 5826, }, + [31] = { 91, 29, 4382, 6135, }, + [32] = { 92, 29, 4614, 6459, }, + [33] = { 93, 29, 4857, 6800, }, + [34] = { 94, 29, 5113, 7158, }, + [35] = { 95, 30, 5381, 7534, }, + [36] = { 96, 31, 5664, 7929, }, + [37] = { 97, 31, 5960, 8344, }, + [38] = { 98, 31, 6272, 8780, }, + [39] = { 99, 32, 6599, 9238, }, + [40] = { 100, 33, 6943, 9720, }, }, } skills["ChargedAttack"] = { name = "Blade Flurry", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - channelling = true, - melee = true, - }, - gemTagString = "Attack, AoE, Channelling, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -405,21 +393,20 @@ skills["ChargedAttack"] = { [28] = { 86, 0.61, 0.612, }, [29] = { 88, 0.62, 0.618, }, [30] = { 90, 0.62, 0.624, }, + [31] = { 91, 0.63, 0.627, }, + [32] = { 92, 0.63, 0.63, }, + [33] = { 93, 0.63, 0.633, }, + [34] = { 94, 0.64, 0.636, }, + [35] = { 95, 0.64, 0.639, }, + [36] = { 96, 0.64, 0.642, }, + [37] = { 97, 0.64, 0.645, }, + [38] = { 98, 0.65, 0.648, }, + [39] = { 99, 0.65, 0.651, }, + [40] = { 100, 0.65, 0.654, }, }, } skills["BladeVortex"] = { name = "Blade Vortex", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, }, @@ -447,10 +434,10 @@ skills["BladeVortex"] = { skill("damageEffectiveness", 0.3), skill("CritChance", 6), skill("duration", 5), --"base_skill_effect_duration" = 5000 - --"maximum_number_of_spinning_blades" = 20 - mod("Damage", "MORE", 20, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "BladeVortexBlade" }), --"blade_vortex_ailment_damage_+%_per_blade_final" = 20 - --"blade_vortex_hit_rate_+%_per_blade" = 10 - mod("Damage", "MORE", 30, 0, KeywordFlag.Hit, { type = "Multiplier", var = "BladeVortexBlade" }), --"blade_vortex_damage_+%_per_blade_final" = 30 + --"maximum_number_of_spinning_blades" = 10 + --"blade_vortex_critical_strike_chance_+%_per_blade" = 10 + --"blade_vortex_hit_rate_+%_per_blade" = 35 + mod("Damage", "MORE", 35, 0, KeywordFlag.Hit, { type = "Multiplier", var = "BladeVortexBlade" }), --"blade_vortex_damage_+%_per_blade_final" = 35 --"is_area_damage" = ? --"skill_can_add_multiple_charges_per_action" = ? --"action_ignores_crit_tracking" = ? @@ -505,33 +492,35 @@ skills["BladeVortex"] = { [28] = { 86, 23, 232, 347, 5, }, [29] = { 88, 24, 250, 375, 5, }, [30] = { 90, 24, 270, 405, 6, }, + [31] = { 91, 26, 281, 421, 6, }, + [32] = { 92, 26, 291, 437, 6, }, + [33] = { 93, 27, 303, 454, 6, }, + [34] = { 94, 28, 314, 471, 6, }, + [35] = { 95, 28, 326, 490, 6, }, + [36] = { 96, 29, 339, 508, 6, }, + [37] = { 97, 29, 352, 528, 6, }, + [38] = { 98, 30, 365, 548, 6, }, + [39] = { 99, 31, 379, 569, 6, }, + [40] = { 100, 31, 394, 590, 7, }, }, } skills["Bladefall"] = { name = "Bladefall", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Spell, AoE", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of five volleys, each wider but less damaging than the last. Enemies can be hit multiple times where these overlap.", + 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, }, baseFlags = { spell = true, area = true, }, baseMods = { - skill("castTime", 0.8), + skill("castTime", 0.7), skill("damageEffectiveness", 0.9), - skill("CritChance", 5), + skill("CritChance", 6), --"bladefall_damage_per_stage_+%_final" = -6 - mod("AreaOfEffect", "INC", 0), --"base_skill_area_of_effect_+%" = 0 + mod("CritChance", "INC", 100, 0, 0, nil), --"critical_strike_chance_+%" = 100 + --"bladefall_critical_strike_chance_+%_per_stage" = -20 + --"bladefall_number_of_volleys" = 5 --"is_area_damage" = ? }, qualityMods = { @@ -574,22 +563,20 @@ skills["Bladefall"] = { [28] = { 86, 31, 782, 1174, }, [29] = { 88, 31, 854, 1282, }, [30] = { 90, 32, 933, 1399, }, + [31] = { 91, 33, 974, 1462, }, + [32] = { 92, 33, 1018, 1527, }, + [33] = { 93, 34, 1063, 1595, }, + [34] = { 94, 35, 1110, 1665, }, + [35] = { 95, 35, 1159, 1739, }, + [36] = { 96, 36, 1211, 1816, }, + [37] = { 97, 37, 1264, 1896, }, + [38] = { 98, 37, 1320, 1979, }, + [39] = { 99, 38, 1378, 2066, }, + [40] = { 100, 38, 1438, 2157, }, }, } skills["BlastRain"] = { name = "Blast Rain", - gemTags = { - fire = true, - dexterity = true, - active_skill = true, - attack = true, - area = true, - bow = true, - }, - gemTagString = "Fire, Attack, AoE, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -611,7 +598,7 @@ skills["BlastRain"] = { }, baseMods = { skill("castTime", 1), - mod("SkillPhysicalDamageConvertToFire", "BASE", 50), --"skill_physical_damage_%_to_convert_to_fire" = 50 + mod("SkillPhysicalDamageConvertToFire", "BASE", 100), --"skill_physical_damage_%_to_convert_to_fire" = 100 mod("AreaOfEffect", "INC", 0), --"base_skill_area_of_effect_+%" = 0 --"blast_rain_number_of_blasts" = 4 --"blast_rain_arrow_delay_ms" = 80 @@ -628,55 +615,53 @@ skills["BlastRain"] = { [2] = skill("manaCost", nil), [3] = skill("damageEffectiveness", nil), [4] = skill("baseMultiplier", nil), + [5] = mod("FirePenetration", "BASE", nil), --"base_reduce_enemy_fire_resistance_%" }, levels = { - [1] = { 28, 8, 0.4, 0.4, }, - [2] = { 31, 8, 0.4, 0.404, }, - [3] = { 34, 8, 0.41, 0.408, }, - [4] = { 37, 8, 0.41, 0.412, }, - [5] = { 40, 9, 0.42, 0.416, }, - [6] = { 42, 9, 0.42, 0.42, }, - [7] = { 44, 9, 0.42, 0.424, }, - [8] = { 46, 9, 0.43, 0.428, }, - [9] = { 48, 9, 0.43, 0.432, }, - [10] = { 50, 9, 0.44, 0.436, }, - [11] = { 52, 9, 0.44, 0.44, }, - [12] = { 54, 10, 0.44, 0.444, }, - [13] = { 56, 10, 0.45, 0.448, }, - [14] = { 58, 10, 0.45, 0.452, }, - [15] = { 60, 10, 0.46, 0.456, }, - [16] = { 62, 10, 0.46, 0.46, }, - [17] = { 64, 10, 0.46, 0.464, }, - [18] = { 66, 10, 0.47, 0.468, }, - [19] = { 68, 10, 0.47, 0.472, }, - [20] = { 70, 10, 0.48, 0.476, }, - [21] = { 72, 10, 0.48, 0.48, }, - [22] = { 74, 10, 0.48, 0.484, }, - [23] = { 76, 11, 0.49, 0.488, }, - [24] = { 78, 11, 0.49, 0.492, }, - [25] = { 80, 11, 0.5, 0.496, }, - [26] = { 82, 11, 0.5, 0.5, }, - [27] = { 84, 11, 0.5, 0.504, }, - [28] = { 86, 12, 0.51, 0.508, }, - [29] = { 88, 12, 0.51, 0.512, }, - [30] = { 90, 12, 0.52, 0.516, }, + [1] = { 28, 8, 0.4, 0.4, 15, }, + [2] = { 31, 8, 0.4, 0.404, 16, }, + [3] = { 34, 8, 0.41, 0.408, 16, }, + [4] = { 37, 8, 0.41, 0.412, 17, }, + [5] = { 40, 9, 0.42, 0.416, 17, }, + [6] = { 42, 9, 0.42, 0.42, 18, }, + [7] = { 44, 9, 0.42, 0.424, 18, }, + [8] = { 46, 9, 0.43, 0.428, 19, }, + [9] = { 48, 9, 0.43, 0.432, 19, }, + [10] = { 50, 9, 0.44, 0.436, 20, }, + [11] = { 52, 9, 0.44, 0.44, 20, }, + [12] = { 54, 10, 0.44, 0.444, 21, }, + [13] = { 56, 10, 0.45, 0.448, 21, }, + [14] = { 58, 10, 0.45, 0.452, 22, }, + [15] = { 60, 10, 0.46, 0.456, 22, }, + [16] = { 62, 10, 0.46, 0.46, 23, }, + [17] = { 64, 10, 0.46, 0.464, 23, }, + [18] = { 66, 10, 0.47, 0.468, 24, }, + [19] = { 68, 10, 0.47, 0.472, 24, }, + [20] = { 70, 10, 0.48, 0.476, 25, }, + [21] = { 72, 10, 0.48, 0.48, 25, }, + [22] = { 74, 10, 0.48, 0.484, 26, }, + [23] = { 76, 11, 0.49, 0.488, 26, }, + [24] = { 78, 11, 0.49, 0.492, 27, }, + [25] = { 80, 11, 0.5, 0.496, 27, }, + [26] = { 82, 11, 0.5, 0.5, 28, }, + [27] = { 84, 11, 0.5, 0.504, 28, }, + [28] = { 86, 12, 0.51, 0.508, 29, }, + [29] = { 88, 12, 0.51, 0.512, 29, }, + [30] = { 90, 12, 0.52, 0.516, 30, }, + [31] = { 91, 12, 0.52, 0.518, 30, }, + [32] = { 92, 12, 0.52, 0.52, 30, }, + [33] = { 93, 12, 0.52, 0.522, 30, }, + [34] = { 94, 12, 0.52, 0.524, 31, }, + [35] = { 95, 12, 0.53, 0.526, 31, }, + [36] = { 96, 12, 0.53, 0.528, 31, }, + [37] = { 97, 13, 0.53, 0.53, 31, }, + [38] = { 98, 13, 0.53, 0.532, 32, }, + [39] = { 99, 13, 0.53, 0.534, 32, }, + [40] = { 100, 13, 0.54, 0.536, 32, }, }, } skills["BlinkArrow"] = { name = "Blink Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - minion = true, - duration = true, - movement = true, - bow = true, - }, - gemTagString = "Attack, Minion, Duration, Movement, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -744,20 +729,20 @@ skills["BlinkArrow"] = { [28] = { 86, 23, 162, 81, 84, }, [29] = { 88, 23, 168, 84, 86, }, [30] = { 90, 24, 174, 87, 88, }, + [31] = { 91, 24, 177, 88, 89, }, + [32] = { 92, 24, 180, 90, 90, }, + [33] = { 93, 25, 183, 92, 91, }, + [34] = { 94, 25, 186, 93, 92, }, + [35] = { 95, 25, 189, 94, 93, }, + [36] = { 96, 26, 192, 96, 94, }, + [37] = { 97, 26, 195, 98, 95, }, + [38] = { 98, 27, 198, 99, 96, }, + [39] = { 99, 27, 201, 100, 97, }, + [40] = { 100, 27, 204, 102, 98, }, }, } skills["BloodRage"] = { name = "Blood Rage", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Spell, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -815,21 +800,20 @@ skills["BloodRage"] = { [28] = { 86, 23, 19, 12.4, 28, }, [29] = { 88, 23, 19, 12.6, 29, }, [30] = { 90, 23, 20, 12.8, 30, }, + [31] = { 91, 23, 20, 12.9, 31, }, + [32] = { 92, 23, 20, 13, 32, }, + [33] = { 93, 23, 20, 13.1, 33, }, + [34] = { 94, 24, 21, 13.2, 34, }, + [35] = { 95, 24, 21, 13.3, 35, }, + [36] = { 96, 24, 21, 13.4, 36, }, + [37] = { 97, 24, 21, 13.5, 37, }, + [38] = { 98, 24, 22, 13.6, 38, }, + [39] = { 99, 24, 22, 13.7, 39, }, + [40] = { 100, 24, 22, 13.8, 40, }, }, } skills["BurningArrow"] = { name = "Burning Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - fire = true, - bow = true, - }, - gemTagString = "Attack, Fire, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, }, @@ -842,7 +826,6 @@ skills["BurningArrow"] = { }, baseMods = { skill("castTime", 1), - mod("EnemyIgniteChance", "BASE", 20), --"base_chance_to_ignite_%" = 20 mod("SkillPhysicalDamageConvertToFire", "BASE", 50), --"skill_physical_damage_%_to_convert_to_fire" = 50 --"skill_can_fire_arrows" = ? }, @@ -854,57 +837,55 @@ skills["BurningArrow"] = { [2] = skill("manaCost", nil), [3] = skill("damageEffectiveness", nil), [4] = skill("baseMultiplier", nil), - [5] = mod("FireDamage", "INC", nil, ModFlag.Dot), --"burn_damage_+%" - --[6] = "ignite_triggered_ground_fire_base_damage_per_minute" + [5] = mod("EnemyIgniteChance", "BASE", nil), --"base_chance_to_ignite_%" + --[6] = "active_skill_ignite_damage_+%_final" + --[7] = "ignite_triggered_ground_fire_base_damage_per_minute" }, levels = { - [1] = { 1, 5, 1.5, 1.5, 10, 180, }, - [2] = { 2, 5, 1.52, 1.518, 11, 206, }, - [3] = { 4, 5, 1.54, 1.536, 12, 266, }, - [4] = { 7, 5, 1.55, 1.554, 13, 375, }, - [5] = { 11, 5, 1.57, 1.572, 14, 565, }, - [6] = { 16, 6, 1.59, 1.59, 15, 894, }, - [7] = { 20, 6, 1.61, 1.608, 16, 1255, }, - [8] = { 24, 6, 1.63, 1.626, 17, 1731, }, - [9] = { 28, 6, 1.64, 1.644, 18, 2353, }, - [10] = { 32, 6, 1.66, 1.662, 19, 3163, }, - [11] = { 36, 7, 1.68, 1.68, 20, 4212, }, - [12] = { 40, 7, 1.7, 1.698, 21, 5567, }, - [13] = { 44, 7, 1.72, 1.716, 22, 7310, }, - [14] = { 48, 7, 1.73, 1.734, 23, 9547, }, - [15] = { 52, 7, 1.75, 1.752, 24, 12407, }, - [16] = { 56, 8, 1.77, 1.77, 25, 16058, }, - [17] = { 60, 8, 1.79, 1.788, 26, 20705, }, - [18] = { 64, 8, 1.81, 1.806, 27, 26610, }, - [19] = { 67, 8, 1.82, 1.824, 28, 32056, }, - [20] = { 70, 8, 1.84, 1.842, 29, 38559, }, - [21] = { 72, 9, 1.86, 1.86, 30, 43577, }, - [22] = { 74, 9, 1.88, 1.878, 31, 49219, }, - [23] = { 76, 9, 1.9, 1.896, 32, 55559, }, - [24] = { 78, 9, 1.91, 1.914, 33, 62682, }, - [25] = { 80, 9, 1.93, 1.932, 34, 70681, }, - [26] = { 82, 10, 1.95, 1.95, 35, 79662, }, - [27] = { 84, 10, 1.97, 1.968, 36, 89741, }, - [28] = { 86, 10, 1.99, 1.986, 37, 101049, }, - [29] = { 88, 10, 2, 2.004, 38, 113733, }, - [30] = { 90, 10, 2.02, 2.022, 39, 127955, }, + [1] = { 1, 5, 1.5, 1.5, 30, 30, 180, }, + [2] = { 2, 5, 1.52, 1.518, 31, 32, 206, }, + [3] = { 4, 5, 1.54, 1.536, 32, 34, 266, }, + [4] = { 7, 5, 1.55, 1.554, 33, 36, 375, }, + [5] = { 11, 5, 1.57, 1.572, 34, 38, 565, }, + [6] = { 16, 6, 1.59, 1.59, 35, 40, 894, }, + [7] = { 20, 6, 1.61, 1.608, 36, 42, 1255, }, + [8] = { 24, 6, 1.63, 1.626, 37, 44, 1731, }, + [9] = { 28, 6, 1.64, 1.644, 38, 46, 2353, }, + [10] = { 32, 6, 1.66, 1.662, 39, 48, 3163, }, + [11] = { 36, 7, 1.68, 1.68, 40, 50, 4212, }, + [12] = { 40, 7, 1.7, 1.698, 41, 52, 5567, }, + [13] = { 44, 7, 1.72, 1.716, 42, 54, 7311, }, + [14] = { 48, 7, 1.73, 1.734, 43, 56, 9547, }, + [15] = { 52, 7, 1.75, 1.752, 44, 58, 12408, }, + [16] = { 56, 8, 1.77, 1.77, 45, 60, 16058, }, + [17] = { 60, 8, 1.79, 1.788, 46, 62, 20705, }, + [18] = { 64, 8, 1.81, 1.806, 47, 64, 26610, }, + [19] = { 67, 8, 1.82, 1.824, 48, 66, 32057, }, + [20] = { 70, 8, 1.84, 1.842, 49, 68, 38559, }, + [21] = { 72, 9, 1.86, 1.86, 50, 70, 43577, }, + [22] = { 74, 9, 1.88, 1.878, 51, 72, 49219, }, + [23] = { 76, 9, 1.9, 1.896, 52, 74, 55559, }, + [24] = { 78, 9, 1.91, 1.914, 53, 76, 62682, }, + [25] = { 80, 9, 1.93, 1.932, 54, 78, 70682, }, + [26] = { 82, 10, 1.95, 1.95, 55, 80, 79662, }, + [27] = { 84, 10, 1.97, 1.968, 56, 82, 89742, }, + [28] = { 86, 10, 1.99, 1.986, 57, 84, 101050, }, + [29] = { 88, 10, 2, 2.004, 58, 86, 113734, }, + [30] = { 90, 10, 2.02, 2.022, 59, 88, 127956, }, + [31] = { 91, 11, 2.03, 2.031, 59, 89, 135700, }, + [32] = { 92, 11, 2.04, 2.04, 60, 90, 143899, }, + [33] = { 93, 11, 2.05, 2.049, 60, 91, 152579, }, + [34] = { 94, 11, 2.06, 2.058, 61, 92, 161766, }, + [35] = { 95, 11, 2.07, 2.067, 61, 93, 171491, }, + [36] = { 96, 11, 2.08, 2.076, 62, 94, 181784, }, + [37] = { 97, 12, 2.09, 2.085, 62, 95, 192678, }, + [38] = { 98, 12, 2.09, 2.094, 63, 96, 204206, }, + [39] = { 99, 12, 2.1, 2.103, 63, 97, 216406, }, + [40] = { 100, 12, 2.11, 2.112, 64, 98, 229315, }, }, } skills["VaalBurningArrow"] = { name = "Vaal Burning Arrow", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - fire = true, - bow = true, - }, - gemTagString = "Vaal, Attack, AoE, Fire, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, }, @@ -919,8 +900,8 @@ skills["VaalBurningArrow"] = { }, baseMods = { skill("castTime", 1), - mod("EnemyIgniteChance", "BASE", 20), --"base_chance_to_ignite_%" = 20 mod("SkillPhysicalDamageConvertToFire", "BASE", 50), --"skill_physical_damage_%_to_convert_to_fire" = 50 + mod("PierceCount", "BASE", 3), --"projectile_base_number_of_targets_to_pierce" = 3 --"vaal_burning_arrow_explode_on_hit" = ? skill("cannotBeEvaded", true), --"global_always_hit" = ? --"skill_can_fire_arrows" = ? @@ -932,57 +913,55 @@ skills["VaalBurningArrow"] = { [1] = skill("levelRequirement", nil), [2] = skill("damageEffectiveness", nil), [3] = skill("baseMultiplier", nil), - [4] = mod("FireDamage", "INC", nil, ModFlag.Dot), --"burn_damage_+%" - --[5] = "ignite_triggered_ground_fire_base_damage_per_minute" + [4] = mod("EnemyIgniteChance", "BASE", nil), --"base_chance_to_ignite_%" + --[5] = "active_skill_ignite_damage_+%_final" + --[6] = "ignite_triggered_ground_fire_base_damage_per_minute" }, levels = { - [1] = { 1, 1.6, 1.6, 10, 192, }, - [2] = { 2, 1.62, 1.62, 11, 220, }, - [3] = { 4, 1.64, 1.64, 12, 284, }, - [4] = { 7, 1.66, 1.66, 13, 401, }, - [5] = { 11, 1.68, 1.68, 14, 603, }, - [6] = { 16, 1.7, 1.7, 15, 955, }, - [7] = { 20, 1.72, 1.72, 16, 1341, }, - [8] = { 24, 1.74, 1.74, 17, 1848, }, - [9] = { 28, 1.76, 1.76, 18, 2513, }, - [10] = { 32, 1.78, 1.78, 19, 3378, }, - [11] = { 36, 1.8, 1.8, 20, 4498, }, - [12] = { 40, 1.82, 1.82, 21, 5946, }, - [13] = { 44, 1.84, 1.84, 22, 7808, }, - [14] = { 48, 1.86, 1.86, 23, 10196, }, - [15] = { 52, 1.88, 1.88, 24, 13251, }, - [16] = { 56, 1.9, 1.9, 25, 17150, }, - [17] = { 60, 1.92, 1.92, 26, 22113, }, - [18] = { 64, 1.94, 1.94, 27, 28419, }, - [19] = { 67, 1.96, 1.96, 28, 34236, }, - [20] = { 70, 1.98, 1.98, 29, 41181, }, - [21] = { 72, 2, 2, 30, 46540, }, - [22] = { 74, 2.02, 2.02, 31, 52566, }, - [23] = { 76, 2.04, 2.04, 32, 59337, }, - [24] = { 78, 2.06, 2.06, 33, 66944, }, - [25] = { 80, 2.08, 2.08, 34, 75487, }, - [26] = { 82, 2.1, 2.1, 35, 85079, }, - [27] = { 84, 2.12, 2.12, 36, 95843, }, - [28] = { 86, 2.14, 2.14, 37, 107921, }, - [29] = { 88, 2.16, 2.16, 38, 121467, }, - [30] = { 90, 2.18, 2.18, 39, 136656, }, + [1] = { 1, 1.6, 1.6, 30, 30, 192, }, + [2] = { 2, 1.62, 1.62, 31, 32, 220, }, + [3] = { 4, 1.64, 1.64, 32, 34, 284, }, + [4] = { 7, 1.66, 1.66, 33, 36, 401, }, + [5] = { 11, 1.68, 1.68, 34, 38, 603, }, + [6] = { 16, 1.7, 1.7, 35, 40, 955, }, + [7] = { 20, 1.72, 1.72, 36, 42, 1341, }, + [8] = { 24, 1.74, 1.74, 37, 44, 1848, }, + [9] = { 28, 1.76, 1.76, 38, 46, 2513, }, + [10] = { 32, 1.78, 1.78, 39, 48, 3378, }, + [11] = { 36, 1.8, 1.8, 40, 50, 4499, }, + [12] = { 40, 1.82, 1.82, 41, 52, 5946, }, + [13] = { 44, 1.84, 1.84, 42, 54, 7808, }, + [14] = { 48, 1.86, 1.86, 43, 56, 10196, }, + [15] = { 52, 1.88, 1.88, 44, 58, 13251, }, + [16] = { 56, 1.9, 1.9, 45, 60, 17150, }, + [17] = { 60, 1.92, 1.92, 46, 62, 22113, }, + [18] = { 64, 1.94, 1.94, 47, 64, 28419, }, + [19] = { 67, 1.96, 1.96, 48, 66, 34237, }, + [20] = { 70, 1.98, 1.98, 49, 68, 41182, }, + [21] = { 72, 2, 2, 50, 70, 46541, }, + [22] = { 74, 2.02, 2.02, 51, 72, 52566, }, + [23] = { 76, 2.04, 2.04, 52, 74, 59338, }, + [24] = { 78, 2.06, 2.06, 53, 76, 66945, }, + [25] = { 80, 2.08, 2.08, 54, 78, 75488, }, + [26] = { 82, 2.1, 2.1, 55, 80, 85080, }, + [27] = { 84, 2.12, 2.12, 56, 82, 95844, }, + [28] = { 86, 2.14, 2.14, 57, 84, 107922, }, + [29] = { 88, 2.16, 2.16, 58, 86, 121468, }, + [30] = { 90, 2.18, 2.18, 59, 88, 136658, }, + [31] = { 91, 2.19, 2.19, 59, 89, 144929, }, + [32] = { 92, 2.2, 2.2, 60, 90, 153685, }, + [33] = { 93, 2.21, 2.21, 60, 91, 162954, }, + [34] = { 94, 2.22, 2.22, 61, 92, 172767, }, + [35] = { 95, 2.23, 2.23, 61, 93, 183153, }, + [36] = { 96, 2.24, 2.24, 62, 94, 194146, }, + [37] = { 97, 2.25, 2.25, 62, 95, 205780, }, + [38] = { 98, 2.26, 2.26, 63, 96, 218093, }, + [39] = { 99, 2.27, 2.27, 63, 97, 231122, }, + [40] = { 100, 2.28, 2.28, 64, 98, 244909, }, }, } skills["PoisonArrow"] = { name = "Caustic Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - duration = true, - chaos = true, - bow = true, - }, - gemTagString = "Attack, AoE, Duration, Chaos, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Fires an arrow which deals additional chaos damage to enemies it hits, and creates a caustic cloud. Enemies in the cloud 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, }, @@ -1026,44 +1005,40 @@ skills["PoisonArrow"] = { [10] = { 36, 11, 3.7, 83.566666666667, 39, 2, }, [11] = { 40, 11, 3.9, 110.45, 40, 2, }, [12] = { 44, 12, 4, 145.03333333333, 41, 2, }, - [13] = { 48, 12, 4.1, 189.4, 42, 2, }, + [13] = { 48, 12, 4.1, 189.41666666667, 42, 2, }, [14] = { 52, 13, 4.2, 246.16666666667, 43, 2, }, [15] = { 55, 13, 4.3, 298.8, 44, 3, }, [16] = { 58, 14, 4.4, 361.91666666667, 45, 3, }, - [17] = { 61, 14, 4.5, 437.5, 46, 3, }, + [17] = { 61, 14, 4.5, 437.51666666667, 46, 3, }, [18] = { 64, 15, 4.6, 527.93333333333, 47, 3, }, [19] = { 67, 15, 4.7, 636, 48, 3, }, [20] = { 70, 16, 4.8, 765.01666666667, 49, 4, }, [21] = { 72, 16, 5, 847.28333333333, 50, 4, }, - [22] = { 74, 17, 5.1, 937.43333333333, 51, 4, }, - [23] = { 76, 17, 5.2, 1036.15, 52, 4, }, - [24] = { 78, 18, 5.3, 1144.1166666667, 53, 4, }, - [25] = { 80, 18, 5.4, 1262.0833333333, 54, 5, }, - [26] = { 82, 19, 5.5, 1390.8333333333, 55, 5, }, - [27] = { 84, 19, 5.6, 1531.2, 56, 5, }, - [28] = { 86, 20, 5.7, 1684.05, 57, 5, }, - [29] = { 88, 20, 5.8, 1850.3, 58, 5, }, - [30] = { 90, 21, 5.9, 2030.9, 59, 6, }, + [22] = { 74, 17, 5.1, 937.45, 51, 4, }, + [23] = { 76, 17, 5.2, 1036.1666666667, 52, 4, }, + [24] = { 78, 18, 5.3, 1144.1333333333, 53, 4, }, + [25] = { 80, 18, 5.4, 1262.1, 54, 5, }, + [26] = { 82, 19, 5.5, 1390.85, 55, 5, }, + [27] = { 84, 19, 5.6, 1531.2166666667, 56, 5, }, + [28] = { 86, 20, 5.7, 1684.0666666667, 57, 5, }, + [29] = { 88, 20, 5.8, 1850.3166666667, 58, 5, }, + [30] = { 90, 21, 5.9, 2030.9166666667, 59, 6, }, + [31] = { 91, 21, 5.9, 2358.7333333333, 59, 6, }, + [32] = { 92, 22, 6, 2485.25, 60, 6, }, + [33] = { 93, 22, 6, 2617.9, 60, 6, }, + [34] = { 94, 23, 6.1, 2757.55, 61, 6, }, + [35] = { 95, 23, 6.1, 2904.2833333333, 61, 6, }, + [36] = { 96, 24, 6.2, 3058.0333333333, 62, 6, }, + [37] = { 97, 24, 6.2, 3219.8833333333, 62, 6, }, + [38] = { 98, 25, 6.3, 3389.85, 63, 6, }, + [39] = { 99, 25, 6.3, 3568.3333333333, 63, 6, }, + [40] = { 100, 26, 6.4, 3755.25, 64, 7, }, }, } skills["ChargedDash"] = { name = "Charged Dash", - gemTags = { - dexterity = true, - active_skill = true, - movement = true, - area = true, - channelling = true, - attack = true, - lightning = true, - melee = true, - }, - gemTagString = "Movement, AoE, Channelling, Attack, Lightning, Melee", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "Channel to project a mirage forward in the direction you're facing, based on your movement speed. Release to teleport to the mirage dealing area of effect damage multiple times along the way. Travelling further applies a bonus to the damage as well as dealing damage in larger areas. Faster attack speed and lower movement speed will both cause damage to be dealt more frequently along the path.", + 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, }, weaponTypes = { ["One Handed Mace"] = true, @@ -1086,11 +1061,15 @@ skills["ChargedDash"] = { baseMods = { skill("castTime", 1), skill("manaCost", 4), - mod("Speed", "MORE", 40, ModFlag.Attack), --"active_skill_attack_speed_+%_final" = 40 + mod("Speed", "MORE", 60, ModFlag.Attack), --"active_skill_attack_speed_+%_final" = 60 mod("SkillPhysicalDamageConvertToLightning", "BASE", 50), --"skill_physical_damage_%_to_convert_to_lightning" = 50 - mod("Damage", "MORE", 100, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "Multiplier", var = "ChargedDashDistance" }), --"charged_dash_damage_+%_maximum" = 100 + --"charged_dash_damage_+%_final" = -100 + --"charged_dash_damage_+%_final_per_stack" = 75 + --"charged_dash_channelling_damage_at_full_stacks_+%_final" = 150 + --"charged_dash_skill_inherent_movement_speed_+%_final" = 30 --"is_area_damage" = ? --"base_skill_show_average_damage_instead_of_dps" = ? + --"skill_can_add_multiple_charges_per_action" = ? }, qualityMods = { mod("Speed", "INC", 0.5, ModFlag.Attack, 0, nil), --"attack_speed_+%" = 0.5 @@ -1101,53 +1080,50 @@ skills["ChargedDash"] = { [3] = skill("baseMultiplier", nil), }, levels = { - [1] = { 28, 0.9, 0.9, }, - [2] = { 31, 0.91, 0.91, }, - [3] = { 34, 0.92, 0.92, }, - [4] = { 37, 0.93, 0.93, }, - [5] = { 40, 0.94, 0.94, }, - [6] = { 42, 0.95, 0.95, }, - [7] = { 44, 0.96, 0.96, }, - [8] = { 46, 0.97, 0.97, }, - [9] = { 48, 0.98, 0.98, }, - [10] = { 50, 0.99, 0.99, }, - [11] = { 52, nil, nil, }, - [12] = { 54, 1.01, 1.01, }, - [13] = { 56, 1.02, 1.02, }, - [14] = { 58, 1.03, 1.03, }, - [15] = { 60, 1.04, 1.04, }, - [16] = { 62, 1.05, 1.05, }, - [17] = { 64, 1.06, 1.06, }, - [18] = { 66, 1.07, 1.07, }, - [19] = { 68, 1.08, 1.08, }, - [20] = { 70, 1.09, 1.09, }, - [21] = { 72, 1.1, 1.1, }, - [22] = { 74, 1.11, 1.11, }, - [23] = { 76, 1.12, 1.12, }, - [24] = { 78, 1.13, 1.13, }, - [25] = { 80, 1.14, 1.14, }, - [26] = { 82, 1.15, 1.15, }, - [27] = { 84, 1.16, 1.16, }, - [28] = { 86, 1.17, 1.17, }, - [29] = { 88, 1.18, 1.18, }, - [30] = { 90, 1.19, 1.19, }, + [1] = { 28, 0.75, 0.75, }, + [2] = { 31, 0.76, 0.759, }, + [3] = { 34, 0.77, 0.768, }, + [4] = { 37, 0.78, 0.777, }, + [5] = { 40, 0.79, 0.786, }, + [6] = { 42, 0.79, 0.795, }, + [7] = { 44, 0.8, 0.804, }, + [8] = { 46, 0.81, 0.813, }, + [9] = { 48, 0.82, 0.822, }, + [10] = { 50, 0.83, 0.831, }, + [11] = { 52, 0.84, 0.84, }, + [12] = { 54, 0.85, 0.849, }, + [13] = { 56, 0.86, 0.858, }, + [14] = { 58, 0.87, 0.867, }, + [15] = { 60, 0.88, 0.876, }, + [16] = { 62, 0.88, 0.885, }, + [17] = { 64, 0.89, 0.894, }, + [18] = { 66, 0.9, 0.903, }, + [19] = { 68, 0.91, 0.912, }, + [20] = { 70, 0.92, 0.921, }, + [21] = { 72, 0.93, 0.93, }, + [22] = { 74, 0.94, 0.939, }, + [23] = { 76, 0.95, 0.948, }, + [24] = { 78, 0.96, 0.957, }, + [25] = { 80, 0.97, 0.966, }, + [26] = { 82, 0.97, 0.975, }, + [27] = { 84, 0.98, 0.984, }, + [28] = { 86, 0.99, 0.993, }, + [29] = { 88, nil, 1.002, }, + [30] = { 90, 1.01, 1.011, }, + [31] = { 91, 1.02, 1.0155, }, + [32] = { 92, 1.02, 1.02, }, + [33] = { 93, 1.02, 1.0245, }, + [34] = { 94, 1.03, 1.029, }, + [35] = { 95, 1.03, 1.0335, }, + [36] = { 96, 1.04, 1.038, }, + [37] = { 97, 1.04, 1.0425, }, + [38] = { 98, 1.05, 1.047, }, + [39] = { 99, 1.05, 1.0515, }, + [40] = { 100, 1.06, 1.056, }, }, } skills["CorpseEruption"] = { name = "Cremation", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - fire = true, - duration = true, - }, - gemTagString = "Projectile, Spell, AoE, Fire, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -1205,7 +1181,7 @@ skills["CorpseEruption"] = { [11] = { 52, 24, 149, 223, }, [12] = { 54, 25, 164, 247, }, [13] = { 56, 25, 182, 272, }, - [14] = { 58, 25, 201, 301, }, + [14] = { 58, 25, 200, 301, }, [15] = { 60, 26, 221, 332, }, [16] = { 62, 26, 244, 365, }, [17] = { 64, 26, 268, 402, }, @@ -1222,24 +1198,22 @@ skills["CorpseEruption"] = { [28] = { 86, 30, 742, 1114, }, [29] = { 88, 31, 812, 1218, }, [30] = { 90, 31, 887, 1331, }, + [31] = { 91, 33, 928, 1392, }, + [32] = { 92, 33, 970, 1455, }, + [33] = { 93, 33, 1013, 1520, }, + [34] = { 94, 34, 1059, 1589, }, + [35] = { 95, 34, 1107, 1660, }, + [36] = { 96, 34, 1156, 1735, }, + [37] = { 97, 34, 1208, 1812, }, + [38] = { 98, 35, 1262, 1893, }, + [39] = { 99, 35, 1319, 1978, }, + [40] = { 100, 35, 1377, 2066, }, }, } skills["Cyclone"] = { name = "Cyclone", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, AoE, Movement, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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 Multistrike or Ruthless.", + 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, }, weaponTypes = { ["None"] = true, @@ -1311,23 +1285,20 @@ skills["Cyclone"] = { [28] = { 86, 0.61, 0.612, 5, }, [29] = { 88, 0.62, 0.618, 5, }, [30] = { 90, 0.62, 0.624, 5, }, + [31] = { 91, 0.63, 0.627, 5, }, + [32] = { 92, 0.63, 0.63, 6, }, + [33] = { 93, 0.63, 0.633, 6, }, + [34] = { 94, 0.64, 0.636, 6, }, + [35] = { 95, 0.64, 0.639, 6, }, + [36] = { 96, 0.64, 0.642, 6, }, + [37] = { 97, 0.64, 0.645, 6, }, + [38] = { 98, 0.65, 0.648, 6, }, + [39] = { 99, 0.65, 0.651, 6, }, + [40] = { 100, 0.65, 0.654, 6, }, }, } skills["VaalCyclone"] = { name = "Vaal Cyclone", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - duration = true, - melee = true, - }, - gemTagString = "Vaal, Attack, AoE, Duration, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -1401,22 +1372,20 @@ skills["VaalCyclone"] = { [28] = { 86, 0.66, 0.662, 5, }, [29] = { 88, 0.67, 0.668, 5, }, [30] = { 90, 0.67, 0.674, 5, }, + [31] = { 91, 0.68, 0.677, 5, }, + [32] = { 92, 0.68, 0.68, 6, }, + [33] = { 93, 0.68, 0.683, 6, }, + [34] = { 94, 0.69, 0.686, 6, }, + [35] = { 95, 0.69, 0.689, 6, }, + [36] = { 96, 0.69, 0.692, 6, }, + [37] = { 97, 0.69, 0.695, 6, }, + [38] = { 98, 0.7, 0.698, 6, }, + [39] = { 99, 0.7, 0.701, 6, }, + [40] = { 100, 0.7, 0.704, 6, }, }, } skills["Desecrate"] = { name = "Desecrate", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Spell, AoE, Duration, Chaos", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -1475,21 +1444,20 @@ skills["Desecrate"] = { [28] = { 86, 25, 730.38333333333, 100, }, [29] = { 88, 25, 816.58333333333, 100, }, [30] = { 90, 26, 912.58333333333, 100, }, + [31] = { 91, 27, 964.58333333333, 100, }, + [32] = { 92, 28, 1019.4666666667, 100, }, + [33] = { 93, 28, 1077.35, 100, }, + [34] = { 94, 29, 1138.4166666667, 100, }, + [35] = { 95, 30, 1202.8333333333, 100, }, + [36] = { 96, 30, 1270.7666666667, 100, }, + [37] = { 97, 31, 1342.4333333333, 100, }, + [38] = { 98, 31, 1418.0166666667, 100, }, + [39] = { 99, 32, 1497.7166666667, 100, }, + [40] = { 100, 33, 1581.7666666667, 100, }, }, } skills["DetonateDead"] = { name = "Detonate Dead", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -1544,106 +1512,102 @@ skills["DetonateDead"] = { [14] = { 52, 24, 320, 480, 2, }, [15] = { 55, 25, 377, 565, 3, }, [16] = { 58, 26, 442, 663, 3, }, - [17] = { 61, 27, 518, 776, 3, }, + [17] = { 61, 27, 518, 777, 3, }, [18] = { 64, 28, 605, 908, 3, }, [19] = { 67, 29, 706, 1060, 3, }, [20] = { 70, 30, 823, 1235, 4, }, [21] = { 72, 31, 911, 1367, 4, }, [22] = { 74, 32, 1008, 1511, 4, }, - [23] = { 76, 33, 1114, 1670, 4, }, + [23] = { 76, 33, 1114, 1671, 4, }, [24] = { 78, 34, 1230, 1845, 4, }, - [25] = { 80, 34, 1358, 2037, 5, }, + [25] = { 80, 34, 1358, 2038, 5, }, [26] = { 82, 35, 1499, 2249, 5, }, - [27] = { 84, 36, 1653, 2480, 5, }, + [27] = { 84, 36, 1654, 2480, 5, }, [28] = { 86, 37, 1823, 2735, 5, }, [29] = { 88, 38, 2009, 3014, 5, }, [30] = { 90, 38, 2213, 3320, 6, }, + [31] = { 91, 39, 2323, 3484, 6, }, + [32] = { 92, 39, 2437, 3656, 6, }, + [33] = { 93, 40, 2557, 3836, 6, }, + [34] = { 94, 40, 2683, 4024, 6, }, + [35] = { 95, 41, 2814, 4221, 7, }, + [36] = { 96, 41, 2952, 4428, 7, }, + [37] = { 97, 42, 3096, 4644, 7, }, + [38] = { 98, 42, 3247, 4870, 7, }, + [39] = { 99, 43, 3405, 5107, 7, }, + [40] = { 100, 43, 3570, 5355, 8, }, }, } skills["VaalDetonateDead"] = { name = "Vaal Detonate Dead", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, - description = "Explodes an unused corpse, dealing fire damage to nearby enemies. Nearby corpses will also explode in a chain reaction. The explosions are not affected by modifiers to spell damage.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [43] = true, [33] = true, }, + 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 = { [11] = true, [10] = true, [43] = true, }, baseFlags = { cast = true, area = true, }, baseMods = { skill("castTime", 0.6), + skill("damageEffectiveness", 1.5), skill("CritChance", 5), - skill("corpseExplosionLifeMultiplier", 0.08), --"corpse_explosion_monster_life_%" = 8 - --"is_area_damage" = 1 - --"display_skill_deals_secondary_damage" = ? - --"detonate_dead_chain_explode" = ? - --"damage_cannot_be_reflected" = ? + skill("corpseExplosionLifeMultiplier", 0.09), --"corpse_explosion_monster_life_%" = 9 skill("explodeCorpse", true), }, qualityMods = { - mod("Speed", "INC", 1, ModFlag.Cast), --"base_cast_speed_+%" = 1 + mod("Damage", "INC", 1, ModFlag.Area), --"area_damage_+%" = 1 }, levelMods = { [1] = skill("levelRequirement", nil), - [2] = skill("FireMin", nil), --"secondary_minimum_base_fire_damage" - [3] = skill("FireMax", nil), --"secondary_maximum_base_fire_damage" + [2] = skill("FireMin", nil), --"spell_minimum_base_fire_damage" + [3] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" + [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" }, levels = { - [1] = { 4, 3, 5, }, - [2] = { 6, 5, 7, }, - [3] = { 9, 7, 10, }, - [4] = { 12, 8, 12, }, - [5] = { 16, 11, 17, }, - [6] = { 20, 15, 23, }, - [7] = { 24, 20, 30, }, - [8] = { 28, 26, 39, }, - [9] = { 32, 33, 50, }, - [10] = { 36, 42, 63, }, - [11] = { 40, 53, 79, }, - [12] = { 44, 66, 99, }, - [13] = { 48, 82, 122, }, - [14] = { 52, 101, 151, }, - [15] = { 55, 118, 177, }, - [16] = { 58, 138, 207, }, - [17] = { 61, 160, 241, }, - [18] = { 64, 186, 280, }, - [19] = { 67, 216, 325, }, - [20] = { 70, 251, 376, }, - [21] = { 72, 276, 415, }, - [22] = { 74, 304, 457, }, - [23] = { 76, 335, 503, }, - [24] = { 78, 369, 553, }, - [25] = { 80, 406, 609, }, - [26] = { 82, 446, 669, }, - [27] = { 84, 490, 735, }, - [28] = { 86, 538, 807, }, - [29] = { 88, 591, 886, }, - [30] = { 90, 649, 973, }, + [1] = { 4, 15, 21, 0, }, + [2] = { 6, 21, 32, 0, }, + [3] = { 9, 32, 42, 0, }, + [4] = { 12, 37, 55, 0, }, + [5] = { 16, 51, 76, 1, }, + [6] = { 20, 68, 102, 1, }, + [7] = { 24, 90, 135, 1, }, + [8] = { 28, 117, 176, 1, }, + [9] = { 32, 151, 227, 1, }, + [10] = { 36, 193, 289, 2, }, + [11] = { 40, 245, 367, 2, }, + [12] = { 44, 308, 462, 2, }, + [13] = { 48, 385, 578, 2, }, + [14] = { 52, 480, 721, 2, }, + [15] = { 55, 565, 847, 3, }, + [16] = { 58, 663, 994, 3, }, + [17] = { 61, 777, 1165, 3, }, + [18] = { 64, 908, 1362, 3, }, + [19] = { 67, 1060, 1590, 3, }, + [20] = { 70, 1235, 1852, 4, }, + [21] = { 72, 1367, 2050, 4, }, + [22] = { 74, 1511, 2267, 4, }, + [23] = { 76, 1671, 2506, 4, }, + [24] = { 78, 1845, 2768, 4, }, + [25] = { 80, 2038, 3056, 5, }, + [26] = { 82, 2249, 3373, 5, }, + [27] = { 84, 2480, 3720, 5, }, + [28] = { 86, 2735, 4102, 5, }, + [29] = { 88, 3014, 4521, 5, }, + [30] = { 90, 3320, 4980, 6, }, + [31] = { 91, 3484, 5226, 6, }, + [32] = { 92, 3656, 5484, 6, }, + [33] = { 93, 3836, 5753, 6, }, + [34] = { 94, 4024, 6036, 6, }, + [35] = { 95, 4221, 6332, 6, }, + [36] = { 96, 4428, 6641, 6, }, + [37] = { 97, 4644, 6966, 6, }, + [38] = { 98, 4870, 7305, 6, }, + [39] = { 99, 5107, 7660, 6, }, + [40] = { 100, 5355, 8032, 7, }, }, } skills["DoubleStrike"] = { name = "Double Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, description = "Performs two fast attacks on target enemy with your main hand melee weapon.", skillTypes = { [1] = true, [7] = true, [25] = true, [28] = true, [24] = true, }, @@ -1677,56 +1641,57 @@ skills["DoubleStrike"] = { [1] = skill("levelRequirement", nil), [2] = skill("damageEffectiveness", nil), [3] = skill("baseMultiplier", nil), + --[4] = "global_minimum_added_physical_damage_vs_bleeding_enemies" + --[5] = "global_maximum_added_physical_damage_vs_bleeding_enemies" + [6] = { mod("MeleeWeaponRange", "BASE", nil), mod("UnarmedRange", "BASE", nil) }, --"melee_range_+" }, levels = { - [1] = { 1, 0.7, 0.7, }, - [2] = { 2, 0.71, 0.714, }, - [3] = { 4, 0.73, 0.728, }, - [4] = { 7, 0.74, 0.742, }, - [5] = { 11, 0.76, 0.756, }, - [6] = { 16, 0.77, 0.77, }, - [7] = { 20, 0.78, 0.784, }, - [8] = { 24, 0.8, 0.798, }, - [9] = { 28, 0.81, 0.812, }, - [10] = { 32, 0.83, 0.826, }, - [11] = { 36, 0.84, 0.84, }, - [12] = { 40, 0.85, 0.854, }, - [13] = { 44, 0.87, 0.868, }, - [14] = { 48, 0.88, 0.882, }, - [15] = { 52, 0.9, 0.896, }, - [16] = { 56, 0.91, 0.91, }, - [17] = { 60, 0.92, 0.924, }, - [18] = { 64, 0.94, 0.938, }, - [19] = { 67, 0.95, 0.952, }, - [20] = { 70, 0.97, 0.966, }, - [21] = { 72, 0.98, 0.98, }, - [22] = { 74, 0.99, 0.994, }, - [23] = { 76, 1.01, 1.008, }, - [24] = { 78, 1.02, 1.022, }, - [25] = { 80, 1.04, 1.036, }, - [26] = { 82, 1.05, 1.05, }, - [27] = { 84, 1.06, 1.064, }, - [28] = { 86, 1.08, 1.078, }, - [29] = { 88, 1.09, 1.092, }, - [30] = { 90, 1.11, 1.106, }, + [1] = { 1, 0.7, 0.7, 3, 5, 0, }, + [2] = { 2, 0.71, 0.713, 3, 5, 0, }, + [3] = { 4, 0.72, 0.725, 4, 6, 0, }, + [4] = { 7, 0.74, 0.738, 6, 8, 0, }, + [5] = { 11, 0.75, 0.75, 8, 11, 0, }, + [6] = { 16, 0.76, 0.763, 10, 16, 1, }, + [7] = { 20, 0.78, 0.776, 13, 20, 1, }, + [8] = { 24, 0.79, 0.788, 17, 25, 1, }, + [9] = { 28, 0.8, 0.801, 20, 30, 1, }, + [10] = { 32, 0.81, 0.813, 25, 37, 1, }, + [11] = { 36, 0.83, 0.826, 30, 44, 2, }, + [12] = { 40, 0.84, 0.839, 35, 53, 2, }, + [13] = { 44, 0.85, 0.851, 42, 63, 2, }, + [14] = { 48, 0.86, 0.864, 49, 74, 2, }, + [15] = { 52, 0.88, 0.876, 58, 86, 2, }, + [16] = { 56, 0.89, 0.889, 67, 101, 3, }, + [17] = { 60, 0.9, 0.902, 78, 117, 3, }, + [18] = { 64, 0.91, 0.914, 91, 136, 3, }, + [19] = { 67, 0.93, 0.927, 101, 152, 3, }, + [20] = { 70, 0.94, 0.939, 113, 169, 3, }, + [21] = { 72, 0.95, 0.952, 121, 181, 4, }, + [22] = { 74, 0.96, 0.965, 130, 195, 4, }, + [23] = { 76, 0.98, 0.977, 139, 209, 4, }, + [24] = { 78, 0.99, 0.99, 149, 224, 4, }, + [25] = { 80, nil, 1.002, 160, 239, 4, }, + [26] = { 82, 1.02, 1.015, 171, 256, 5, }, + [27] = { 84, 1.03, 1.028, 183, 274, 5, }, + [28] = { 86, 1.04, 1.04, 196, 293, 5, }, + [29] = { 88, 1.05, 1.053, 209, 314, 5, }, + [30] = { 90, 1.07, 1.065, 223, 335, 5, }, + [31] = { 91, 1.07, 1.071, 231, 346, 5, }, + [32] = { 92, 1.08, 1.077, 239, 358, 6, }, + [33] = { 93, 1.08, 1.083, 247, 370, 6, }, + [34] = { 94, 1.09, 1.089, 255, 382, 6, }, + [35] = { 95, 1.1, 1.095, 263, 395, 6, }, + [36] = { 96, 1.1, 1.101, 272, 408, 6, }, + [37] = { 97, 1.11, 1.107, 281, 421, 6, }, + [38] = { 98, 1.11, 1.113, 290, 435, 6, }, + [39] = { 99, 1.12, 1.119, 300, 449, 6, }, + [40] = { 100, 1.13, 1.125, 309, 464, 6, }, }, } skills["VaalDoubleStrike"] = { name = "Vaal Double Strike", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - melee = true, - duration = true, - }, - gemTagString = "Vaal, Attack, Melee, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "Performs two fast attacks on target enemy with your main hand melee weapon, and summons your double for a duration to continuously attack monsters in this fashion.", + description = "Performs two fast attacks on target enemy with your main hand melee weapon, each of which summons a double of you for a duration to continuously attack monsters in this fashion.", skillTypes = { [1] = true, [7] = true, [25] = true, [24] = true, [12] = true, [43] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -1750,7 +1715,9 @@ skills["VaalDoubleStrike"] = { baseMods = { skill("castTime", 1), --"base_skill_number_of_additional_hits" = 1 + skill("duration", 6), --"base_skill_effect_duration" = 6000 --"number_of_monsters_to_summon" = 1 + skill("cannotBeEvaded", true), --"global_always_hit" = ? }, qualityMods = { mod("Speed", "INC", 0.5, ModFlag.Attack, 0, nil), --"attack_speed_+%" = 0.5 @@ -1759,53 +1726,56 @@ skills["VaalDoubleStrike"] = { [1] = skill("levelRequirement", nil), [2] = skill("damageEffectiveness", nil), [3] = skill("baseMultiplier", nil), - [4] = skill("duration", nil), --"base_skill_effect_duration" + --[4] = "doubles_have_movement_speed_+%" + --[5] = "global_minimum_added_physical_damage_vs_bleeding_enemies" + --[6] = "global_maximum_added_physical_damage_vs_bleeding_enemies" + [7] = { mod("MeleeWeaponRange", "BASE", nil), mod("UnarmedRange", "BASE", nil) }, --"melee_range_+" }, levels = { - [1] = { 1, 0.7, 0.7, 3.6, }, - [2] = { 2, 0.71, 0.708, 3.7, }, - [3] = { 4, 0.72, 0.716, 3.8, }, - [4] = { 7, 0.72, 0.724, 3.9, }, - [5] = { 11, 0.73, 0.732, 4, }, - [6] = { 16, 0.74, 0.74, 4.1, }, - [7] = { 20, 0.75, 0.748, 4.2, }, - [8] = { 24, 0.76, 0.756, 4.3, }, - [9] = { 28, 0.76, 0.764, 4.4, }, - [10] = { 32, 0.77, 0.772, 4.5, }, - [11] = { 36, 0.78, 0.78, 4.6, }, - [12] = { 40, 0.79, 0.788, 4.7, }, - [13] = { 44, 0.8, 0.796, 4.8, }, - [14] = { 48, 0.8, 0.804, 4.9, }, - [15] = { 52, 0.81, 0.812, 5, }, - [16] = { 56, 0.82, 0.82, 5.1, }, - [17] = { 60, 0.83, 0.828, 5.2, }, - [18] = { 64, 0.84, 0.836, 5.3, }, - [19] = { 67, 0.84, 0.844, 5.4, }, - [20] = { 70, 0.85, 0.852, 5.5, }, - [21] = { 72, 0.86, 0.86, 5.6, }, - [22] = { 74, 0.87, 0.868, 5.7, }, - [23] = { 76, 0.88, 0.876, 5.8, }, - [24] = { 78, 0.88, 0.884, 5.9, }, - [25] = { 80, 0.89, 0.892, 6, }, - [26] = { 82, 0.9, 0.9, 6.1, }, - [27] = { 84, 0.91, 0.908, 6.2, }, - [28] = { 86, 0.92, 0.916, 6.3, }, - [29] = { 88, 0.92, 0.924, 6.4, }, - [30] = { 90, 0.93, 0.932, 6.5, }, + [1] = { 1, 0.33, 0.33, 0, 3, 5, 0, }, + [2] = { 2, 0.33, 0.334, 3, 3, 5, 0, }, + [3] = { 4, 0.34, 0.338, 6, 4, 6, 0, }, + [4] = { 7, 0.34, 0.342, 9, 6, 8, 0, }, + [5] = { 11, 0.35, 0.346, 12, 8, 11, 0, }, + [6] = { 16, 0.35, 0.35, 15, 10, 16, 1, }, + [7] = { 20, 0.35, 0.354, 18, 13, 20, 1, }, + [8] = { 24, 0.36, 0.358, 21, 17, 25, 1, }, + [9] = { 28, 0.36, 0.362, 24, 20, 30, 1, }, + [10] = { 32, 0.37, 0.366, 27, 25, 37, 1, }, + [11] = { 36, 0.37, 0.37, 30, 30, 44, 2, }, + [12] = { 40, 0.37, 0.374, 33, 35, 53, 2, }, + [13] = { 44, 0.38, 0.378, 36, 42, 63, 2, }, + [14] = { 48, 0.38, 0.381, 39, 49, 74, 2, }, + [15] = { 52, 0.38, 0.385, 42, 58, 86, 2, }, + [16] = { 56, 0.39, 0.389, 45, 67, 101, 3, }, + [17] = { 60, 0.39, 0.393, 48, 78, 117, 3, }, + [18] = { 64, 0.4, 0.397, 51, 91, 136, 3, }, + [19] = { 67, 0.4, 0.401, 54, 101, 152, 3, }, + [20] = { 70, 0.4, 0.405, 57, 113, 169, 3, }, + [21] = { 72, 0.41, 0.409, 60, 121, 181, 4, }, + [22] = { 74, 0.41, 0.413, 63, 130, 195, 4, }, + [23] = { 76, 0.42, 0.417, 66, 139, 209, 4, }, + [24] = { 78, 0.42, 0.421, 69, 149, 224, 4, }, + [25] = { 80, 0.42, 0.425, 72, 160, 239, 4, }, + [26] = { 82, 0.43, 0.429, 75, 171, 256, 5, }, + [27] = { 84, 0.43, 0.433, 78, 183, 274, 5, }, + [28] = { 86, 0.44, 0.437, 81, 196, 293, 5, }, + [29] = { 88, 0.44, 0.441, 84, 209, 314, 5, }, + [30] = { 90, 0.44, 0.445, 87, 223, 335, 5, }, + [31] = { 91, 0.45, 0.447, 88, 231, 346, 5, }, + [32] = { 92, 0.45, 0.449, 90, 239, 358, 6, }, + [33] = { 93, 0.45, 0.451, 92, 247, 370, 6, }, + [34] = { 94, 0.45, 0.453, 93, 255, 382, 6, }, + [35] = { 95, 0.45, 0.455, 94, 263, 395, 6, }, + [36] = { 96, 0.46, 0.457, 96, 272, 408, 6, }, + [37] = { 97, 0.46, 0.459, 98, 281, 421, 6, }, + [38] = { 98, 0.46, 0.461, 99, 290, 435, 6, }, + [39] = { 99, 0.46, 0.463, 100, 300, 449, 6, }, + [40] = { 100, 0.46, 0.465, 102, 309, 464, 6, }, }, } skills["DualStrike"] = { name = "Dual Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -1867,27 +1837,23 @@ skills["DualStrike"] = { [28] = { 86, 1.12, 1.12, }, [29] = { 88, 1.13, 1.13, }, [30] = { 90, 1.14, 1.14, }, + [31] = { 91, 1.15, 1.145, }, + [32] = { 92, 1.15, 1.15, }, + [33] = { 93, 1.16, 1.155, }, + [34] = { 94, 1.16, 1.16, }, + [35] = { 95, 1.17, 1.165, }, + [36] = { 96, 1.17, 1.17, }, + [37] = { 97, 1.18, 1.175, }, + [38] = { 98, 1.18, 1.18, }, + [39] = { 99, 1.19, 1.185, }, + [40] = { 100, 1.19, 1.19, }, }, } skills["ElementalHit"] = { name = "Elemental Hit", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - fire = true, - cold = true, - lightning = true, - bow = true, - }, - gemTagString = "Attack, Melee, Fire, Cold, Lightning, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "A standard attack (with any weapon) that adds damage of a random element.", - 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, }, + 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, }, parts = { { name = "Added fire", @@ -1906,9 +1872,12 @@ skills["ElementalHit"] = { }, baseMods = { skill("castTime", 1), - { mod("EnemyFreezeChance", "BASE", 10), mod("EnemyShockChance", "BASE", 10), mod("EnemyIgniteChance", "BASE", 10) }, --"chance_to_freeze_shock_ignite_%" = 10 + skill("radiusExtra", 0), --"active_skill_base_radius_+" = 0 --"skill_can_fire_arrows" = ? --"skill_can_fire_wand_projectiles" = ? + --"elemental_hit_damage_+10%_final_per_enemy_elemental_ailment" = ? + --"elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment" = ? + --"elemental_hit_no_physical_chaos_damage" = ? }, qualityMods = { mod("ElementalDamage", "INC", 1), --"elemental_damage_+%" = 1 @@ -1916,58 +1885,59 @@ skills["ElementalHit"] = { levelMods = { [1] = skill("levelRequirement", nil), [2] = skill("manaCost", nil), - [3] = mod("FireMin", "BASE", nil, 0, KeywordFlag.Attack, { type = "SkillPart", skillPart = 1 }), --"attack_minimum_base_fire_damage_for_elemental_hit" - [4] = mod("FireMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "SkillPart", skillPart = 1 }), --"attack_maximum_base_fire_damage_for_elemental_hit" - [5] = mod("ColdMin", "BASE", nil, 0, KeywordFlag.Attack, { type = "SkillPart", skillPart = 2 }), --"attack_minimum_base_cold_damage_for_elemental_hit" - [6] = mod("ColdMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "SkillPart", skillPart = 2 }), --"attack_maximum_base_cold_damage_for_elemental_hit" - [7] = mod("LightningMin", "BASE", nil, 0, KeywordFlag.Attack, { type = "SkillPart", skillPart = 3 }), --"attack_minimum_base_lightning_damage_for_elemental_hit" - [8] = mod("LightningMax", "BASE", nil, 0, KeywordFlag.Attack, { type = "SkillPart", skillPart = 3 }), --"attack_maximum_base_lightning_damage_for_elemental_hit" + [3] = mod("FireMin", "BASE", nil, 0, KeywordFlag.Attack, nil), --"attack_minimum_added_fire_damage" + [4] = mod("FireMax", "BASE", nil, 0, KeywordFlag.Attack, nil), --"attack_maximum_added_fire_damage" + [5] = mod("ColdMin", "BASE", nil, 0, KeywordFlag.Attack, nil), --"attack_minimum_added_cold_damage" + [6] = mod("ColdMax", "BASE", nil, 0, KeywordFlag.Attack, nil), --"attack_maximum_added_cold_damage" + [7] = mod("LightningMin", "BASE", nil, 0, KeywordFlag.Attack, nil), --"attack_minimum_added_lightning_damage" + [8] = mod("LightningMax", "BASE", nil, 0, KeywordFlag.Attack, nil), --"attack_maximum_added_lightning_damage" + [9] = { mod("EnemyFreezeChance", "BASE", nil), mod("EnemyShockChance", "BASE", nil), mod("EnemyIgniteChance", "BASE", nil) }, --"chance_to_freeze_shock_ignite_%" }, levels = { - [1] = { 1, 6, 4, 8, 3, 6, 1, 13, }, - [2] = { 2, 6, 5, 9, 4, 7, 1, 14, }, - [3] = { 4, 6, 6, 11, 5, 9, 1, 17, }, - [4] = { 7, 7, 7, 14, 6, 11, 1, 23, }, - [5] = { 11, 7, 10, 19, 8, 16, 2, 31, }, - [6] = { 16, 7, 14, 27, 12, 22, 2, 44, }, - [7] = { 20, 8, 18, 34, 15, 28, 3, 56, }, - [8] = { 24, 8, 23, 43, 19, 35, 4, 70, }, - [9] = { 28, 8, 28, 53, 23, 43, 5, 87, }, - [10] = { 32, 9, 35, 64, 28, 53, 6, 106, }, - [11] = { 36, 9, 42, 78, 34, 64, 7, 128, }, - [12] = { 40, 9, 50, 93, 41, 76, 8, 153, }, - [13] = { 44, 10, 60, 111, 49, 91, 10, 183, }, - [14] = { 48, 10, 71, 132, 58, 108, 11, 217, }, - [15] = { 52, 10, 84, 156, 69, 127, 13, 256, }, - [16] = { 56, 11, 99, 183, 81, 150, 16, 301, }, - [17] = { 60, 11, 115, 214, 94, 175, 19, 352, }, - [18] = { 64, 11, 135, 250, 110, 205, 22, 411, }, - [19] = { 67, 11, 151, 280, 123, 229, 24, 461, }, - [20] = { 70, 12, 169, 314, 138, 257, 27, 516, }, - [21] = { 72, 12, 182, 338, 149, 276, 29, 555, }, - [22] = { 74, 12, 196, 364, 160, 297, 31, 598, }, - [23] = { 76, 12, 211, 391, 172, 320, 34, 643, }, - [24] = { 78, 13, 226, 420, 185, 344, 36, 691, }, - [25] = { 80, 13, 243, 452, 199, 370, 39, 743, }, - [26] = { 82, 13, 261, 485, 214, 397, 42, 798, }, - [27] = { 84, 13, 281, 521, 230, 426, 45, 857, }, - [28] = { 86, 14, 301, 559, 246, 457, 48, 919, }, - [29] = { 88, 14, 323, 600, 264, 491, 52, 986, }, - [30] = { 90, 14, 346, 643, 283, 526, 56, 1057, }, + [1] = { 12, 7, 23, 43, 19, 35, 4, 70, 30, }, + [2] = { 15, 7, 29, 54, 24, 44, 5, 89, 31, }, + [3] = { 19, 7, 38, 71, 31, 58, 6, 118, 32, }, + [4] = { 23, 8, 50, 93, 41, 76, 8, 153, 33, }, + [5] = { 27, 8, 64, 119, 53, 98, 10, 196, 34, }, + [6] = { 31, 8, 82, 151, 67, 124, 13, 249, 35, }, + [7] = { 35, 8, 102, 190, 84, 156, 16, 313, 36, }, + [8] = { 38, 8, 121, 224, 99, 184, 19, 369, 37, }, + [9] = { 41, 9, 142, 264, 116, 216, 23, 434, 38, }, + [10] = { 44, 9, 166, 309, 136, 253, 27, 508, 39, }, + [11] = { 47, 9, 194, 361, 159, 295, 31, 593, 40, }, + [12] = { 50, 9, 226, 420, 185, 344, 36, 690, 41, }, + [13] = { 53, 9, 263, 488, 215, 399, 42, 802, 42, }, + [14] = { 56, 10, 304, 565, 249, 462, 49, 929, 43, }, + [15] = { 59, 10, 352, 653, 288, 534, 57, 1074, 44, }, + [16] = { 62, 10, 406, 754, 332, 617, 65, 1240, 45, }, + [17] = { 64, 10, 446, 829, 365, 678, 72, 1362, 46, }, + [18] = { 66, 10, 490, 910, 401, 745, 79, 1496, 47, }, + [19] = { 68, 11, 538, 999, 440, 817, 86, 1642, 48, }, + [20] = { 70, 11, 590, 1096, 483, 896, 95, 1802, 49, }, + [21] = { 72, 11, 647, 1201, 529, 983, 104, 1975, 50, }, + [22] = { 74, 11, 708, 1316, 580, 1076, 114, 2163, 51, }, + [23] = { 76, 11, 776, 1441, 635, 1179, 125, 2369, 52, }, + [24] = { 78, 11, 849, 1576, 694, 1290, 136, 2592, 53, }, + [25] = { 80, 11, 928, 1724, 760, 1411, 149, 2835, 54, }, + [26] = { 82, 12, 1015, 1885, 830, 1542, 163, 3099, 55, }, + [27] = { 84, 12, 1109, 2060, 907, 1685, 178, 3386, 56, }, + [28] = { 86, 12, 1211, 2249, 991, 1840, 195, 3698, 57, }, + [29] = { 88, 12, 1322, 2456, 1082, 2009, 213, 4038, 58, }, + [30] = { 90, 12, 1443, 2680, 1180, 2192, 232, 4406, 59, }, + [31] = { 91, 13, 1507, 2799, 1233, 2290, 242, 4602, 59, }, + [32] = { 92, 13, 1574, 2923, 1288, 2391, 253, 4806, 60, }, + [33] = { 93, 13, 1644, 3052, 1345, 2497, 264, 5019, 60, }, + [34] = { 94, 13, 1716, 3187, 1404, 2608, 276, 5240, 61, }, + [35] = { 95, 13, 1792, 3327, 1466, 2722, 288, 5471, 61, }, + [36] = { 96, 14, 1871, 3474, 1530, 2842, 301, 5712, 62, }, + [37] = { 97, 14, 1953, 3626, 1597, 2967, 314, 5962, 62, }, + [38] = { 98, 14, 2038, 3785, 1667, 3097, 328, 6223, 63, }, + [39] = { 99, 14, 2127, 3950, 1740, 3232, 342, 6495, 63, }, + [40] = { 100, 14, 2220, 4123, 1816, 3373, 357, 6779, 64, }, }, } skills["EtherealKnives"] = { name = "Ethereal Knives", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - spell = true, - }, - gemTagString = "Projectile, Spell", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -1992,53 +1962,50 @@ skills["EtherealKnives"] = { [5] = mod("ProjectileSpeed", "INC", nil), --"base_projectile_speed_+%" }, levels = { - [1] = { 1, 5, 4, 6, 0, }, - [2] = { 2, 6, 5, 7, 1, }, - [3] = { 4, 7, 6, 9, 2, }, - [4] = { 7, 8, 8, 12, 3, }, - [5] = { 11, 9, 12, 18, 4, }, - [6] = { 16, 10, 18, 27, 5, }, - [7] = { 20, 11, 24, 37, 6, }, - [8] = { 24, 12, 32, 49, 7, }, - [9] = { 28, 13, 42, 64, 8, }, - [10] = { 32, 14, 55, 82, 9, }, - [11] = { 36, 16, 70, 105, 10, }, - [12] = { 40, 17, 89, 134, 11, }, - [13] = { 44, 18, 112, 169, 12, }, - [14] = { 48, 18, 141, 212, 13, }, - [15] = { 52, 19, 176, 265, 14, }, - [16] = { 56, 20, 219, 329, 15, }, - [17] = { 60, 21, 272, 408, 16, }, - [18] = { 64, 22, 336, 504, 17, }, - [19] = { 67, 22, 393, 590, 18, }, - [20] = { 70, 23, 459, 688, 19, }, - [21] = { 72, 24, 509, 763, 20, }, - [22] = { 74, 24, 563, 845, 21, }, - [23] = { 76, 25, 623, 935, 22, }, - [24] = { 78, 25, 690, 1034, 23, }, - [25] = { 80, 26, 762, 1144, 24, }, - [26] = { 82, 26, 842, 1264, 25, }, - [27] = { 84, 27, 931, 1396, 26, }, - [28] = { 86, 27, 1027, 1541, 27, }, - [29] = { 88, 28, 1134, 1701, 28, }, - [30] = { 90, 29, 1251, 1876, 29, }, + [1] = { 1, 5, 6, 9, 0, }, + [2] = { 2, 6, 7, 10, 1, }, + [3] = { 4, 7, 8, 12, 2, }, + [4] = { 7, 8, 11, 17, 3, }, + [5] = { 11, 9, 16, 23, 4, }, + [6] = { 16, 10, 23, 35, 5, }, + [7] = { 20, 11, 31, 46, 6, }, + [8] = { 24, 12, 40, 60, 7, }, + [9] = { 28, 13, 51, 76, 8, }, + [10] = { 32, 14, 65, 97, 9, }, + [11] = { 36, 16, 81, 122, 10, }, + [12] = { 40, 17, 102, 152, 11, }, + [13] = { 44, 18, 126, 189, 12, }, + [14] = { 48, 18, 155, 233, 13, }, + [15] = { 52, 19, 190, 286, 14, }, + [16] = { 56, 20, 233, 349, 15, }, + [17] = { 60, 21, 283, 425, 16, }, + [18] = { 64, 22, 344, 515, 17, }, + [19] = { 67, 22, 396, 595, 18, }, + [20] = { 70, 23, 457, 685, 19, }, + [21] = { 72, 24, 502, 752, 20, }, + [22] = { 74, 24, 550, 826, 21, }, + [23] = { 76, 25, 604, 906, 22, }, + [24] = { 78, 25, 662, 993, 23, }, + [25] = { 80, 26, 725, 1088, 24, }, + [26] = { 82, 26, 794, 1191, 25, }, + [27] = { 84, 27, 869, 1304, 26, }, + [28] = { 86, 27, 951, 1426, 27, }, + [29] = { 88, 28, 1040, 1560, 28, }, + [30] = { 90, 29, 1137, 1705, 29, }, + [31] = { 91, 29, 1188, 1782, 29, }, + [32] = { 92, 29, 1242, 1863, 30, }, + [33] = { 93, 29, 1298, 1947, 30, }, + [34] = { 94, 29, 1357, 2035, 31, }, + [35] = { 95, 30, 1418, 2126, 31, }, + [36] = { 96, 30, 1481, 2222, 32, }, + [37] = { 97, 30, 1548, 2321, 32, }, + [38] = { 98, 30, 1617, 2425, 33, }, + [39] = { 99, 31, 1689, 2533, 33, }, + [40] = { 100, 31, 1764, 2646, 34, }, }, } skills["ExplosiveArrow"] = { name = "Explosive Arrow", - gemTags = { - fire = true, - dexterity = true, - active_skill = true, - attack = true, - area = true, - duration = true, - bow = true, - }, - gemTagString = "Fire, Attack, AoE, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, }, @@ -2125,23 +2092,20 @@ skills["ExplosiveArrow"] = { [28] = { 86, 30, 1422, 2134, }, [29] = { 88, 31, 1586, 2379, }, [30] = { 90, 31, 1767, 2651, }, + [31] = { 91, 31, 1865, 2798, }, + [32] = { 92, 32, 1968, 2952, }, + [33] = { 93, 32, 2077, 3116, }, + [34] = { 94, 33, 2192, 3288, }, + [35] = { 95, 33, 2312, 3469, }, + [36] = { 96, 34, 2440, 3659, }, + [37] = { 97, 34, 2573, 3860, }, + [38] = { 98, 34, 2714, 4072, }, + [39] = { 99, 35, 2863, 4294, }, + [40] = { 100, 35, 3019, 4529, }, }, } skills["FireTrap"] = { name = "Fire Trap", - gemTags = { - trap = true, - dexterity = true, - active_skill = true, - spell = true, - duration = true, - area = true, - fire = true, - }, - gemTagString = "Trap, Spell, Duration, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -2153,19 +2117,20 @@ skills["FireTrap"] = { }, baseMods = { skill("castTime", 1), + skill("damageEffectiveness", 2), skill("CritChance", 6), - skill("cooldown", 3), - --"is_trap" = 1 --"base_trap_duration" = 4000 - skill("duration", 8), --"base_skill_effect_duration" = 8000 + skill("duration", 1.75), --"base_skill_effect_duration" = 1750 --"is_area_damage" = ? --"base_skill_is_trapped" = ? skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? + skill("dotIsSpell", true), --"spell_damage_modifiers_apply_to_skill_dot" = ? + --"is_trap" = ? skill("dotIsArea", true), skill("radius", 15), }, qualityMods = { - mod("FireDamage", "INC", 1.5, ModFlag.Dot), --"burn_damage_+%" = 1.5 + mod("FireDamage", "INC", 1), --"fire_damage_+%" = 1 }, levelMods = { [1] = skill("levelRequirement", nil), @@ -2174,53 +2139,54 @@ skills["FireTrap"] = { [4] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" [5] = skill("FireDot", nil), --"base_fire_damage_to_deal_per_minute" [6] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + --[7] = "global_minimum_added_fire_damage_vs_burning_enemies" + --[8] = "global_maximum_added_fire_damage_vs_burning_enemies" }, levels = { - [1] = { 1, 7, 2, 4, 3.6166666666667, 0, }, - [2] = { 2, 8, 3, 5, 4.15, 0, }, - [3] = { 4, 9, 4, 6, 5.3166666666667, 1, }, - [4] = { 7, 10, 6, 8, 7.4333333333333, 1, }, - [5] = { 11, 11, 8, 12, 11.1, 1, }, - [6] = { 16, 12, 13, 19, 17.4, 2, }, - [7] = { 20, 13, 18, 27, 24.233333333333, 2, }, - [8] = { 24, 14, 25, 37, 33.116666666667, 2, }, - [9] = { 28, 14, 34, 50, 44.633333333333, 3, }, - [10] = { 32, 16, 45, 67, 59.483333333333, 3, }, - [11] = { 36, 17, 59, 89, 78.633333333333, 3, }, - [12] = { 40, 18, 78, 117, 103.25, 4, }, - [13] = { 44, 19, 101, 152, 134.93333333333, 4, }, - [14] = { 48, 20, 132, 197, 175.51666666667, 4, }, - [15] = { 52, 21, 170, 255, 227.58333333333, 5, }, - [16] = { 56, 22, 219, 328, 293.85, 5, }, - [17] = { 60, 22, 280, 420, 378, 5, }, - [18] = { 64, 23, 358, 536, 484.65, 6, }, - [19] = { 67, 24, 429, 643, 583.4, 6, }, - [20] = { 70, 24, 513, 770, 701.2, 6, }, - [21] = { 72, 25, 578, 867, 789.88333333333, 7, }, - [22] = { 74, 26, 651, 976, 888.35, 7, }, - [23] = { 76, 26, 732, 1098, 998.51666666667, 7, }, - [24] = { 78, 27, 823, 1235, 1121.75, 8, }, - [25] = { 80, 27, 925, 1388, 1259.5166666667, 8, }, - [26] = { 82, 28, 1040, 1559, 1413.5166666667, 8, }, - [27] = { 84, 29, 1167, 1751, 1585.5833333333, 9, }, - [28] = { 86, 30, 1310, 1965, 1777.8, 9, }, - [29] = { 88, 30, 1470, 2205, 1992.4333333333, 9, }, - [30] = { 90, 30, 1648, 2472, 2232.05, 10, }, + [1] = { 12, 8, 7, 11, 24.133333333333, 0, 2, 3, }, + [2] = { 15, 8, 10, 14, 31.616666666667, 0, 3, 4, }, + [3] = { 19, 9, 13, 20, 44.35, 1, 4, 6, }, + [4] = { 23, 10, 18, 28, 61, 1, 6, 9, }, + [5] = { 27, 10, 25, 37, 82.666666666667, 1, 8, 12, }, + [6] = { 31, 11, 33, 50, 110.68333333333, 2, 10, 16, }, + [7] = { 35, 11, 44, 66, 146.78333333333, 2, 14, 21, }, + [8] = { 38, 12, 54, 82, 180.41666666667, 2, 17, 25, }, + [9] = { 41, 13, 67, 100, 220.88333333333, 3, 21, 31, }, + [10] = { 44, 14, 81, 122, 269.5, 3, 25, 38, }, + [11] = { 47, 14, 99, 148, 327.78333333333, 3, 31, 46, }, + [12] = { 50, 15, 120, 180, 397.55, 4, 37, 56, }, + [13] = { 53, 16, 145, 217, 480.96666666667, 4, 45, 68, }, + [14] = { 56, 16, 175, 262, 580.55, 4, 55, 82, }, + [15] = { 59, 17, 211, 316, 699.3, 5, 66, 99, }, + [16] = { 62, 18, 253, 380, 840.75, 5, 79, 119, }, + [17] = { 64, 18, 286, 429, 949.66666666667, 5, 89, 134, }, + [18] = { 66, 19, 323, 484, 1071.9, 6, 101, 151, }, + [19] = { 68, 19, 364, 546, 1209.0333333333, 6, 114, 171, }, + [20] = { 70, 20, 410, 616, 1362.8166666667, 6, 128, 192, }, + [21] = { 72, 20, 462, 694, 1535.1833333333, 7, 144, 217, }, + [22] = { 74, 21, 521, 781, 1728.3166666667, 7, 163, 244, }, + [23] = { 76, 21, 586, 879, 1944.65, 7, 183, 275, }, + [24] = { 78, 21, 659, 988, 2186.8666666667, 8, 206, 309, }, + [25] = { 80, 22, 740, 1110, 2457.9666666667, 8, 231, 347, }, + [26] = { 82, 23, 832, 1247, 2761.3166666667, 8, 260, 390, }, + [27] = { 84, 23, 934, 1401, 3100.6166666667, 9, 292, 438, }, + [28] = { 86, 23, 1048, 1572, 3480.0333333333, 9, 328, 491, }, + [29] = { 88, 24, 1176, 1764, 3904.1833333333, 9, 367, 551, }, + [30] = { 90, 24, 1319, 1978, 4378.1833333333, 10, 412, 618, }, + [31] = { 91, 26, 1396, 2094, 4635.6333333333, 10, 436, 654, }, + [32] = { 92, 26, 1478, 2217, 4907.7666666667, 10, 462, 693, }, + [33] = { 93, 27, 1565, 2347, 5195.35, 10, 489, 733, }, + [34] = { 94, 27, 1656, 2484, 5499.2666666667, 10, 518, 776, }, + [35] = { 95, 28, 1753, 2629, 5820.4333333333, 10, 548, 822, }, + [36] = { 96, 29, 1855, 2783, 6159.7833333333, 11, 580, 870, }, + [37] = { 97, 29, 1963, 2945, 6518.35, 11, 613, 920, }, + [38] = { 98, 30, 2077, 3116, 6897.1833333333, 11, 649, 974, }, + [39] = { 99, 30, 2198, 3297, 7297.3833333333, 11, 687, 1030, }, + [40] = { 100, 31, 2325, 3488, 7720.1833333333, 11, 727, 1090, }, }, } skills["FlickerStrike"] = { name = "Flicker Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - movement = true, - }, - gemTagString = "Attack, Melee, Movement", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2289,26 +2255,23 @@ skills["FlickerStrike"] = { [28] = { 86, 1.73, 1.732, }, [29] = { 88, 1.75, 1.748, }, [30] = { 90, 1.76, 1.764, }, + [31] = { 91, 1.77, 1.772, }, + [32] = { 92, 1.78, 1.78, }, + [33] = { 93, 1.79, 1.788, }, + [34] = { 94, 1.8, 1.796, }, + [35] = { 95, 1.8, 1.804, }, + [36] = { 96, 1.81, 1.812, }, + [37] = { 97, 1.82, 1.82, }, + [38] = { 98, 1.83, 1.828, }, + [39] = { 99, 1.84, 1.836, }, + [40] = { 100, 1.84, 1.844, }, }, } skills["FreezeMine"] = { name = "Freeze Mine", - gemTags = { - mine = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Mine, Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Lays a remote mine that you can detonate to freeze all enemies in the area.", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [41] = true, [34] = true, }, + skillTypes = { [2] = true, [10] = true, [11] = true, [41] = true, [34] = true, }, baseFlags = { spell = true, mine = true, @@ -2366,21 +2329,20 @@ skills["FreezeMine"] = { [28] = { 86, 24, 358, 536, 470, }, [29] = { 88, 25, 389, 583, 480, }, [30] = { 90, 25, 422, 633, 490, }, + [31] = { 91, 25, 440, 660, 495, }, + [32] = { 92, 25, 458, 688, 500, }, + [33] = { 93, 26, 478, 716, 505, }, + [34] = { 94, 26, 498, 746, 510, }, + [35] = { 95, 26, 518, 777, 515, }, + [36] = { 96, 26, 540, 810, 520, }, + [37] = { 97, 27, 562, 843, 525, }, + [38] = { 98, 27, 586, 878, 530, }, + [39] = { 99, 27, 610, 915, 535, }, + [40] = { 100, 27, 635, 952, 540, }, }, } skills["Frenzy"] = { name = "Frenzy", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - melee = true, - bow = true, - }, - gemTagString = "Attack, Melee, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2436,22 +2398,20 @@ skills["Frenzy"] = { [28] = { 86, 1.48, 1.478, }, [29] = { 88, 1.49, 1.492, }, [30] = { 90, 1.51, 1.506, }, + [31] = { 91, 1.51, 1.513, }, + [32] = { 92, 1.52, 1.52, }, + [33] = { 93, 1.53, 1.527, }, + [34] = { 94, 1.53, 1.534, }, + [35] = { 95, 1.54, 1.541, }, + [36] = { 96, 1.55, 1.548, }, + [37] = { 97, 1.56, 1.555, }, + [38] = { 98, 1.56, 1.562, }, + [39] = { 99, 1.57, 1.569, }, + [40] = { 100, 1.58, 1.576, }, }, } skills["FrostBlades"] = { name = "Frost Blades", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - cold = true, - }, - gemTagString = "Projectile, Attack, Melee, Cold", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2534,21 +2494,20 @@ skills["FrostBlades"] = { [28] = { 86, 9, 23, 27, 1.59, 1.594, }, [29] = { 88, 9, 23, 28, 1.62, 1.616, }, [30] = { 90, 9, 23, 29, 1.64, 1.638, }, + [31] = { 91, 9, 23, 29, 1.65, 1.649, }, + [32] = { 92, 10, 24, 30, 1.66, 1.66, }, + [33] = { 93, 10, 24, 30, 1.67, 1.671, }, + [34] = { 94, 10, 24, 31, 1.68, 1.682, }, + [35] = { 95, 10, 24, 31, 1.69, 1.693, }, + [36] = { 96, 10, 24, 32, 1.7, 1.704, }, + [37] = { 97, 10, 24, 32, 1.72, 1.715, }, + [38] = { 98, 10, 24, 33, 1.73, 1.726, }, + [39] = { 99, 10, 24, 33, 1.74, 1.737, }, + [40] = { 100, 10, 24, 34, 1.75, 1.748, }, }, } skills["Grace"] = { name = "Grace", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2603,23 +2562,20 @@ skills["Grace"] = { [28] = { 86, 3795, 27, }, [29] = { 88, 3982, 28, }, [30] = { 90, 4179, 29, }, + [31] = { 91, 4282, 29, }, + [32] = { 92, 4386, 30, }, + [33] = { 93, 4494, 30, }, + [34] = { 94, 4603, 31, }, + [35] = { 95, 4716, 31, }, + [36] = { 96, 4830, 32, }, + [37] = { 97, 4948, 32, }, + [38] = { 98, 5067, 33, }, + [39] = { 99, 5190, 33, }, + [40] = { 100, 5314, 34, }, }, } skills["VaalGrace"] = { name = "Vaal Grace", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2676,21 +2632,20 @@ skills["VaalGrace"] = { [28] = { 86, 38, 38, 27, }, [29] = { 88, 38, 38, 28, }, [30] = { 90, 39, 39, 29, }, + [31] = { 91, 39, 39, 29, }, + [32] = { 92, 39, 39, 30, }, + [33] = { 93, 39, 39, 30, }, + [34] = { 94, 40, 40, 31, }, + [35] = { 95, 40, 40, 31, }, + [36] = { 96, 40, 40, 32, }, + [37] = { 97, 40, 40, 32, }, + [38] = { 98, 41, 41, 33, }, + [39] = { 99, 41, 41, 33, }, + [40] = { 100, 41, 41, 34, }, }, } skills["Haste"] = { name = "Haste", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2747,23 +2702,20 @@ skills["Haste"] = { [28] = { 86, 19, 19, 11, 27, }, [29] = { 88, 19, 19, 12, 28, }, [30] = { 90, 20, 19, 12, 29, }, + [31] = { 91, 20, 19, 12, 29, }, + [32] = { 92, 20, 20, 12, 30, }, + [33] = { 93, 20, 20, 12, 30, }, + [34] = { 94, 20, 20, 13, 31, }, + [35] = { 95, 20, 20, 13, 31, }, + [36] = { 96, 21, 20, 13, 32, }, + [37] = { 97, 21, 20, 13, 32, }, + [38] = { 98, 21, 21, 13, 33, }, + [39] = { 99, 21, 21, 13, 33, }, + [40] = { 100, 21, 21, 14, 34, }, }, } skills["VaalHaste"] = { name = "Vaal Haste", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -2821,22 +2773,20 @@ skills["VaalHaste"] = { [28] = { 86, 34, 33, 15, 27, }, [29] = { 88, 34, 34, 15, 28, }, [30] = { 90, 34, 34, 15, 29, }, + [31] = { 91, 34, 34, 15, 29, }, + [32] = { 92, 35, 34, 16, 30, }, + [33] = { 93, 35, 34, 16, 30, }, + [34] = { 94, 35, 35, 16, 31, }, + [35] = { 95, 35, 35, 16, 31, }, + [36] = { 96, 35, 35, 16, 32, }, + [37] = { 97, 35, 35, 16, 32, }, + [38] = { 98, 36, 35, 16, 33, }, + [39] = { 99, 36, 35, 16, 33, }, + [40] = { 100, 36, 36, 16, 34, }, }, } skills["Hatred"] = { name = "Hatred", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Aura, Spell, AoE, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, description = "Casts an aura that increases the cold damage of you and your allies.", skillTypes = { [2] = true, [11] = true, [5] = true, [15] = true, [27] = true, [16] = true, [18] = true, [44] = true, [34] = true, }, @@ -2891,22 +2841,20 @@ skills["Hatred"] = { [28] = { 86, 40, 27, }, [29] = { 88, 40, 28, }, [30] = { 90, 41, 29, }, + [31] = { 91, 41, 29, }, + [32] = { 92, 41, 30, }, + [33] = { 93, 41, 30, }, + [34] = { 94, 42, 31, }, + [35] = { 95, 42, 31, }, + [36] = { 96, 42, 32, }, + [37] = { 97, 42, 32, }, + [38] = { 98, 43, 33, }, + [39] = { 99, 43, 33, }, + [40] = { 100, 43, 34, }, }, } skills["HeraldOfIce"] = { name = "Herald of Ice", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - herald = true, - }, - gemTagString = "Spell, AoE, Cold, Herald", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -2968,23 +2916,20 @@ skills["HeraldOfIce"] = { [28] = { 86, 65, 98, 65, 98, 619, 928, }, [29] = { 88, 69, 104, 69, 104, 674, 1010, }, [30] = { 90, 74, 111, 74, 111, 733, 1100, }, + [31] = { 91, 77, 115, 77, 115, 764, 1149, }, + [32] = { 92, 79, 119, 79, 119, 796, 1198, }, + [33] = { 93, 82, 123, 82, 123, 830, 1251, }, + [34] = { 94, 85, 127, 85, 127, 863, 1304, }, + [35] = { 95, 87, 131, 87, 131, 898, 1361, }, + [36] = { 96, 90, 135, 90, 135, 934, 1418, }, + [37] = { 97, 93, 140, 93, 140, 971, 1479, }, + [38] = { 98, 96, 144, 96, 144, 1008, 1540, }, + [39] = { 99, 99, 149, 99, 149, 1046, 1605, }, + [40] = { 100, 102, 154, 102, 154, 1085, 1670, }, }, } skills["IceShot"] = { name = "Ice Shot", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - duration = true, - cold = true, - bow = true, - }, - gemTagString = "Attack, AoE, Duration, Cold, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3055,26 +3000,23 @@ skills["IceShot"] = { [28] = { 86, 12, 1.58, 1.578, }, [29] = { 88, 12, 1.59, 1.592, }, [30] = { 90, 12, 1.61, 1.606, }, + [31] = { 91, 12, 1.61, 1.613, }, + [32] = { 92, 13, 1.62, 1.62, }, + [33] = { 93, 13, 1.63, 1.627, }, + [34] = { 94, 13, 1.63, 1.634, }, + [35] = { 95, 13, 1.64, 1.641, }, + [36] = { 96, 13, 1.65, 1.648, }, + [37] = { 97, 14, 1.66, 1.655, }, + [38] = { 98, 14, 1.66, 1.662, }, + [39] = { 99, 14, 1.67, 1.669, }, + [40] = { 100, 14, 1.68, 1.676, }, }, } skills["IceTrap"] = { name = "Ice Trap", - gemTags = { - trap = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - duration = true, - }, - gemTagString = "Trap, Spell, AoE, Cold, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, [12] = true, }, + skillTypes = { [2] = true, [10] = true, [19] = true, [11] = true, [37] = true, [34] = true, }, baseFlags = { spell = true, trap = true, @@ -3082,9 +3024,8 @@ skills["IceTrap"] = { }, baseMods = { skill("castTime", 1), - skill("damageEffectiveness", 1.1), + skill("damageEffectiveness", 0.9), skill("CritChance", 5), - skill("cooldown", 2), --"base_trap_duration" = 4000 --"is_area_damage" = ? --"base_skill_is_trapped" = ? @@ -3101,51 +3042,50 @@ skills["IceTrap"] = { [4] = skill("ColdMax", nil), --"spell_maximum_base_cold_damage" }, levels = { - [1] = { 28, 13, 60, 90, }, - [2] = { 31, 14, 72, 108, }, - [3] = { 34, 15, 85, 128, }, - [4] = { 37, 15, 101, 151, }, - [5] = { 40, 16, 119, 178, }, - [6] = { 42, 17, 132, 198, }, - [7] = { 44, 17, 147, 220, }, - [8] = { 46, 18, 163, 244, }, - [9] = { 48, 19, 180, 270, }, - [10] = { 50, 19, 199, 299, }, - [11] = { 52, 20, 220, 330, }, - [12] = { 54, 20, 243, 364, }, - [13] = { 56, 21, 268, 402, }, - [14] = { 58, 21, 295, 442, }, - [15] = { 60, 22, 325, 487, }, - [16] = { 62, 23, 357, 536, }, - [17] = { 64, 23, 392, 589, }, - [18] = { 66, 24, 431, 646, }, - [19] = { 68, 24, 473, 709, }, - [20] = { 70, 25, 519, 778, }, - [21] = { 72, 26, 568, 853, }, - [22] = { 74, 26, 623, 934, }, - [23] = { 76, 27, 681, 1022, }, - [24] = { 78, 27, 746, 1118, }, - [25] = { 80, 28, 815, 1223, }, - [26] = { 82, 28, 891, 1337, }, - [27] = { 84, 29, 973, 1460, }, - [28] = { 86, 30, 1063, 1595, }, - [29] = { 88, 30, 1160, 1740, }, - [30] = { 90, 31, 1266, 1899, }, + [1] = { 28, 13, 48, 72, }, + [2] = { 31, 13, 57, 86, }, + [3] = { 34, 14, 68, 102, }, + [4] = { 37, 14, 80, 121, }, + [5] = { 40, 15, 95, 142, }, + [6] = { 42, 15, 105, 158, }, + [7] = { 44, 16, 117, 175, }, + [8] = { 46, 16, 130, 194, }, + [9] = { 48, 17, 144, 215, }, + [10] = { 50, 17, 159, 238, }, + [11] = { 52, 18, 175, 263, }, + [12] = { 54, 18, 194, 291, }, + [13] = { 56, 19, 214, 320, }, + [14] = { 58, 19, 235, 353, }, + [15] = { 60, 20, 259, 388, }, + [16] = { 62, 20, 285, 427, }, + [17] = { 64, 21, 313, 469, }, + [18] = { 66, 21, 344, 516, }, + [19] = { 68, 22, 377, 566, }, + [20] = { 70, 22, 414, 620, }, + [21] = { 72, 23, 453, 680, }, + [22] = { 74, 23, 497, 745, }, + [23] = { 76, 24, 544, 815, }, + [24] = { 78, 24, 595, 892, }, + [25] = { 80, 25, 650, 975, }, + [26] = { 82, 25, 711, 1066, }, + [27] = { 84, 26, 776, 1165, }, + [28] = { 86, 26, 848, 1272, }, + [29] = { 88, 27, 925, 1388, }, + [30] = { 90, 27, 1010, 1514, }, + [31] = { 91, 28, 1054, 1582, }, + [32] = { 92, 28, 1101, 1652, }, + [33] = { 93, 29, 1150, 1725, }, + [34] = { 94, 29, 1200, 1801, }, + [35] = { 95, 30, 1253, 1880, }, + [36] = { 96, 30, 1308, 1962, }, + [37] = { 97, 31, 1365, 2048, }, + [38] = { 98, 31, 1425, 2137, }, + [39] = { 99, 32, 1487, 2231, }, + [40] = { 100, 32, 1552, 2328, }, }, } skills["DoubleSlash"] = { name = "Lacerate", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -3172,7 +3112,8 @@ skills["DoubleSlash"] = { baseMods = { skill("castTime", 1), skill("manaCost", 8), - mod("Speed", "MORE", -25, ModFlag.Attack), --"active_skill_attack_speed_+%_final" = -25 + --"bleed_on_melee_attack_chance_%" = 25 + --"lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies" = 25 --"is_area_damage" = ? skill("radius", 38), skill("dpsMultiplier", 2, { type = "SkillPart", skillPart = 2 }), @@ -3187,52 +3128,50 @@ skills["DoubleSlash"] = { [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" }, levels = { - [1] = { 12, 0.95, 0.95, 0, }, - [2] = { 15, 0.96, 0.962, 0, }, - [3] = { 19, 0.97, 0.974, 0, }, - [4] = { 23, 0.99, 0.986, 1, }, - [5] = { 27, nil, 0.998, 1, }, - [6] = { 31, 1.01, 1.01, 1, }, - [7] = { 35, 1.02, 1.022, 1, }, - [8] = { 38, 1.03, 1.034, 2, }, - [9] = { 41, 1.05, 1.046, 2, }, - [10] = { 44, 1.06, 1.058, 2, }, - [11] = { 47, 1.07, 1.07, 2, }, - [12] = { 50, 1.08, 1.082, 3, }, - [13] = { 53, 1.09, 1.094, 3, }, - [14] = { 56, 1.11, 1.106, 3, }, - [15] = { 59, 1.12, 1.118, 3, }, - [16] = { 62, 1.13, 1.13, 4, }, - [17] = { 64, 1.14, 1.142, 4, }, - [18] = { 66, 1.15, 1.154, 4, }, - [19] = { 68, 1.17, 1.166, 4, }, - [20] = { 70, 1.18, 1.178, 5, }, - [21] = { 72, 1.19, 1.19, 5, }, - [22] = { 74, 1.2, 1.202, 5, }, - [23] = { 76, 1.21, 1.214, 5, }, - [24] = { 78, 1.23, 1.226, 6, }, - [25] = { 80, 1.24, 1.238, 6, }, - [26] = { 82, 1.25, 1.25, 6, }, - [27] = { 84, 1.26, 1.262, 6, }, - [28] = { 86, 1.27, 1.274, 7, }, - [29] = { 88, 1.29, 1.286, 7, }, - [30] = { 90, 1.3, 1.298, 7, }, + [1] = { 12, 0.6, 0.6, 0, }, + [2] = { 15, 0.61, 0.607, 0, }, + [3] = { 19, 0.61, 0.614, 1, }, + [4] = { 23, 0.62, 0.622, 1, }, + [5] = { 27, 0.63, 0.629, 2, }, + [6] = { 31, 0.64, 0.636, 2, }, + [7] = { 35, 0.64, 0.643, 3, }, + [8] = { 38, 0.65, 0.65, 3, }, + [9] = { 41, 0.66, 0.658, 4, }, + [10] = { 44, 0.66, 0.665, 4, }, + [11] = { 47, 0.67, 0.672, 5, }, + [12] = { 50, 0.68, 0.679, 5, }, + [13] = { 53, 0.69, 0.686, 6, }, + [14] = { 56, 0.69, 0.694, 6, }, + [15] = { 59, 0.7, 0.701, 7, }, + [16] = { 62, 0.71, 0.708, 7, }, + [17] = { 64, 0.71, 0.715, 8, }, + [18] = { 66, 0.72, 0.722, 8, }, + [19] = { 68, 0.73, 0.73, 9, }, + [20] = { 70, 0.74, 0.737, 9, }, + [21] = { 72, 0.74, 0.744, 10, }, + [22] = { 74, 0.75, 0.751, 10, }, + [23] = { 76, 0.76, 0.758, 11, }, + [24] = { 78, 0.77, 0.766, 11, }, + [25] = { 80, 0.77, 0.773, 12, }, + [26] = { 82, 0.78, 0.78, 12, }, + [27] = { 84, 0.79, 0.787, 13, }, + [28] = { 86, 0.79, 0.794, 13, }, + [29] = { 88, 0.8, 0.802, 14, }, + [30] = { 90, 0.81, 0.809, 14, }, + [31] = { 91, 0.81, 0.8125, 14, }, + [32] = { 92, 0.82, 0.816, 15, }, + [33] = { 93, 0.82, 0.8195, 15, }, + [34] = { 94, 0.82, 0.823, 15, }, + [35] = { 95, 0.83, 0.8265, 15, }, + [36] = { 96, 0.83, 0.83, 16, }, + [37] = { 97, 0.83, 0.8335, 16, }, + [38] = { 98, 0.84, 0.837, 16, }, + [39] = { 99, 0.84, 0.8405, 16, }, + [40] = { 100, 0.84, 0.844, 17, }, }, } skills["LightningArrow"] = { name = "Lightning Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - lightning = true, - bow = true, - }, - gemTagString = "Attack, AoE, Lightning, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, }, @@ -3289,22 +3228,20 @@ skills["LightningArrow"] = { [28] = { 86, 12, 1.27, 1.27, }, [29] = { 88, 12, 1.28, 1.28, }, [30] = { 90, 12, 1.29, 1.29, }, + [31] = { 91, 12, 1.3, 1.295, }, + [32] = { 92, 13, 1.3, 1.3, }, + [33] = { 93, 13, 1.31, 1.305, }, + [34] = { 94, 13, 1.31, 1.31, }, + [35] = { 95, 13, 1.32, 1.315, }, + [36] = { 96, 13, 1.32, 1.32, }, + [37] = { 97, 13, 1.33, 1.325, }, + [38] = { 98, 13, 1.33, 1.33, }, + [39] = { 99, 13, 1.34, 1.335, }, + [40] = { 100, 13, 1.34, 1.34, }, }, } skills["LightningStrike"] = { name = "Lightning Strike", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - lightning = true, - }, - gemTagString = "Projectile, Attack, Melee, Lightning", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -3387,26 +3324,23 @@ skills["LightningStrike"] = { [28] = { 86, 1.95, 1.948, 9, }, [29] = { 88, 1.97, 1.972, 9, }, [30] = { 90, 2, 1.996, 9, }, + [31] = { 91, 2.01, 2.008, 9, }, + [32] = { 92, 2.02, 2.02, 10, }, + [33] = { 93, 2.03, 2.032, 10, }, + [34] = { 94, 2.04, 2.044, 10, }, + [35] = { 95, 2.06, 2.056, 10, }, + [36] = { 96, 2.07, 2.068, 10, }, + [37] = { 97, 2.08, 2.08, 10, }, + [38] = { 98, 2.09, 2.092, 10, }, + [39] = { 99, 2.1, 2.104, 10, }, + [40] = { 100, 2.12, 2.116, 10, }, }, } skills["VaalLightningStrike"] = { name = "Vaal Lightning Strike", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - melee = true, - duration = true, - lightning = true, - }, - gemTagString = "Vaal, Attack, Melee, Duration, Lightning", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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 forced into the enemy as you strike, electrically charging them for a duration, during which lightning will arc between them and other nearby enemies, dealing damage. This occurs even if the attack is dodged.", - skillTypes = { [1] = true, [25] = true, [24] = true, [12] = true, [43] = true, [35] = true, }, + 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, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -3437,65 +3371,65 @@ skills["VaalLightningStrike"] = { baseMods = { skill("castTime", 1), mod("SkillPhysicalDamageConvertToLightning", "BASE", 50), --"skill_physical_damage_%_to_convert_to_lightning" = 50 - mod("Damage", "MORE", -50, 0, 0, { type = "SkillPart", skillPart = 2 }), --"vaal_lightning_strike_beam_damage_+%_final" = -50 + skill("duration", 8), --"base_skill_effect_duration" = 8000 + --"total_projectile_spread_angle_override" = 180 skill("cannotBeEvaded", true), --"global_always_hit" = ? + --"show_number_of_projectiles" = ? }, qualityMods = { - mod("Duration", "INC", 1), --"skill_effect_duration_+%" = 1 + mod("LightningDamage", "INC", 1), --"lightning_damage_+%" = 1 }, levelMods = { [1] = skill("levelRequirement", nil), - [2] = skill("duration", nil), --"base_skill_effect_duration" - [3] = skill("damageEffectiveness", nil), - [4] = skill("baseMultiplier", nil), + [2] = skill("damageEffectiveness", nil), + [3] = skill("baseMultiplier", nil), + [4] = mod("ProjectileCount", "BASE", nil), --"number_of_additional_projectiles" }, levels = { - [1] = { 12, 5, nil, nil, }, - [2] = { 15, 5.2, 1.01, 1.012, }, - [3] = { 19, 5.4, 1.02, 1.024, }, - [4] = { 23, 5.6, 1.04, 1.036, }, - [5] = { 27, 5.8, 1.05, 1.048, }, - [6] = { 31, 6, 1.06, 1.06, }, - [7] = { 35, 6.2, 1.07, 1.072, }, - [8] = { 38, 6.4, 1.08, 1.084, }, - [9] = { 41, 6.6, 1.1, 1.096, }, - [10] = { 44, 6.8, 1.11, 1.108, }, - [11] = { 47, 7, 1.12, 1.12, }, - [12] = { 50, 7.2, 1.13, 1.132, }, - [13] = { 53, 7.4, 1.14, 1.144, }, - [14] = { 56, 7.6, 1.16, 1.156, }, - [15] = { 59, 7.8, 1.17, 1.168, }, - [16] = { 62, 8, 1.18, 1.18, }, - [17] = { 64, 8.2, 1.19, 1.192, }, - [18] = { 66, 8.4, 1.2, 1.204, }, - [19] = { 68, 8.6, 1.22, 1.216, }, - [20] = { 70, 8.8, 1.23, 1.228, }, - [21] = { 72, 9, 1.24, 1.24, }, - [22] = { 74, 9.2, 1.25, 1.252, }, - [23] = { 76, 9.4, 1.26, 1.264, }, - [24] = { 78, 9.6, 1.28, 1.276, }, - [25] = { 80, 9.8, 1.29, 1.288, }, - [26] = { 82, 10, 1.3, 1.3, }, - [27] = { 84, 10.2, 1.31, 1.312, }, - [28] = { 86, 10.4, 1.32, 1.324, }, - [29] = { 88, 10.6, 1.34, 1.336, }, - [30] = { 90, 10.8, 1.35, 1.348, }, + [1] = { 12, 0.8, 0.8, 4, }, + [2] = { 15, 0.81, 0.81, 4, }, + [3] = { 19, 0.82, 0.819, 4, }, + [4] = { 23, 0.83, 0.829, 4, }, + [5] = { 27, 0.84, 0.838, 4, }, + [6] = { 31, 0.85, 0.848, 6, }, + [7] = { 35, 0.86, 0.858, 6, }, + [8] = { 38, 0.87, 0.867, 6, }, + [9] = { 41, 0.88, 0.877, 6, }, + [10] = { 44, 0.89, 0.886, 6, }, + [11] = { 47, 0.9, 0.896, 6, }, + [12] = { 50, 0.91, 0.906, 6, }, + [13] = { 53, 0.91, 0.915, 6, }, + [14] = { 56, 0.92, 0.925, 6, }, + [15] = { 59, 0.93, 0.934, 6, }, + [16] = { 62, 0.94, 0.944, 8, }, + [17] = { 64, 0.95, 0.954, 8, }, + [18] = { 66, 0.96, 0.963, 8, }, + [19] = { 68, 0.97, 0.973, 8, }, + [20] = { 70, 0.98, 0.982, 8, }, + [21] = { 72, 0.99, 0.992, 8, }, + [22] = { 74, nil, 1.002, 8, }, + [23] = { 76, 1.01, 1.011, 8, }, + [24] = { 78, 1.02, 1.021, 8, }, + [25] = { 80, 1.03, 1.03, 8, }, + [26] = { 82, 1.04, 1.04, 10, }, + [27] = { 84, 1.05, 1.05, 10, }, + [28] = { 86, 1.06, 1.059, 10, }, + [29] = { 88, 1.07, 1.069, 10, }, + [30] = { 90, 1.08, 1.078, 10, }, + [31] = { 91, 1.08, 1.0825, 10, }, + [32] = { 92, 1.09, 1.087, 10, }, + [33] = { 93, 1.09, 1.0915, 10, }, + [34] = { 94, 1.1, 1.096, 10, }, + [35] = { 95, 1.1, 1.1005, 10, }, + [36] = { 96, 1.11, 1.105, 10, }, + [37] = { 97, 1.11, 1.1095, 10, }, + [38] = { 98, 1.11, 1.114, 10, }, + [39] = { 99, 1.12, 1.1185, 10, }, + [40] = { 100, 1.12, 1.123, 10, }, }, } skills["MirrorArrow"] = { name = "Mirror Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - minion = true, - duration = true, - bow = true, - }, - gemTagString = "Attack, Minion, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3563,21 +3497,20 @@ skills["MirrorArrow"] = { [28] = { 86, 23, 162, 81, 84, }, [29] = { 88, 23, 168, 84, 86, }, [30] = { 90, 24, 174, 87, 88, }, + [31] = { 91, 24, 177, 89, 89, }, + [32] = { 92, 24, 180, 90, 90, }, + [33] = { 93, 25, 183, 92, 91, }, + [34] = { 94, 25, 186, 93, 92, }, + [35] = { 95, 25, 189, 95, 93, }, + [36] = { 96, 26, 192, 96, 94, }, + [37] = { 97, 26, 195, 98, 95, }, + [38] = { 98, 27, 198, 99, 96, }, + [39] = { 99, 27, 201, 101, 97, }, + [40] = { 100, 27, 204, 102, 98, }, }, } skills["NewPhaseRun"] = { name = "Phase Run", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - duration = true, - movement = true, - }, - gemTagString = "Spell, Duration, Movement", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3586,7 +3519,7 @@ skills["NewPhaseRun"] = { duration = true, }, baseMods = { - skill("castTime", 0.5), + skill("castTime", 0.25), skill("cooldown", 4), --"enemy_aggro_radius_+%" = -80 skill("duration", 1.8), --"base_skill_effect_duration" = 1800 @@ -3634,22 +3567,20 @@ skills["NewPhaseRun"] = { [28] = { 86, 14, 43, 34, }, [29] = { 88, 14, 44, 34, }, [30] = { 90, 14, 44, 35, }, + [31] = { 91, 15, 44, 35, }, + [32] = { 92, 15, 45, 35, }, + [33] = { 93, 15, 45, 35, }, + [34] = { 94, 15, 45, 36, }, + [35] = { 95, 15, 45, 36, }, + [36] = { 96, 15, 46, 36, }, + [37] = { 97, 15, 46, 36, }, + [38] = { 98, 16, 46, 37, }, + [39] = { 99, 16, 46, 37, }, + [40] = { 100, 16, 47, 37, }, }, } skills["PoachersMark"] = { name = "Poacher's Mark", - gemTags = { - curse = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3710,22 +3641,20 @@ skills["PoachersMark"] = { [28] = { 86, 59, 11.4, 14, -57, 32, 14, 34, }, [29] = { 88, 60, 11.6, 14, -58, 33, 15, 35, }, [30] = { 90, 61, 11.8, 15, -59, 34, 15, 35, }, + [31] = { 91, 63, 11.9, 15, -59, 34, 15, 35, }, + [32] = { 92, 65, 12, 15, -60, 35, 15, 36, }, + [33] = { 93, 66, 12.1, 15, -60, 35, 15, 36, }, + [34] = { 94, 67, 12.2, 16, -61, 36, 16, 36, }, + [35] = { 95, 68, 12.3, 16, -61, 36, 16, 36, }, + [36] = { 96, 70, 12.4, 16, -62, 37, 16, 37, }, + [37] = { 97, 71, 12.5, 16, -62, 37, 16, 37, }, + [38] = { 98, 72, 12.6, 17, -63, 38, 16, 37, }, + [39] = { 99, 73, 12.7, 17, -63, 38, 16, 37, }, + [40] = { 100, 75, 12.8, 17, -64, 39, 17, 38, }, }, } skills["ProjectileWeakness"] = { name = "Projectile Weakness", - gemTags = { - curse = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -3784,22 +3713,20 @@ skills["ProjectileWeakness"] = { [28] = { 86, 59, 11.7, 14, 52, }, [29] = { 88, 60, 11.8, 14, 53, }, [30] = { 90, 61, 11.9, 15, 54, }, + [31] = { 91, 63, 11.95, 15, 54, }, + [32] = { 92, 65, 12, 15, 55, }, + [33] = { 93, 66, 12.05, 15, 55, }, + [34] = { 94, 67, 12.1, 16, 56, }, + [35] = { 95, 68, 12.15, 16, 56, }, + [36] = { 96, 70, 12.2, 16, 57, }, + [37] = { 97, 71, 12.25, 16, 57, }, + [38] = { 98, 72, 12.3, 17, 58, }, + [39] = { 99, 73, 12.35, 17, 58, }, + [40] = { 100, 75, 12.4, 17, 59, }, }, } skills["Puncture"] = { name = "Puncture", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - duration = true, - melee = true, - bow = true, - }, - gemTagString = "Attack, Duration, Melee, Bow", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -3865,22 +3792,20 @@ skills["Puncture"] = { [28] = { 86, 1.32, 1.324, }, [29] = { 88, 1.34, 1.336, }, [30] = { 90, 1.35, 1.348, }, + [31] = { 91, 1.35, 1.354, }, + [32] = { 92, 1.36, 1.36, }, + [33] = { 93, 1.37, 1.366, }, + [34] = { 94, 1.37, 1.372, }, + [35] = { 95, 1.38, 1.378, }, + [36] = { 96, 1.38, 1.384, }, + [37] = { 97, 1.39, 1.39, }, + [38] = { 98, 1.4, 1.396, }, + [39] = { 99, 1.4, 1.402, }, + [40] = { 100, 1.41, 1.408, }, }, } skills["ColdResistAura"] = { name = "Purity of Ice", - gemTags = { - aura = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Aura, Spell, AoE, Cold", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -3936,24 +3861,23 @@ skills["ColdResistAura"] = { [28] = { 86, 49, 5, 27, }, [29] = { 88, 50, 5, 28, }, [30] = { 90, 51, 5, 29, }, + [31] = { 91, 51, 5, 29, }, + [32] = { 92, 52, 5, 30, }, + [33] = { 93, 52, 5, 30, }, + [34] = { 94, 53, 5, 31, }, + [35] = { 95, 53, 5, 31, }, + [36] = { 96, 54, 5, 32, }, + [37] = { 97, 54, 5, 32, }, + [38] = { 98, 55, 5, 33, }, + [39] = { 99, 55, 5, 33, }, + [40] = { 100, 56, 5, 34, }, }, } skills["RainOfArrows"] = { name = "Rain of Arrows", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - bow = true, - }, - gemTagString = "Attack, AoE, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "Fires a large number of arrows into the air, to land at the target after a short delay.", - skillTypes = { [1] = true, [48] = true, [69] = true, [11] = true, [14] = true, [22] = true, [17] = true, [19] = true, }, + 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, }, weaponTypes = { ["Bow"] = true, }, @@ -3964,8 +3888,11 @@ skills["RainOfArrows"] = { }, baseMods = { skill("castTime", 1), + skill("radiusExtra", 0), --"active_skill_base_radius_+" = 0 --"base_is_projectile" = ? --"is_area_damage" = ? + --"skill_can_fire_arrows" = ? + --"cannot_pierce" = ? skill("radius", 24), }, qualityMods = { @@ -3976,59 +3903,56 @@ skills["RainOfArrows"] = { [2] = skill("manaCost", nil), [3] = skill("damageEffectiveness", nil), [4] = skill("baseMultiplier", nil), - [5] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + [5] = mod("ProjectileCount", "BASE", nil), --"base_number_of_additional_arrows" }, levels = { - [1] = { 12, 7, 1.1, 1.1, 0, }, - [2] = { 15, 7, 1.11, 1.11, 0, }, - [3] = { 19, 7, 1.12, 1.12, 0, }, - [4] = { 23, 8, 1.13, 1.13, 0, }, - [5] = { 27, 8, 1.14, 1.14, 1, }, - [6] = { 31, 8, 1.15, 1.15, 1, }, - [7] = { 35, 8, 1.16, 1.16, 1, }, - [8] = { 38, 8, 1.17, 1.17, 1, }, - [9] = { 41, 9, 1.18, 1.18, 1, }, - [10] = { 44, 9, 1.19, 1.19, 2, }, - [11] = { 47, 9, 1.2, 1.2, 2, }, - [12] = { 50, 9, 1.21, 1.21, 2, }, - [13] = { 53, 9, 1.22, 1.22, 2, }, - [14] = { 56, 10, 1.23, 1.23, 2, }, - [15] = { 59, 10, 1.24, 1.24, 3, }, - [16] = { 62, 10, 1.25, 1.25, 3, }, - [17] = { 64, 10, 1.26, 1.26, 3, }, - [18] = { 66, 10, 1.27, 1.27, 3, }, - [19] = { 68, 11, 1.28, 1.28, 3, }, - [20] = { 70, 11, 1.29, 1.29, 4, }, - [21] = { 72, 11, 1.3, 1.3, 4, }, - [22] = { 74, 11, 1.31, 1.31, 4, }, - [23] = { 76, 11, 1.32, 1.32, 4, }, - [24] = { 78, 11, 1.33, 1.33, 4, }, - [25] = { 80, 11, 1.34, 1.34, 5, }, - [26] = { 82, 12, 1.35, 1.35, 5, }, - [27] = { 84, 12, 1.36, 1.36, 5, }, - [28] = { 86, 12, 1.37, 1.37, 5, }, - [29] = { 88, 12, 1.38, 1.38, 5, }, - [30] = { 90, 12, 1.39, 1.39, 6, }, + [1] = { 12, 7, 0.4, 0.4, 17, }, + [2] = { 15, 7, 0.4, 0.405, 17, }, + [3] = { 19, 7, 0.41, 0.411, 17, }, + [4] = { 23, 8, 0.42, 0.416, 17, }, + [5] = { 27, 8, 0.42, 0.421, 18, }, + [6] = { 31, 8, 0.43, 0.426, 18, }, + [7] = { 35, 8, 0.43, 0.432, 18, }, + [8] = { 38, 8, 0.44, 0.437, 18, }, + [9] = { 41, 9, 0.44, 0.442, 19, }, + [10] = { 44, 9, 0.45, 0.448, 19, }, + [11] = { 47, 9, 0.45, 0.453, 19, }, + [12] = { 50, 9, 0.46, 0.458, 19, }, + [13] = { 53, 9, 0.46, 0.463, 20, }, + [14] = { 56, 10, 0.47, 0.469, 20, }, + [15] = { 59, 10, 0.47, 0.474, 20, }, + [16] = { 62, 10, 0.48, 0.479, 20, }, + [17] = { 64, 10, 0.48, 0.484, 21, }, + [18] = { 66, 10, 0.49, 0.49, 21, }, + [19] = { 68, 11, 0.49, 0.495, 21, }, + [20] = { 70, 11, 0.5, 0.5, 21, }, + [21] = { 72, 11, 0.51, 0.506, 22, }, + [22] = { 74, 11, 0.51, 0.511, 22, }, + [23] = { 76, 11, 0.52, 0.516, 22, }, + [24] = { 78, 11, 0.52, 0.521, 22, }, + [25] = { 80, 11, 0.53, 0.527, 23, }, + [26] = { 82, 12, 0.53, 0.532, 23, }, + [27] = { 84, 12, 0.54, 0.537, 23, }, + [28] = { 86, 12, 0.54, 0.543, 23, }, + [29] = { 88, 12, 0.55, 0.548, 24, }, + [30] = { 90, 12, 0.55, 0.553, 24, }, + [31] = { 91, 13, 0.56, 0.5555, 24, }, + [32] = { 92, 13, 0.56, 0.558, 24, }, + [33] = { 93, 13, 0.56, 0.5605, 24, }, + [34] = { 94, 13, 0.56, 0.563, 24, }, + [35] = { 95, 13, 0.57, 0.5655, 24, }, + [36] = { 96, 14, 0.57, 0.568, 25, }, + [37] = { 97, 14, 0.57, 0.5705, 25, }, + [38] = { 98, 14, 0.57, 0.573, 25, }, + [39] = { 99, 14, 0.58, 0.5755, 25, }, + [40] = { 100, 14, 0.58, 0.578, 25, }, }, } skills["VaalRainOfArrows"] = { name = "Vaal Rain of Arrows", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - duration = true, - bow = true, - }, - gemTagString = "Vaal, Attack, AoE, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, - description = "Fires a large number of arrows into the air, to land at the target after a short delay. Enemies hit by the arrows are pinned in place, unable to move for a time.", - skillTypes = { [1] = true, [48] = true, [11] = true, [14] = true, [22] = true, [17] = true, [19] = true, [12] = true, [43] = true, }, + description = "Fires multiple arrows into the air, to land in mutliple 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, }, weaponTypes = { ["Bow"] = true, }, @@ -4041,11 +3965,15 @@ skills["VaalRainOfArrows"] = { }, baseMods = { skill("castTime", 1), + skill("radiusExtra", 0), --"active_skill_base_radius_+" = 0 + --"rain_of_arrows_additional_sequences" = 3 + --"maim_effect_+%" = 150 --"base_is_projectile" = ? --"is_area_damage" = ? - --"rain_of_arrows_pin" = ? + --"global_maim_on_hit" = ? + --"skill_can_fire_arrows" = ? + --"cannot_pierce" = ? skill("cannotBeEvaded", true), --"global_always_hit" = ? - --"no_movement_speed" = ? }, qualityMods = { mod("AreaOfEffect", "INC", 0.5), --"base_skill_area_of_effect_+%" = 0.5 @@ -4054,55 +3982,53 @@ skills["VaalRainOfArrows"] = { [1] = skill("levelRequirement", nil), [2] = skill("damageEffectiveness", nil), [3] = skill("baseMultiplier", nil), - [4] = skill("duration", nil), --"base_skill_effect_duration" - [5] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + [4] = mod("ProjectileCount", "BASE", nil), --"base_number_of_additional_arrows" }, levels = { - [1] = { 12, 1.4, 1.4, 3.4, 0, }, - [2] = { 15, 1.42, 1.415, 3.45, 0, }, - [3] = { 19, 1.43, 1.43, 3.5, 0, }, - [4] = { 23, 1.45, 1.445, 3.55, 0, }, - [5] = { 27, 1.46, 1.46, 3.6, 1, }, - [6] = { 31, 1.48, 1.475, 3.65, 1, }, - [7] = { 35, 1.49, 1.49, 3.7, 1, }, - [8] = { 38, 1.51, 1.505, 3.75, 1, }, - [9] = { 41, 1.52, 1.52, 3.8, 1, }, - [10] = { 44, 1.54, 1.535, 3.85, 2, }, - [11] = { 47, 1.55, 1.55, 3.9, 2, }, - [12] = { 50, 1.57, 1.565, 3.95, 2, }, - [13] = { 53, 1.58, 1.58, 4, 2, }, - [14] = { 56, 1.6, 1.595, 4.05, 2, }, - [15] = { 59, 1.61, 1.61, 4.1, 3, }, - [16] = { 62, 1.63, 1.625, 4.15, 3, }, - [17] = { 64, 1.64, 1.64, 4.2, 3, }, - [18] = { 66, 1.66, 1.655, 4.25, 3, }, - [19] = { 68, 1.67, 1.67, 4.3, 3, }, - [20] = { 70, 1.69, 1.685, 4.35, 4, }, - [21] = { 72, 1.7, 1.7, 4.4, 4, }, - [22] = { 74, 1.72, 1.715, 4.45, 4, }, - [23] = { 76, 1.73, 1.73, 4.5, 4, }, - [24] = { 78, 1.75, 1.745, 4.55, 4, }, - [25] = { 80, 1.76, 1.76, 4.6, 5, }, - [26] = { 82, 1.78, 1.775, 4.65, 5, }, - [27] = { 84, 1.79, 1.79, 4.7, 5, }, - [28] = { 86, 1.81, 1.805, 4.75, 5, }, - [29] = { 88, 1.82, 1.82, 4.8, 5, }, - [30] = { 90, 1.84, 1.835, 4.85, 6, }, + [1] = { 12, 0.8, 0.8, 17, }, + [2] = { 15, 0.81, 0.811, 17, }, + [3] = { 19, 0.82, 0.821, 17, }, + [4] = { 23, 0.83, 0.832, 17, }, + [5] = { 27, 0.84, 0.842, 18, }, + [6] = { 31, 0.85, 0.853, 18, }, + [7] = { 35, 0.86, 0.863, 18, }, + [8] = { 38, 0.87, 0.874, 18, }, + [9] = { 41, 0.88, 0.884, 19, }, + [10] = { 44, 0.89, 0.895, 19, }, + [11] = { 47, 0.91, 0.906, 19, }, + [12] = { 50, 0.92, 0.916, 19, }, + [13] = { 53, 0.93, 0.927, 20, }, + [14] = { 56, 0.94, 0.937, 20, }, + [15] = { 59, 0.95, 0.948, 20, }, + [16] = { 62, 0.96, 0.958, 20, }, + [17] = { 64, 0.97, 0.969, 21, }, + [18] = { 66, 0.98, 0.98, 21, }, + [19] = { 68, 0.99, 0.99, 21, }, + [20] = { 70, nil, 1.001, 21, }, + [21] = { 72, 1.01, 1.011, 22, }, + [22] = { 74, 1.02, 1.022, 22, }, + [23] = { 76, 1.03, 1.032, 22, }, + [24] = { 78, 1.04, 1.043, 22, }, + [25] = { 80, 1.05, 1.053, 23, }, + [26] = { 82, 1.06, 1.064, 23, }, + [27] = { 84, 1.08, 1.075, 23, }, + [28] = { 86, 1.09, 1.085, 23, }, + [29] = { 88, 1.1, 1.096, 24, }, + [30] = { 90, 1.11, 1.106, 24, }, + [31] = { 91, 1.12, 1.117, 24, }, + [32] = { 92, 1.13, 1.127, 24, }, + [33] = { 93, 1.14, 1.138, 24, }, + [34] = { 94, 1.15, 1.148, 24, }, + [35] = { 95, 1.16, 1.159, 24, }, + [36] = { 96, 1.17, 1.17, 25, }, + [37] = { 97, 1.18, 1.18, 25, }, + [38] = { 98, 1.19, 1.191, 25, }, + [39] = { 99, 1.2, 1.201, 25, }, + [40] = { 100, 1.21, 1.212, 25, }, }, } skills["Reave"] = { name = "Reave", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4177,22 +4103,20 @@ skills["Reave"] = { [28] = { 86, 5, 1.54, 1.54, }, [29] = { 88, 5, 1.56, 1.56, }, [30] = { 90, 6, 1.58, 1.58, }, + [31] = { 91, 6, 1.59, 1.59, }, + [32] = { 92, 6, 1.6, 1.6, }, + [33] = { 93, 6, 1.61, 1.61, }, + [34] = { 94, 6, 1.62, 1.62, }, + [35] = { 95, 6, 1.63, 1.63, }, + [36] = { 96, 6, 1.64, 1.64, }, + [37] = { 97, 6, 1.65, 1.65, }, + [38] = { 98, 6, 1.66, 1.66, }, + [39] = { 99, 6, 1.67, 1.67, }, + [40] = { 100, 7, 1.68, 1.68, }, }, } skills["VaalReave"] = { name = "Vaal Reave", - gemTags = { - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Vaal, Attack, AoE, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4273,21 +4197,20 @@ skills["VaalReave"] = { [28] = { 86, 5, 1.32, 1.324, }, [29] = { 88, 5, 1.34, 1.336, }, [30] = { 90, 6, 1.35, 1.348, }, + [31] = { 91, 6, 1.35, 1.354, }, + [32] = { 92, 6, 1.36, 1.36, }, + [33] = { 93, 6, 1.37, 1.366, }, + [34] = { 94, 6, 1.37, 1.372, }, + [35] = { 95, 6, 1.38, 1.378, }, + [36] = { 96, 6, 1.38, 1.384, }, + [37] = { 97, 6, 1.39, 1.39, }, + [38] = { 98, 6, 1.4, 1.396, }, + [39] = { 99, 6, 1.4, 1.402, }, + [40] = { 100, 7, 1.41, 1.408, }, }, } skills["Riposte"] = { name = "Riposte", - gemTags = { - trigger = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Trigger, Attack, Melee", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -4356,22 +4279,20 @@ skills["Riposte"] = { [28] = { 86, 1.54, 1.54, }, [29] = { 88, 1.56, 1.56, }, [30] = { 90, 1.58, 1.58, }, + [31] = { 91, 1.59, 1.59, }, + [32] = { 92, 1.6, 1.6, }, + [33] = { 93, 1.61, 1.61, }, + [34] = { 94, 1.62, 1.62, }, + [35] = { 95, 1.63, 1.63, }, + [36] = { 96, 1.64, 1.64, }, + [37] = { 97, 1.65, 1.65, }, + [38] = { 98, 1.66, 1.66, }, + [39] = { 99, 1.67, 1.67, }, + [40] = { 100, 1.68, 1.68, }, }, } skills["ShrapnelShot"] = { name = "Shrapnel Shot", - gemTags = { - lightning = true, - dexterity = true, - active_skill = true, - attack = true, - area = true, - bow = true, - }, - gemTagString = "Lightning, Attack, AoE, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -4441,25 +4362,23 @@ skills["ShrapnelShot"] = { [28] = { 86, 12, 1.07, 1.07, 7, 9, }, [29] = { 88, 12, 1.08, 1.08, 7, 9, }, [30] = { 90, 12, 1.09, 1.09, 7, 9, }, + [31] = { 91, 12, 1.1, 1.095, 7, 9, }, + [32] = { 92, 13, 1.1, 1.1, 7, 10, }, + [33] = { 93, 13, 1.11, 1.105, 7, 10, }, + [34] = { 94, 13, 1.11, 1.11, 8, 10, }, + [35] = { 95, 13, 1.12, 1.115, 8, 10, }, + [36] = { 96, 13, 1.12, 1.12, 8, 10, }, + [37] = { 97, 14, 1.13, 1.125, 8, 10, }, + [38] = { 98, 14, 1.13, 1.13, 8, 10, }, + [39] = { 99, 14, 1.14, 1.135, 8, 10, }, + [40] = { 100, 14, 1.14, 1.14, 8, 10, }, }, } skills["SiegeBallista"] = { name = "Siege Ballista", - gemTags = { - totem = true, - dexterity = true, - active_skill = true, - attack = true, - duration = true, - bow = true, - }, - gemTagString = "Totem, Attack, Duration, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, [12] = true, }, + skillTypes = { [1] = true, [3] = true, [68] = true, [48] = true, [17] = true, [19] = true, [30] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -4522,23 +4441,20 @@ skills["SiegeBallista"] = { [28] = { 86, 14, 1.83, 1.832, 86, 11, }, [29] = { 88, 15, 1.85, 1.848, 88, 11, }, [30] = { 90, 15, 1.86, 1.864, 90, 11, }, + [31] = { 91, 15, 1.87, 1.872, 91, 11, }, + [32] = { 92, 15, 1.88, 1.88, 92, 12, }, + [33] = { 93, 15, 1.89, 1.888, 93, 12, }, + [34] = { 94, 15, 1.9, 1.896, 94, 12, }, + [35] = { 95, 15, 1.9, 1.904, 95, 12, }, + [36] = { 96, 15, 1.91, 1.912, 96, 12, }, + [37] = { 97, 15, 1.92, 1.92, 97, 12, }, + [38] = { 98, 16, 1.93, 1.928, 98, 12, }, + [39] = { 99, 16, 1.94, 1.936, 99, 12, }, + [40] = { 100, 16, 1.94, 1.944, 100, 12, }, }, } skills["SmokeMine"] = { name = "Smoke Mine", - gemTags = { - mine = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - movement = true, - }, - gemTagString = "Mine, Spell, AoE, Duration, Movement", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4596,20 +4512,20 @@ skills["SmokeMine"] = { [28] = { 86, 14, 6.7, }, [29] = { 88, 15, 6.8, }, [30] = { 90, 15, 6.9, }, + [31] = { 91, 16, 6.95, }, + [32] = { 92, 16, 7, }, + [33] = { 93, 16, 7.05, }, + [34] = { 94, 17, 7.1, }, + [35] = { 95, 17, 7.15, }, + [36] = { 96, 17, 7.2, }, + [37] = { 97, 18, 7.25, }, + [38] = { 98, 18, 7.3, }, + [39] = { 99, 18, 7.35, }, + [40] = { 100, 19, 7.4, }, }, } skills["ThrownShield"] = { name = "Spectral Shield Throw", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - }, - gemTagString = "Projectile, Attack", - gemStr = 40, - gemDex = 60, - gemInt = 0, color = 2, 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, }, @@ -4678,20 +4594,20 @@ skills["ThrownShield"] = { [28] = { 86, 11, 210, 315, 580, }, [29] = { 88, 11, 222, 334, 570, }, [30] = { 90, 11, 235, 353, 570, }, + [31] = { 91, 11, 242, 362, 570, }, + [32] = { 92, 12, 248, 373, 560, }, + [33] = { 93, 12, 255, 383, 560, }, + [34] = { 94, 12, 262, 394, 560, }, + [35] = { 95, 12, 270, 404, 560, }, + [36] = { 96, 12, 277, 416, 550, }, + [37] = { 97, 12, 285, 427, 550, }, + [38] = { 98, 13, 292, 439, 550, }, + [39] = { 99, 13, 300, 451, 550, }, + [40] = { 100, 13, 309, 463, 550, }, }, } skills["ThrownWeapon"] = { name = "Spectral Throw", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - }, - gemTagString = "Projectile, Attack", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -4757,21 +4673,20 @@ skills["ThrownWeapon"] = { [28] = { 86, 10, 1.06, 1.058, }, [29] = { 88, 10, 1.08, 1.077, }, [30] = { 90, 10, 1.1, 1.096, }, + [31] = { 91, 11, 1.11, 1.1055, }, + [32] = { 92, 11, 1.12, 1.115, }, + [33] = { 93, 11, 1.12, 1.1245, }, + [34] = { 94, 11, 1.13, 1.134, }, + [35] = { 95, 11, 1.14, 1.1435, }, + [36] = { 96, 11, 1.15, 1.153, }, + [37] = { 97, 11, 1.16, 1.1625, }, + [38] = { 98, 12, 1.17, 1.172, }, + [39] = { 99, 12, 1.18, 1.1815, }, + [40] = { 100, 12, 1.19, 1.191, }, }, } skills["VaalThrownWeapon"] = { name = "Vaal Spectral Throw", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - vaal = true, - attack = true, - }, - gemTagString = "Projectile, Vaal, Attack", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -4795,6 +4710,7 @@ skills["VaalThrownWeapon"] = { }, baseMods = { skill("castTime", 1), + mod("ProjectileCount", "BASE", 4), --"number_of_additional_projectiles" = 4 --"projectiles_nova" = ? --"base_is_projectile" = ? skill("cannotBeEvaded", true), --"global_always_hit" = ? @@ -4809,50 +4725,50 @@ skills["VaalThrownWeapon"] = { [3] = skill("baseMultiplier", nil), }, levels = { - [1] = { 1, 0.7, 0.7, }, - [2] = { 2, 0.72, 0.718, }, - [3] = { 4, 0.74, 0.736, }, - [4] = { 7, 0.75, 0.754, }, - [5] = { 11, 0.77, 0.772, }, - [6] = { 16, 0.79, 0.79, }, - [7] = { 20, 0.81, 0.808, }, - [8] = { 24, 0.83, 0.826, }, - [9] = { 28, 0.84, 0.844, }, - [10] = { 32, 0.86, 0.862, }, - [11] = { 36, 0.88, 0.88, }, - [12] = { 40, 0.9, 0.898, }, - [13] = { 44, 0.92, 0.916, }, - [14] = { 48, 0.93, 0.934, }, - [15] = { 52, 0.95, 0.952, }, - [16] = { 56, 0.97, 0.97, }, - [17] = { 60, 0.99, 0.988, }, - [18] = { 64, 1.01, 1.006, }, - [19] = { 67, 1.02, 1.024, }, - [20] = { 70, 1.04, 1.042, }, - [21] = { 72, 1.06, 1.06, }, - [22] = { 74, 1.08, 1.078, }, - [23] = { 76, 1.1, 1.096, }, - [24] = { 78, 1.11, 1.114, }, - [25] = { 80, 1.13, 1.132, }, - [26] = { 82, 1.15, 1.15, }, - [27] = { 84, 1.17, 1.168, }, - [28] = { 86, 1.19, 1.186, }, - [29] = { 88, 1.2, 1.204, }, - [30] = { 90, 1.22, 1.222, }, + [1] = { 1, 0.91, 0.91, }, + [2] = { 2, 0.93, 0.9334, }, + [3] = { 4, 0.96, 0.9568, }, + [4] = { 7, 0.98, 0.9802, }, + [5] = { 11, nil, 1.0036, }, + [6] = { 16, 1.03, 1.027, }, + [7] = { 20, 1.05, 1.0504, }, + [8] = { 24, 1.07, 1.0738, }, + [9] = { 28, 1.1, 1.0972, }, + [10] = { 32, 1.12, 1.1206, }, + [11] = { 36, 1.14, 1.144, }, + [12] = { 40, 1.17, 1.1674, }, + [13] = { 44, 1.19, 1.1908, }, + [14] = { 48, 1.21, 1.2142, }, + [15] = { 52, 1.24, 1.2376, }, + [16] = { 56, 1.26, 1.261, }, + [17] = { 60, 1.28, 1.2844, }, + [18] = { 64, 1.31, 1.3078, }, + [19] = { 67, 1.33, 1.3312, }, + [20] = { 70, 1.35, 1.3546, }, + [21] = { 72, 1.38, 1.378, }, + [22] = { 74, 1.4, 1.4014, }, + [23] = { 76, 1.42, 1.4248, }, + [24] = { 78, 1.45, 1.4482, }, + [25] = { 80, 1.47, 1.4716, }, + [26] = { 82, 1.5, 1.495, }, + [27] = { 84, 1.52, 1.5184, }, + [28] = { 86, 1.54, 1.5418, }, + [29] = { 88, 1.57, 1.5652, }, + [30] = { 90, 1.59, 1.5886, }, + [31] = { 91, 1.6, 1.6003, }, + [32] = { 92, 1.61, 1.612, }, + [33] = { 93, 1.62, 1.6237, }, + [34] = { 94, 1.64, 1.6354, }, + [35] = { 95, 1.65, 1.6471, }, + [36] = { 96, 1.66, 1.6588, }, + [37] = { 97, 1.67, 1.6705, }, + [38] = { 98, 1.68, 1.6822, }, + [39] = { 99, 1.69, 1.6939, }, + [40] = { 100, 1.71, 1.7056, }, }, } skills["SplitArrow"] = { name = "Split Arrow", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - bow = true, - }, - gemTagString = "Attack, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -4908,22 +4824,20 @@ skills["SplitArrow"] = { [28] = { 86, 12, 1.17, 1.17, 7, }, [29] = { 88, 12, 1.18, 1.18, 8, }, [30] = { 90, 12, 1.19, 1.19, 8, }, + [31] = { 91, 12, 1.2, 1.195, 8, }, + [32] = { 92, 12, 1.2, 1.2, 8, }, + [33] = { 93, 13, 1.21, 1.205, 8, }, + [34] = { 94, 13, 1.21, 1.21, 8, }, + [35] = { 95, 13, 1.22, 1.215, 8, }, + [36] = { 96, 13, 1.22, 1.22, 8, }, + [37] = { 97, 13, 1.23, 1.225, 8, }, + [38] = { 98, 14, 1.23, 1.23, 8, }, + [39] = { 99, 14, 1.24, 1.235, 8, }, + [40] = { 100, 14, 1.24, 1.24, 8, }, }, } skills["SummonIceGolem"] = { name = "Summon Ice Golem", - gemTags = { - dexterity = true, - active_skill = true, - cold = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Cold, Minion, Spell, Golem", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -4988,22 +4902,20 @@ skills["SummonIceGolem"] = { [28] = { 86, 60, 14, 34, 34, 84, 86, }, [29] = { 88, 62, 14, 34, 34, 86, 88, }, [30] = { 90, 62, 15, 35, 35, 88, 90, }, + [31] = { 91, 62, 15, 35, 35, 89, 91, }, + [32] = { 92, 63, 15, 35, 35, 90, 92, }, + [33] = { 93, 63, 15, 35, 35, 91, 93, }, + [34] = { 94, 63, 16, 36, 36, 92, 94, }, + [35] = { 95, 63, 16, 36, 36, 93, 95, }, + [36] = { 96, 64, 16, 36, 36, 94, 96, }, + [37] = { 97, 64, 16, 36, 36, 95, 97, }, + [38] = { 98, 64, 17, 37, 37, 96, 98, }, + [39] = { 99, 64, 17, 37, 37, 97, 99, }, + [40] = { 100, 64, 17, 37, 37, 98, 100, }, }, } skills["TemporalChains"] = { name = "Temporal Chains", - gemTags = { - curse = true, - dexterity = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -5062,20 +4974,20 @@ skills["TemporalChains"] = { [28] = { 86, 59, 6.35, 9, -33, }, [29] = { 88, 60, 6.4, 10, -34, }, [30] = { 90, 61, 6.45, 10, -34, }, + [31] = { 91, 63, 6.45, 10, -34, }, + [32] = { 92, 65, 6.5, 10, -35, }, + [33] = { 93, 66, 6.5, 10, -35, }, + [34] = { 94, 67, 6.55, 11, -35, }, + [35] = { 95, 68, 6.55, 11, -35, }, + [36] = { 96, 70, 6.6, 11, -36, }, + [37] = { 97, 71, 6.6, 11, -36, }, + [38] = { 98, 72, 6.65, 11, -36, }, + [39] = { 99, 73, 6.65, 11, -36, }, + [40] = { 100, 75, 6.7, 12, -37, }, }, } skills["TornadoShot"] = { name = "Tornado Shot", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - bow = true, - }, - gemTagString = "Attack, Bow", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, }, @@ -5132,20 +5044,20 @@ skills["TornadoShot"] = { [28] = { 86, 12, 1.17, 1.17, }, [29] = { 88, 12, 1.18, 1.18, }, [30] = { 90, 12, 1.19, 1.19, }, + [31] = { 91, 12, 1.2, 1.195, }, + [32] = { 92, 12, 1.2, 1.2, }, + [33] = { 93, 12, 1.21, 1.205, }, + [34] = { 94, 12, 1.21, 1.21, }, + [35] = { 95, 12, 1.22, 1.215, }, + [36] = { 96, 12, 1.22, 1.22, }, + [37] = { 97, 13, 1.23, 1.225, }, + [38] = { 98, 13, 1.23, 1.23, }, + [39] = { 99, 13, 1.24, 1.235, }, + [40] = { 100, 13, 1.24, 1.24, }, }, } skills["BoneLance"] = { name = "Unearth", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - spell = true, - }, - gemTagString = "Projectile, Spell", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -5202,22 +5114,20 @@ skills["BoneLance"] = { [28] = { 86, 28, 1209, 1813, 88, }, [29] = { 88, 29, 1334, 2001, 89, }, [30] = { 90, 29, 1471, 2207, 90, }, + [31] = { 91, 29, 1545, 2317, 90, }, + [32] = { 92, 29, 1622, 2433, 91, }, + [33] = { 93, 30, 1703, 2555, 91, }, + [34] = { 94, 30, 1788, 2682, 92, }, + [35] = { 95, 30, 1877, 2815, 92, }, + [36] = { 96, 30, 1970, 2955, 93, }, + [37] = { 97, 31, 2068, 3102, 93, }, + [38] = { 98, 31, 2170, 3255, 94, }, + [39] = { 99, 31, 2277, 3416, 94, }, + [40] = { 100, 31, 2389, 3584, 95, }, }, } skills["ViperStrike"] = { name = "Viper Strike", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - duration = true, - melee = true, - chaos = true, - }, - gemTagString = "Attack, Duration, Melee, Chaos", - gemStr = 0, - gemDex = 100, - gemInt = 0, color = 2, 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, }, @@ -5282,21 +5192,20 @@ skills["ViperStrike"] = { [28] = { 86, 1.53, 1.528, }, [29] = { 88, 1.54, 1.542, }, [30] = { 90, 1.56, 1.556, }, + [31] = { 91, 1.56, 1.563, }, + [32] = { 92, 1.57, 1.57, }, + [33] = { 93, 1.58, 1.577, }, + [34] = { 94, 1.58, 1.584, }, + [35] = { 95, 1.59, 1.591, }, + [36] = { 96, 1.6, 1.598, }, + [37] = { 97, 1.61, 1.605, }, + [38] = { 98, 1.61, 1.612, }, + [39] = { 99, 1.62, 1.619, }, + [40] = { 100, 1.63, 1.626, }, }, } skills["VolatileDead"] = { name = "Volatile Dead", - gemTags = { - dexterity = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 0, - gemDex = 60, - gemInt = 40, color = 2, 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, }, @@ -5358,7 +5267,7 @@ skills["VolatileDead"] = { [20] = { 70, 31, 535, 802, }, [21] = { 72, 32, 587, 881, }, [22] = { 74, 33, 645, 967, }, - [23] = { 76, 34, 707, 1060, }, + [23] = { 76, 34, 707, 1061, }, [24] = { 78, 34, 775, 1163, }, [25] = { 80, 34, 849, 1274, }, [26] = { 82, 34, 930, 1395, }, @@ -5366,21 +5275,20 @@ skills["VolatileDead"] = { [28] = { 86, 35, 1114, 1670, }, [29] = { 88, 35, 1218, 1827, }, [30] = { 90, 35, 1331, 1997, }, + [31] = { 91, 35, 1392, 2087, }, + [32] = { 92, 36, 1455, 2182, }, + [33] = { 93, 36, 1520, 2280, }, + [34] = { 94, 36, 1589, 2383, }, + [35] = { 95, 36, 1660, 2490, }, + [36] = { 96, 36, 1735, 2602, }, + [37] = { 97, 36, 1812, 2719, }, + [38] = { 98, 36, 1893, 2840, }, + [39] = { 99, 36, 1978, 2967, }, + [40] = { 100, 37, 2066, 3099, }, }, } skills["WhirlingBlades"] = { name = "Whirling Blades", - gemTags = { - dexterity = true, - active_skill = true, - attack = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, Movement, Melee", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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, }, @@ -5440,26 +5348,20 @@ skills["WhirlingBlades"] = { [28] = { 86, 1.07, 1.07, }, [29] = { 88, 1.08, 1.08, }, [30] = { 90, 1.09, 1.09, }, + [31] = { 91, 1.1, 1.095, }, + [32] = { 92, 1.1, 1.1, }, + [33] = { 93, 1.11, 1.105, }, + [34] = { 94, 1.11, 1.11, }, + [35] = { 95, 1.12, 1.115, }, + [36] = { 96, 1.12, 1.12, }, + [37] = { 97, 1.13, 1.125, }, + [38] = { 98, 1.13, 1.13, }, + [39] = { 99, 1.14, 1.135, }, + [40] = { 100, 1.14, 1.14, }, }, } skills["WildStrike"] = { name = "Wild Strike", - gemTags = { - projectile = true, - dexterity = true, - active_skill = true, - attack = true, - melee = true, - lightning = true, - cold = true, - fire = true, - area = true, - chaining = true, - }, - gemTagString = "Projectile, Attack, Melee, Lightning, Cold, Fire, AoE, Chaining", - gemStr = 40, - gemDex = 60, - gemInt = 0, 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, }, @@ -5583,5 +5485,15 @@ skills["WildStrike"] = { [28] = { 86, 1.95, 1.948, 8, 27, }, [29] = { 88, 1.97, 1.972, 8, 28, }, [30] = { 90, 2, 1.996, 8, 29, }, + [31] = { 91, 2.01, 2.008, 8, 29, }, + [32] = { 92, 2.02, 2.02, 9, 30, }, + [33] = { 93, 2.03, 2.032, 9, 30, }, + [34] = { 94, 2.04, 2.044, 9, 31, }, + [35] = { 95, 2.06, 2.056, 9, 31, }, + [36] = { 96, 2.07, 2.068, 9, 32, }, + [37] = { 97, 2.08, 2.08, 9, 32, }, + [38] = { 98, 2.09, 2.092, 9, 33, }, + [39] = { 99, 2.1, 2.104, 9, 33, }, + [40] = { 100, 2.12, 2.116, 9, 34, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/act_int.lua b/Data/3_0/Skills/act_int.lua index 468df958..4be4d160 100644 --- a/Data/3_0/Skills/act_int.lua +++ b/Data/3_0/Skills/act_int.lua @@ -8,19 +8,8 @@ local skills, mod, flag, skill = ... skills["Arc"] = { name = "Arc", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - chaining = true, - lightning = true, - }, - gemTagString = "Spell, Chaining, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "An arc of lightning stretches from the caster to a targeted nearby enemy and chains on to additional targets.", + 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, }, baseFlags = { spell = true, @@ -28,9 +17,11 @@ skills["Arc"] = { }, baseMods = { skill("castTime", 0.8), - skill("damageEffectiveness", 0.7), + skill("damageEffectiveness", 0.9), skill("CritChance", 5), mod("EnemyShockChance", "BASE", 10), --"base_chance_to_shock_%" = 10 + --"arc_damage_+%_final_for_each_remaining_chain" = 15 + --"arc_enhanced_behaviour" = ? }, qualityMods = { mod("EnemyShockChance", "BASE", 0.5), --"base_chance_to_shock_%" = 0.5 @@ -44,64 +35,65 @@ skills["Arc"] = { [6] = mod("EnemyShockEffect", "INC", nil), --"shock_effect_+%" }, levels = { - [1] = { 12, 9, 2, 35, 2, 10, }, - [2] = { 15, 10, 2, 44, 2, 11, }, - [3] = { 19, 11, 3, 58, 2, 12, }, - [4] = { 23, 12, 4, 76, 3, 13, }, - [5] = { 27, 13, 5, 97, 3, 14, }, - [6] = { 31, 14, 6, 123, 3, 15, }, - [7] = { 35, 16, 8, 154, 3, 16, }, - [8] = { 38, 16, 10, 182, 4, 17, }, - [9] = { 41, 17, 11, 214, 4, 18, }, - [10] = { 44, 18, 13, 250, 4, 19, }, - [11] = { 47, 19, 15, 292, 4, 20, }, - [12] = { 50, 20, 18, 340, 5, 21, }, - [13] = { 53, 21, 21, 395, 5, 22, }, - [14] = { 56, 22, 24, 458, 5, 23, }, - [15] = { 59, 23, 28, 529, 5, 24, }, - [16] = { 62, 24, 32, 610, 6, 25, }, - [17] = { 64, 24, 35, 671, 6, 26, }, - [18] = { 66, 25, 39, 736, 6, 27, }, - [19] = { 68, 25, 43, 808, 6, 28, }, - [20] = { 70, 26, 47, 886, 7, 29, }, - [21] = { 72, 26, 51, 971, 7, 30, }, - [22] = { 74, 26, 56, 1064, 7, 31, }, - [23] = { 76, 27, 61, 1164, 7, 32, }, - [24] = { 78, 28, 67, 1274, 8, 33, }, - [25] = { 80, 29, 73, 1393, 8, 34, }, - [26] = { 82, 30, 80, 1523, 8, 35, }, - [27] = { 84, 30, 88, 1663, 8, 36, }, - [28] = { 86, 30, 96, 1816, 9, 37, }, - [29] = { 88, 31, 104, 1983, 9, 38, }, - [30] = { 90, 32, 114, 2163, 9, 39, }, + [1] = { 12, 9, 7, 37, 4, 10, }, + [2] = { 15, 10, 8, 47, 4, 11, }, + [3] = { 19, 11, 11, 61, 4, 12, }, + [4] = { 23, 12, 14, 80, 4, 13, }, + [5] = { 27, 13, 18, 101, 4, 14, }, + [6] = { 31, 14, 23, 128, 5, 15, }, + [7] = { 35, 16, 28, 159, 5, 16, }, + [8] = { 38, 16, 33, 187, 5, 17, }, + [9] = { 41, 17, 39, 218, 5, 18, }, + [10] = { 44, 18, 45, 254, 5, 19, }, + [11] = { 47, 19, 52, 295, 6, 20, }, + [12] = { 50, 20, 60, 342, 6, 21, }, + [13] = { 53, 21, 70, 395, 6, 22, }, + [14] = { 56, 22, 80, 456, 6, 23, }, + [15] = { 59, 23, 92, 524, 6, 24, }, + [16] = { 62, 24, 106, 602, 7, 25, }, + [17] = { 64, 24, 116, 659, 7, 26, }, + [18] = { 66, 25, 127, 721, 7, 27, }, + [19] = { 68, 25, 139, 789, 7, 28, }, + [20] = { 70, 26, 152, 862, 7, 29, }, + [21] = { 72, 26, 166, 942, 8, 30, }, + [22] = { 74, 26, 181, 1028, 8, 31, }, + [23] = { 76, 27, 198, 1122, 8, 32, }, + [24] = { 78, 28, 216, 1223, 8, 33, }, + [25] = { 80, 29, 235, 1333, 8, 34, }, + [26] = { 82, 30, 256, 1453, 9, 35, }, + [27] = { 84, 30, 279, 1582, 9, 36, }, + [28] = { 86, 30, 304, 1721, 9, 37, }, + [29] = { 88, 31, 330, 1873, 9, 38, }, + [30] = { 90, 32, 359, 2036, 9, 39, }, + [31] = { 91, 32, 375, 2123, 10, 39, }, + [32] = { 92, 32, 391, 2214, 10, 40, }, + [33] = { 93, 33, 407, 2308, 10, 40, }, + [34] = { 94, 33, 424, 2405, 10, 41, }, + [35] = { 95, 33, 442, 2507, 10, 41, }, + [36] = { 96, 33, 461, 2613, 11, 42, }, + [37] = { 97, 34, 480, 2722, 11, 42, }, + [38] = { 98, 34, 501, 2837, 11, 43, }, + [39] = { 99, 34, 522, 2955, 11, 43, }, + [40] = { 100, 35, 543, 3079, 11, 44, }, }, } skills["VaalArcChain"] = { name = "Vaal Arc", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - chaining = true, - lightning = true, - }, - gemTagString = "Vaal, Spell, Chaining, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "An arc of lightning stretches from the caster to a targeted nearby enemy and chains on to many additional targets.", - skillTypes = { [2] = true, [10] = true, [17] = true, [18] = true, [19] = true, [23] = true, [43] = true, [35] = true, }, + 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, }, baseFlags = { spell = true, }, baseMods = { skill("castTime", 0.8), - skill("damageEffectiveness", 0.8), + skill("damageEffectiveness", 1.8), skill("CritChance", 5), mod("EnemyShockChance", "BASE", 100), --"base_chance_to_shock_%" = 100 - mod("ChainCountMax", "BASE", 40), --"number_of_additional_projectiles_in_chain" = 40 + mod("EnemyShockEffect", "INC", 100), --"shock_effect_+%" = 100 + mod("EnemyShockDuration", "INC", 100), --"shock_duration_+%" = 100 + --"arc_damage_+%_final_for_each_remaining_chain" = 15 + skill("duration", 4), --"base_skill_effect_duration" = 4000 }, qualityMods = { mod("EnemyShockDuration", "INC", 1.5), --"shock_duration_+%" = 1.5 @@ -110,55 +102,53 @@ skills["VaalArcChain"] = { [1] = skill("levelRequirement", nil), [2] = skill("LightningMin", nil), --"spell_minimum_base_lightning_damage" [3] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" + [4] = mod("ChainCountMax", "BASE", nil), --"number_of_additional_projectiles_in_chain" }, levels = { - [1] = { 12, 2, 35, }, - [2] = { 15, 2, 44, }, - [3] = { 19, 3, 59, }, - [4] = { 23, 4, 77, }, - [5] = { 27, 5, 99, }, - [6] = { 31, 7, 125, }, - [7] = { 35, 8, 158, }, - [8] = { 38, 10, 187, }, - [9] = { 41, 12, 220, }, - [10] = { 44, 14, 259, }, - [11] = { 47, 16, 303, }, - [12] = { 50, 19, 353, }, - [13] = { 53, 22, 411, }, - [14] = { 56, 25, 478, }, - [15] = { 59, 29, 554, }, - [16] = { 62, 34, 641, }, - [17] = { 64, 37, 706, }, - [18] = { 66, 41, 777, }, - [19] = { 68, 45, 854, }, - [20] = { 70, 49, 938, }, - [21] = { 72, 54, 1030, }, - [22] = { 74, 60, 1131, }, - [23] = { 76, 65, 1240, }, - [24] = { 78, 72, 1359, }, - [25] = { 80, 78, 1489, }, - [26] = { 82, 86, 1631, }, - [27] = { 84, 94, 1785, }, - [28] = { 86, 103, 1953, }, - [29] = { 88, 112, 2136, }, - [30] = { 90, 123, 2335, }, + [1] = { 12, 38, 64, 5, }, + [2] = { 15, 48, 80, 5, }, + [3] = { 19, 64, 106, 5, }, + [4] = { 23, 83, 138, 5, }, + [5] = { 27, 105, 176, 6, }, + [6] = { 31, 133, 222, 6, }, + [7] = { 35, 166, 277, 6, }, + [8] = { 38, 196, 326, 6, }, + [9] = { 41, 229, 382, 7, }, + [10] = { 44, 268, 446, 7, }, + [11] = { 47, 312, 519, 7, }, + [12] = { 50, 362, 603, 7, }, + [13] = { 53, 419, 698, 8, }, + [14] = { 56, 483, 806, 8, }, + [15] = { 59, 557, 929, 8, }, + [16] = { 62, 641, 1068, 8, }, + [17] = { 64, 703, 1172, 9, }, + [18] = { 66, 770, 1284, 9, }, + [19] = { 68, 844, 1406, 9, }, + [20] = { 70, 924, 1539, 9, }, + [21] = { 72, 1010, 1684, 10, }, + [22] = { 74, 1104, 1841, 10, }, + [23] = { 76, 1207, 2011, 10, }, + [24] = { 78, 1318, 2196, 10, }, + [25] = { 80, 1438, 2397, 11, }, + [26] = { 82, 1569, 2614, 11, }, + [27] = { 84, 1710, 2851, 11, }, + [28] = { 86, 1864, 3107, 11, }, + [29] = { 88, 2031, 3384, 12, }, + [30] = { 90, 2211, 3685, 12, }, + [31] = { 91, 2307, 3845, 12, }, + [32] = { 92, 2407, 4011, 12, }, + [33] = { 93, 2511, 4184, 12, }, + [34] = { 94, 2619, 4365, 12, }, + [35] = { 95, 2731, 4552, 12, }, + [36] = { 96, 2848, 4747, 13, }, + [37] = { 97, 2970, 4950, 13, }, + [38] = { 98, 3097, 5161, 13, }, + [39] = { 99, 3229, 5381, 13, }, + [40] = { 100, 3366, 5610, 13, }, }, } skills["ArcticBreath"] = { name = "Arctic Breath", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - area = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Duration, AoE, Cold", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, description = "Fires a frozen skull projectile that leaves a trail of ground ice behind it. It explodes on impact, creating more ground ice and damaging targets within an area.", 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, }, @@ -215,22 +205,20 @@ skills["ArcticBreath"] = { [28] = { 86, 25, 1400, 2100, 2.09, }, [29] = { 88, 25, 1550, 2326, 2.15, }, [30] = { 90, 26, 1716, 2574, 2.2, }, + [31] = { 91, 26, 1805, 2708, 2.254, }, + [32] = { 92, 26, 1899, 2848, 2.285, }, + [33] = { 93, 26, 1997, 2996, 2.317, }, + [34] = { 94, 27, 2100, 3150, 2.349, }, + [35] = { 95, 27, 2208, 3313, 2.382, }, + [36] = { 96, 27, 2322, 3483, 2.415, }, + [37] = { 97, 27, 2441, 3662, 2.449, }, + [38] = { 98, 28, 2566, 3850, 2.483, }, + [39] = { 99, 28, 2698, 4046, 2.517, }, + [40] = { 100, 28, 2835, 4253, 2.552, }, }, } skills["AssassinsMark"] = { name = "Assassin's Mark", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -291,22 +279,20 @@ skills["AssassinsMark"] = { [28] = { 86, 59, 11.4, 14, 11, 29, 29, 34, }, [29] = { 88, 60, 11.6, 14, 11, 30, 30, 35, }, [30] = { 90, 61, 11.8, 15, 11, 30, 30, 35, }, + [31] = { 91, 63, 11.9, 15, 11, 30, 30, 35, }, + [32] = { 92, 65, 12, 15, 12, 31, 31, 36, }, + [33] = { 93, 66, 12.1, 15, 12, 31, 31, 36, }, + [34] = { 94, 67, 12.2, 16, 12, 31, 31, 36, }, + [35] = { 95, 68, 12.3, 16, 12, 31, 31, 36, }, + [36] = { 96, 70, 12.4, 16, 12, 32, 32, 37, }, + [37] = { 97, 71, 12.5, 16, 12, 32, 32, 37, }, + [38] = { 98, 72, 12.6, 17, 12, 32, 32, 37, }, + [39] = { 99, 73, 12.7, 17, 12, 32, 32, 37, }, + [40] = { 100, 75, 12.8, 17, 12, 33, 33, 38, }, }, } skills["BallLightning"] = { name = "Ball Lightning", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Projectile, Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -316,9 +302,9 @@ skills["BallLightning"] = { }, baseMods = { skill("castTime", 0.8), - skill("damageEffectiveness", 0.2), + skill("damageEffectiveness", 0.35), skill("CritChance", 5), - --"active_skill_index" = 0 + --"ball_lightning_projectile_speed_and_hit_frequency_+%_final" = 33 --"base_is_projectile" = ? skill("radius", 20), }, @@ -332,53 +318,50 @@ skills["BallLightning"] = { [4] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" }, levels = { - [1] = { 28, 14, 2, 32, }, - [2] = { 31, 15, 2, 38, }, - [3] = { 34, 16, 2, 45, }, - [4] = { 37, 17, 3, 53, }, - [5] = { 40, 18, 3, 62, }, - [6] = { 42, 19, 4, 69, }, - [7] = { 44, 20, 4, 76, }, - [8] = { 46, 21, 4, 84, }, - [9] = { 48, 22, 5, 93, }, - [10] = { 50, 23, 5, 103, }, - [11] = { 52, 24, 6, 113, }, - [12] = { 54, 25, 7, 124, }, - [13] = { 56, 25, 7, 137, }, - [14] = { 58, 25, 8, 150, }, - [15] = { 60, 26, 9, 165, }, - [16] = { 62, 26, 10, 181, }, - [17] = { 64, 26, 10, 199, }, - [18] = { 66, 26, 11, 217, }, - [19] = { 68, 27, 13, 238, }, - [20] = { 70, 27, 14, 260, }, - [21] = { 72, 28, 15, 285, }, - [22] = { 74, 28, 16, 311, }, - [23] = { 76, 29, 18, 340, }, - [24] = { 78, 29, 20, 371, }, - [25] = { 80, 30, 21, 404, }, - [26] = { 82, 30, 23, 441, }, - [27] = { 84, 30, 25, 480, }, - [28] = { 86, 30, 28, 523, }, - [29] = { 88, 31, 30, 570, }, - [30] = { 90, 31, 33, 620, }, + [1] = { 28, 14, 2, 35, }, + [2] = { 31, 15, 2, 43, }, + [3] = { 34, 16, 3, 52, }, + [4] = { 37, 17, 3, 63, }, + [5] = { 40, 18, 4, 76, }, + [6] = { 42, 19, 5, 86, }, + [7] = { 44, 20, 5, 97, }, + [8] = { 46, 21, 6, 109, }, + [9] = { 48, 22, 6, 123, }, + [10] = { 50, 23, 7, 138, }, + [11] = { 52, 24, 8, 155, }, + [12] = { 54, 25, 9, 174, }, + [13] = { 56, 25, 10, 195, }, + [14] = { 58, 25, 11, 218, }, + [15] = { 60, 26, 13, 244, }, + [16] = { 62, 26, 14, 272, }, + [17] = { 64, 26, 16, 304, }, + [18] = { 66, 26, 18, 338, }, + [19] = { 68, 27, 20, 377, }, + [20] = { 70, 27, 22, 420, }, + [21] = { 72, 28, 25, 468, }, + [22] = { 74, 28, 27, 520, }, + [23] = { 76, 29, 30, 578, }, + [24] = { 78, 29, 34, 642, }, + [25] = { 80, 30, 38, 713, }, + [26] = { 82, 30, 42, 792, }, + [27] = { 84, 30, 46, 878, }, + [28] = { 86, 30, 51, 974, }, + [29] = { 88, 31, 57, 1080, }, + [30] = { 90, 31, 63, 1196, }, + [31] = { 91, 33, 66, 1259, }, + [32] = { 92, 33, 70, 1325, }, + [33] = { 93, 33, 73, 1394, }, + [34] = { 94, 34, 77, 1467, }, + [35] = { 95, 34, 81, 1543, }, + [36] = { 96, 34, 85, 1623, }, + [37] = { 97, 34, 90, 1708, }, + [38] = { 98, 35, 95, 1796, }, + [39] = { 99, 35, 99, 1889, }, + [40] = { 100, 35, 105, 1986, }, }, } skills["Blight"] = { name = "Blight", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - chaos = true, - area = true, - channelling = true, - duration = true, - }, - gemTagString = "Spell, Chaos, AoE, Channelling, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -440,22 +423,20 @@ skills["Blight"] = { [28] = { 86, 5, 482.18333333333, 5, }, [29] = { 88, 5, 533.85, 5, }, [30] = { 90, 5, 590.8, 6, }, + [31] = { 91, 5, 621.43333333333, 6, }, + [32] = { 92, 5, 653.58333333333, 6, }, + [33] = { 93, 5, 687.33333333333, 6, }, + [34] = { 94, 5, 722.75, 6, }, + [35] = { 95, 5, 759.91666666667, 6, }, + [36] = { 96, 5, 798.93333333333, 6, }, + [37] = { 97, 5, 839.86666666667, 6, }, + [38] = { 98, 5, 882.83333333333, 6, }, + [39] = { 99, 5, 927.91666666667, 6, }, + [40] = { 100, 5, 975.21666666667, 7, }, }, } skills["CorpseWarp"] = { name = "Bodyswap", - gemTags = { - intelligence = true, - active_skill = true, - movement = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Movement, Spell, AoE, Fire", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, }, @@ -488,7 +469,7 @@ skills["CorpseWarp"] = { area = true, }, baseMods = { - skill("castTime", 0.8), + skill("castTime", 0.6), skill("CritChance", 5), skill("corpseExplosionLifeMultiplier", 0.04), --"corpse_explosion_monster_life_%" = 4 skill("selfFireExplosionLifeMultiplier", 0.03), --"spell_base_fire_damage_%_maximum_life" = 3 @@ -535,21 +516,20 @@ skills["CorpseWarp"] = { [28] = { 86, 37, 1110, 1665, }, [29] = { 88, 38, 1223, 1834, }, [30] = { 90, 38, 1347, 2021, }, + [31] = { 91, 38, 1414, 2121, }, + [32] = { 92, 39, 1483, 2225, }, + [33] = { 93, 39, 1556, 2335, }, + [34] = { 94, 39, 1633, 2449, }, + [35] = { 95, 40, 1713, 2569, }, + [36] = { 96, 40, 1797, 2695, }, + [37] = { 97, 40, 1884, 2827, }, + [38] = { 98, 41, 1976, 2964, }, + [39] = { 99, 41, 2072, 3109, }, + [40] = { 100, 42, 2173, 3260, }, }, } skills["BoneOffering"] = { name = "Bone Offering", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -606,21 +586,20 @@ skills["BoneOffering"] = { [28] = { 86, 39, 39, 38, 990, }, [29] = { 88, 40, 39, 39, 1040, }, [30] = { 90, 41, 40, 39, 1089, }, + [31] = { 91, 42, 40, 39, 1114, }, + [32] = { 92, 43, 40, 40, 1139, }, + [33] = { 93, 44, 40, 40, 1164, }, + [34] = { 94, 45, 41, 40, 1188, }, + [35] = { 95, 45, 41, 40, 1213, }, + [36] = { 96, 46, 41, 41, 1238, }, + [37] = { 97, 47, 41, 41, 1262, }, + [38] = { 98, 48, 42, 41, 1287, }, + [39] = { 99, 49, 42, 41, 1312, }, + [40] = { 100, 50, 42, 42, 1336, }, }, } skills["Clarity"] = { name = "Clarity", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -675,23 +654,20 @@ skills["Clarity"] = { [28] = { 86, 363, 21.983333333333, 27, }, [29] = { 88, 373, 22.6, 28, }, [30] = { 90, 383, 23.216666666667, 29, }, + [31] = { 91, 406, 23.533333333333, 29, }, + [32] = { 92, 418, 23.833333333333, 30, }, + [33] = { 93, 430, 24.133333333333, 30, }, + [34] = { 94, 442, 24.45, 31, }, + [35] = { 95, 455, 24.766666666667, 31, }, + [36] = { 96, 467, 25.066666666667, 32, }, + [37] = { 97, 479, 25.383333333333, 32, }, + [38] = { 98, 491, 25.7, 33, }, + [39] = { 99, 503, 26.016666666667, 33, }, + [40] = { 100, 515, 26.333333333333, 34, }, }, } skills["VaalClarity"] = { name = "Vaal Clarity", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -746,24 +722,23 @@ skills["VaalClarity"] = { [28] = { 86, 27, 10.7, }, [29] = { 88, 28, 10.8, }, [30] = { 90, 29, 10.9, }, + [31] = { 91, 29, 10.9, }, + [32] = { 92, 30, 11, }, + [33] = { 93, 30, 11, }, + [34] = { 94, 31, 11.1, }, + [35] = { 95, 31, 11.1, }, + [36] = { 96, 32, 11.2, }, + [37] = { 97, 32, 11.2, }, + [38] = { 98, 33, 11.3, }, + [39] = { 99, 33, 11.3, }, + [40] = { 100, 34, 11.4, }, }, } skills["ColdSnap"] = { name = "Cold Snap", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "Ice crystals protrude from the ground at target location. Monsters in this area take damage and become frozen. The cooldown can be bypassed by expending a Power Charge.", - skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, [67] = true, }, + 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, }, baseFlags = { spell = true, area = true, @@ -771,13 +746,13 @@ skills["ColdSnap"] = { baseMods = { skill("castTime", 0.85), skill("damageEffectiveness", 1.2), - skill("CritChance", 5), - skill("cooldown", 4), - mod("EnemyFreezeChance", "BASE", 30), --"base_chance_to_freeze_%" = 30 - mod("EnemyFreezeDuration", "INC", 30), --"freeze_duration_+%" = 30 - mod("EnemyChillDuration", "INC", 110), --"chill_duration_+%" = 110 + skill("CritChance", 6), + skill("cooldown", 3), + skill("duration", 5), --"base_skill_effect_duration" = 5000 + --"chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%" = 25 skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? --"is_area_damage" = ? + skill("dotIsSpell", true), --"spell_damage_modifiers_apply_to_skill_dot" = ? skill("showAverage", false), skill("radius", 16), }, @@ -789,59 +764,56 @@ skills["ColdSnap"] = { [2] = skill("manaCost", nil), [3] = skill("ColdMin", nil), --"spell_minimum_base_cold_damage" [4] = skill("ColdMax", nil), --"spell_maximum_base_cold_damage" - [5] = skill("radiusExtra", nil), --"active_skill_base_radius_+" - [6] = mod("EnemyChillEffect", "INC", nil), --"chill_effect_+%" + [5] = mod("EnemyChillEffect", "INC", nil), --"chill_effect_+%" + [6] = skill("ColdDot", nil), --"base_cold_damage_to_deal_per_minute" }, levels = { - [1] = { 4, 11, 9, 13, 0, 20, }, - [2] = { 6, 12, 11, 16, 0, 21, }, - [3] = { 9, 13, 14, 21, 0, 22, }, - [4] = { 12, 14, 18, 27, 1, 23, }, - [5] = { 16, 15, 25, 37, 1, 24, }, - [6] = { 20, 16, 32, 49, 1, 25, }, - [7] = { 24, 17, 42, 63, 1, 26, }, - [8] = { 28, 18, 54, 81, 2, 27, }, - [9] = { 32, 19, 68, 102, 2, 28, }, - [10] = { 36, 20, 85, 128, 2, 29, }, - [11] = { 40, 21, 106, 159, 2, 30, }, - [12] = { 44, 22, 131, 196, 3, 31, }, - [13] = { 48, 23, 160, 240, 3, 32, }, - [14] = { 52, 24, 196, 294, 3, 33, }, - [15] = { 55, 25, 227, 341, 3, 34, }, - [16] = { 58, 26, 263, 394, 4, 35, }, - [17] = { 61, 26, 303, 455, 4, 36, }, - [18] = { 64, 27, 350, 524, 4, 37, }, - [19] = { 67, 27, 402, 603, 4, 38, }, - [20] = { 70, 28, 462, 693, 5, 39, }, - [21] = { 72, 28, 506, 759, 5, 40, }, - [22] = { 74, 29, 554, 832, 5, 41, }, - [23] = { 76, 29, 607, 910, 5, 42, }, - [24] = { 78, 30, 664, 996, 6, 43, }, - [25] = { 80, 30, 726, 1089, 6, 44, }, - [26] = { 82, 30, 794, 1191, 6, 45, }, - [27] = { 84, 30, 867, 1301, 6, 46, }, - [28] = { 86, 31, 947, 1420, 7, 47, }, - [29] = { 88, 31, 1033, 1550, 7, 48, }, - [30] = { 90, 32, 1127, 1691, 7, 49, }, + [1] = { 16, 8, 24, 35, 0, 19.683333333333, }, + [2] = { 20, 8, 32, 47, 1, 27.45, }, + [3] = { 24, 9, 42, 62, 2, 37.516666666667, }, + [4] = { 28, 9, 54, 81, 3, 50.483333333333, }, + [5] = { 31, 10, 65, 97, 4, 63.1, }, + [6] = { 34, 11, 78, 117, 5, 78.35, }, + [7] = { 37, 12, 93, 139, 6, 96.733333333333, }, + [8] = { 40, 12, 110, 166, 7, 118.78333333333, }, + [9] = { 43, 13, 131, 196, 8, 145.18333333333, }, + [10] = { 46, 14, 154, 231, 9, 176.7, }, + [11] = { 49, 15, 181, 272, 10, 214.25, }, + [12] = { 52, 16, 213, 320, 11, 258.88333333333, }, + [13] = { 55, 17, 249, 374, 12, 311.8, }, + [14] = { 58, 18, 291, 437, 13, 374.46666666667, }, + [15] = { 60, 18, 323, 484, 14, 426.18333333333, }, + [16] = { 62, 18, 358, 536, 15, 484.3, }, + [17] = { 64, 19, 396, 594, 16, 549.56666666667, }, + [18] = { 66, 19, 437, 656, 17, 622.78333333333, }, + [19] = { 68, 20, 483, 725, 18, 704.85, }, + [20] = { 70, 20, 534, 800, 19, 796.73333333333, }, + [21] = { 72, 21, 589, 883, 20, 899.55, }, + [22] = { 74, 22, 649, 974, 21, 1014.5166666667, }, + [23] = { 76, 22, 716, 1073, 22, 1142.95, }, + [24] = { 78, 22, 788, 1182, 23, 1286.3166666667, }, + [25] = { 80, 23, 868, 1302, 24, 1446.2833333333, }, + [26] = { 82, 23, 955, 1432, 25, 1624.6166666667, }, + [27] = { 84, 24, 1050, 1575, 26, 1823.3166666667, }, + [28] = { 86, 25, 1155, 1732, 27, 2044.5833333333, }, + [29] = { 88, 25, 1269, 1903, 28, 2290.8, }, + [30] = { 90, 26, 1394, 2090, 29, 2564.6666666667, }, + [31] = { 91, 27, 1460, 2191, 29, 2738.2, }, + [32] = { 92, 28, 1530, 2295, 30, 2922.2166666667, }, + [33] = { 93, 28, 1603, 2405, 30, 3117.25, }, + [34] = { 94, 29, 1679, 2519, 31, 3323.9166666667, }, + [35] = { 95, 30, 1759, 2639, 31, 3542.8833333333, }, + [36] = { 96, 30, 1843, 2764, 32, 3774.8, }, + [37] = { 97, 31, 1930, 2895, 32, 4020.3833333333, }, + [38] = { 98, 31, 2021, 3031, 33, 4280.3666666667, }, + [39] = { 99, 32, 2116, 3174, 33, 4555.5666666667, }, + [40] = { 100, 33, 2216, 3324, 34, 4846.7833333333, }, }, } skills["VaalColdSnap"] = { name = "Vaal Cold Snap", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "A sequence of ice crystals erupts from the ground around the caster, damaging enemies and leaving the ground chilled.", + description = "Creates a sudden burst of cold around you, damaging enemies. This also creates an expanding area around you which chills surrounding enemies and deals cold damage over time to 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, }, baseFlags = { spell = true, @@ -850,11 +822,15 @@ skills["VaalColdSnap"] = { }, baseMods = { skill("castTime", 0.85), - skill("damageEffectiveness", 1.4), - skill("CritChance", 5), - skill("duration", 10), --"base_skill_effect_duration" = 10000 + skill("damageEffectiveness", 1.8), + skill("CritChance", 6), + skill("duration", 4), --"base_skill_effect_duration" = 4000 mod("EnemyFreezeChance", "BASE", 100), --"base_chance_to_freeze_%" = 100 + --"chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%" = 100 + skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? --"is_area_damage" = ? + skill("dotIsSpell", true), --"spell_damage_modifiers_apply_to_skill_dot" = ? + --"vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura" = ? }, qualityMods = { mod("AreaOfEffect", "INC", 0.5), --"base_skill_area_of_effect_+%" = 0.5 @@ -863,56 +839,54 @@ skills["VaalColdSnap"] = { [1] = skill("levelRequirement", nil), [2] = skill("ColdMin", nil), --"spell_minimum_base_cold_damage" [3] = skill("ColdMax", nil), --"spell_maximum_base_cold_damage" - [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + [4] = skill("ColdDot", nil), --"base_cold_damage_to_deal_per_minute" + [5] = mod("EnemyChillEffect", "INC", nil), --"chill_effect_+%" }, levels = { - [1] = { 4, 11, 17, 0, }, - [2] = { 6, 14, 21, 0, }, - [3] = { 9, 18, 28, 0, }, - [4] = { 12, 24, 35, 1, }, - [5] = { 16, 32, 48, 1, }, - [6] = { 20, 42, 63, 1, }, - [7] = { 24, 55, 82, 1, }, - [8] = { 28, 70, 105, 2, }, - [9] = { 32, 88, 132, 2, }, - [10] = { 36, 111, 166, 2, }, - [11] = { 40, 137, 206, 2, }, - [12] = { 44, 170, 255, 3, }, - [13] = { 48, 208, 313, 3, }, - [14] = { 52, 255, 382, 3, }, - [15] = { 55, 295, 443, 3, }, - [16] = { 58, 342, 512, 4, }, - [17] = { 61, 394, 591, 4, }, - [18] = { 64, 454, 682, 4, }, - [19] = { 67, 523, 784, 4, }, - [20] = { 70, 600, 901, 5, }, - [21] = { 72, 658, 987, 5, }, - [22] = { 74, 721, 1081, 5, }, - [23] = { 76, 789, 1184, 5, }, - [24] = { 78, 863, 1295, 6, }, - [25] = { 80, 944, 1416, 6, }, - [26] = { 82, 1032, 1548, 6, }, - [27] = { 84, 1127, 1691, 6, }, - [28] = { 86, 1231, 1846, 7, }, - [29] = { 88, 1343, 2015, 7, }, - [30] = { 90, 1466, 2199, 7, }, + [1] = { 16, 35, 53, 29.533333333333, 0, }, + [2] = { 20, 47, 71, 41.166666666667, 1, }, + [3] = { 24, 62, 93, 56.266666666667, 2, }, + [4] = { 28, 81, 121, 75.716666666667, 3, }, + [5] = { 31, 97, 146, 94.65, 4, }, + [6] = { 34, 117, 175, 117.53333333333, 5, }, + [7] = { 37, 139, 209, 145.08333333333, 6, }, + [8] = { 40, 166, 248, 178.16666666667, 7, }, + [9] = { 43, 196, 294, 217.76666666667, 8, }, + [10] = { 46, 231, 347, 265.05, 9, }, + [11] = { 49, 272, 408, 321.38333333333, 10, }, + [12] = { 52, 320, 479, 388.31666666667, 11, }, + [13] = { 55, 374, 561, 467.7, 12, }, + [14] = { 58, 437, 656, 561.68333333333, 13, }, + [15] = { 60, 484, 727, 639.26666666667, 14, }, + [16] = { 62, 536, 805, 726.46666666667, 15, }, + [17] = { 64, 594, 890, 824.36666666667, 16, }, + [18] = { 66, 656, 984, 934.18333333333, 17, }, + [19] = { 68, 725, 1087, 1057.2666666667, 18, }, + [20] = { 70, 800, 1201, 1195.1166666667, 19, }, + [21] = { 72, 883, 1325, 1349.3333333333, 20, }, + [22] = { 74, 974, 1461, 1521.7666666667, 21, }, + [23] = { 76, 1073, 1610, 1714.4166666667, 22, }, + [24] = { 78, 1182, 1773, 1929.4833333333, 23, }, + [25] = { 80, 1302, 1952, 2169.4166666667, 24, }, + [26] = { 82, 1432, 2148, 2436.9333333333, 25, }, + [27] = { 84, 1575, 2363, 2734.9833333333, 26, }, + [28] = { 86, 1732, 2598, 3066.8666666667, 27, }, + [29] = { 88, 1903, 2855, 3436.2, 28, }, + [30] = { 90, 2090, 3136, 3846.9833333333, 29, }, + [31] = { 91, 2191, 3286, 4107.3166666667, 29, }, + [32] = { 92, 2295, 3443, 4383.3166666667, 30, }, + [33] = { 93, 2405, 3607, 4675.8666666667, 30, }, + [34] = { 94, 2519, 3779, 4985.8833333333, 31, }, + [35] = { 95, 2639, 3958, 5314.3166666667, 31, }, + [36] = { 96, 2764, 4146, 5662.2, 32, }, + [37] = { 97, 2895, 4342, 6030.5666666667, 32, }, + [38] = { 98, 3031, 4547, 6420.5666666667, 33, }, + [39] = { 99, 3174, 4761, 6833.35, 33, }, + [40] = { 100, 3324, 4985, 7270.1666666667, 34, }, }, } skills["Conductivity"] = { name = "Conductivity", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -970,22 +944,20 @@ skills["Conductivity"] = { [28] = { 86, 59, 11.7, 14, -52, 16, }, [29] = { 88, 60, 11.8, 14, -53, 17, }, [30] = { 90, 61, 11.9, 15, -54, 17, }, + [31] = { 91, 63, 11.95, 15, -54, 17, }, + [32] = { 92, 65, 12, 15, -55, 17, }, + [33] = { 93, 66, 12.05, 15, -55, 17, }, + [34] = { 94, 67, 12.1, 16, -56, 18, }, + [35] = { 95, 68, 12.15, 16, -56, 18, }, + [36] = { 96, 70, 12.2, 16, -57, 18, }, + [37] = { 97, 71, 12.25, 16, -57, 18, }, + [38] = { 98, 72, 12.3, 17, -58, 18, }, + [39] = { 99, 73, 12.35, 17, -58, 18, }, + [40] = { 100, 75, 12.4, 17, -59, 19, }, }, } skills["Contagion"] = { name = "Contagion", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Spell, AoE, Duration, Chaos", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, }, @@ -1018,7 +990,7 @@ skills["Contagion"] = { [3] = { 9, 13, 5.7, 0, }, [4] = { 12, 14, 7.4, 0, }, [5] = { 16, 15, 10.166666666667, 1, }, - [6] = { 20, 16, 13.65, 1, }, + [6] = { 20, 16, 13.633333333333, 1, }, [7] = { 24, 17, 17.966666666667, 1, }, [8] = { 28, 18, 23.316666666667, 1, }, [9] = { 32, 19, 29.933333333333, 1, }, @@ -1027,7 +999,7 @@ skills["Contagion"] = { [12] = { 44, 22, 60.3, 2, }, [13] = { 48, 23, 75.2, 2, }, [14] = { 52, 24, 93.333333333333, 2, }, - [15] = { 55, 25, 109.46666666667, 3, }, + [15] = { 55, 25, 109.45, 3, }, [16] = { 58, 26, 128.08333333333, 3, }, [17] = { 61, 26, 149.58333333333, 3, }, [18] = { 64, 27, 174.38333333333, 3, }, @@ -1039,25 +1011,24 @@ skills["Contagion"] = { [24] = { 78, 30, 349.73333333333, 4, }, [25] = { 80, 30, 385.4, 5, }, [26] = { 82, 30, 424.5, 5, }, - [27] = { 84, 30, 467.35, 5, }, + [27] = { 84, 30, 467.33333333333, 5, }, [28] = { 86, 31, 514.26666666667, 5, }, [29] = { 88, 31, 565.66666666667, 5, }, - [30] = { 90, 32, 621.95, 6, }, + [30] = { 90, 32, 621.93333333333, 6, }, + [31] = { 91, 33, 652.03333333333, 6, }, + [32] = { 92, 33, 683.53333333333, 6, }, + [33] = { 93, 33, 716.48333333333, 6, }, + [34] = { 94, 33, 750.93333333333, 6, }, + [35] = { 95, 34, 786.98333333333, 6, }, + [36] = { 96, 34, 824.68333333333, 6, }, + [37] = { 97, 34, 864.11666666667, 6, }, + [38] = { 98, 34, 905.35, 6, }, + [39] = { 99, 35, 948.46666666667, 6, }, + [40] = { 100, 35, 993.56666666667, 7, }, }, } skills["ConversionTrap"] = { name = "Conversion Trap", - gemTags = { - trap = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Trap, Spell, Duration", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -1070,7 +1041,7 @@ skills["ConversionTrap"] = { skill("castTime", 1), skill("cooldown", 8), --"is_trap" = 1 - --"base_trap_duration" = 8000 + --"base_trap_duration" = 4000 --"base_skill_is_trapped" = ? --"base_deal_no_damage" = ? --"traps_do_not_explode_on_timeout" = ? @@ -1084,51 +1055,50 @@ skills["ConversionTrap"] = { [3] = skill("duration", nil), --"base_skill_effect_duration" }, levels = { - [1] = { 4, 16, 5.3, }, - [2] = { 6, 17, 5.5, }, - [3] = { 9, 18, 5.8, }, - [4] = { 12, 19, 6, }, - [5] = { 16, 20, 6.3, }, - [6] = { 20, 21, 6.5, }, - [7] = { 24, 22, 6.8, }, - [8] = { 28, 23, 7, }, - [9] = { 32, 25, 7.3, }, - [10] = { 36, 27, 7.5, }, - [11] = { 40, 29, 7.8, }, - [12] = { 44, 30, 8, }, - [13] = { 48, 31, 8.3, }, - [14] = { 52, 32, 8.5, }, - [15] = { 55, 33, 8.8, }, - [16] = { 58, 34, 9, }, - [17] = { 61, 34, 9.3, }, - [18] = { 64, 35, 9.5, }, - [19] = { 67, 36, 9.8, }, - [20] = { 70, 37, 10, }, - [21] = { 72, 38, 10.3, }, - [22] = { 74, 38, 10.5, }, - [23] = { 76, 39, 10.8, }, - [24] = { 78, 40, 11, }, - [25] = { 80, 41, 11.3, }, - [26] = { 82, 42, 11.5, }, - [27] = { 84, 42, 11.8, }, - [28] = { 86, 43, 12, }, - [29] = { 88, 44, 12.3, }, - [30] = { 90, 45, 12.5, }, + [1] = { 4, 6, 5.3, }, + [2] = { 6, 7, 5.5, }, + [3] = { 9, 7, 5.8, }, + [4] = { 12, 8, 6, }, + [5] = { 16, 9, 6.3, }, + [6] = { 20, 11, 6.5, }, + [7] = { 24, 12, 6.8, }, + [8] = { 28, 13, 7, }, + [9] = { 32, 14, 7.3, }, + [10] = { 36, 16, 7.5, }, + [11] = { 40, 17, 7.8, }, + [12] = { 44, 19, 8, }, + [13] = { 48, 20, 8.3, }, + [14] = { 52, 20, 8.5, }, + [15] = { 55, 21, 8.8, }, + [16] = { 58, 22, 9, }, + [17] = { 61, 23, 9.3, }, + [18] = { 64, 23, 9.5, }, + [19] = { 67, 23, 9.8, }, + [20] = { 70, 23, 10, }, + [21] = { 72, 24, 10.3, }, + [22] = { 74, 25, 10.5, }, + [23] = { 76, 25, 10.8, }, + [24] = { 78, 25, 11, }, + [25] = { 80, 25, 11.3, }, + [26] = { 82, 26, 11.5, }, + [27] = { 84, 27, 11.8, }, + [28] = { 86, 27, 12, }, + [29] = { 88, 27, 12.3, }, + [30] = { 90, 28, 12.5, }, + [31] = { 91, 29, 12.65, }, + [32] = { 92, 29, 12.8, }, + [33] = { 93, 29, 12.9, }, + [34] = { 94, 29, 13, }, + [35] = { 95, 30, 13.15, }, + [36] = { 96, 31, 13.3, }, + [37] = { 97, 31, 13.4, }, + [38] = { 98, 31, 13.5, }, + [39] = { 99, 32, 13.65, }, + [40] = { 100, 33, 13.8, }, }, } skills["Convocation"] = { name = "Convocation", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1184,23 +1154,20 @@ skills["Convocation"] = { [28] = { 86, 14, 262.93333333333, }, [29] = { 88, 15, 290.61666666667, }, [30] = { 90, 15, 321, }, + [31] = { 91, 15, 337.5, }, + [32] = { 92, 15, 354, }, + [33] = { 93, 16, 371.91666666667, }, + [34] = { 94, 16, 389.83333333333, }, + [35] = { 95, 16, 409.25, }, + [36] = { 96, 16, 428.66666666667, }, + [37] = { 97, 16, 449.66666666667, }, + [38] = { 98, 17, 470.66666666667, }, + [39] = { 99, 17, 493.33333333333, }, + [40] = { 100, 17, 516, }, }, } skills["DarkPact"] = { name = "Dark Pact", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - chaining = true, - chaos = true, - }, - gemTagString = "Minion, Spell, AoE, Chaining, Chaos", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1281,23 +1248,20 @@ skills["DarkPact"] = { [28] = { 86, 15, 438, 657, 108, }, [29] = { 88, 16, 482, 723, 112, }, [30] = { 90, 16, 530, 795, 116, }, + [31] = { 91, 17, 556, 833, 118, }, + [32] = { 92, 17, 582, 874, 120, }, + [33] = { 93, 17, 611, 916, 122, }, + [34] = { 94, 17, 640, 960, 124, }, + [35] = { 95, 17, 671, 1006, 126, }, + [36] = { 96, 17, 703, 1054, 128, }, + [37] = { 97, 17, 736, 1105, 130, }, + [38] = { 98, 18, 771, 1157, 132, }, + [39] = { 99, 18, 808, 1212, 134, }, + [40] = { 100, 18, 847, 1270, 136, }, }, } skills["Despair"] = { name = "Despair", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Chaos", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1347,7 +1311,7 @@ skills["Despair"] = { [18] = { 66, 47, 10.7, 9, -28, 24, 41, 51, }, [19] = { 68, 48, 10.8, 9, -29, 24, 43, 54, }, [20] = { 70, 50, 10.9, 10, -29, 25, 46, 57, }, - [21] = { 72, 51, 11, 10, -30, 25, 48, 61, }, + [21] = { 72, 51, 11, 10, -30, 25, 49, 61, }, [22] = { 74, 52, 11.1, 11, -30, 26, 51, 64, }, [23] = { 76, 53, 11.2, 11, -31, 26, 54, 68, }, [24] = { 78, 54, 11.3, 12, -31, 27, 57, 72, }, @@ -1357,23 +1321,20 @@ skills["Despair"] = { [28] = { 86, 59, 11.7, 14, -33, 29, 71, 89, }, [29] = { 88, 60, 11.8, 14, -34, 29, 75, 93, }, [30] = { 90, 61, 11.9, 15, -34, 30, 79, 98, }, + [31] = { 91, 63, 11.95, 15, -34, 30, 81, 101, }, + [32] = { 92, 65, 12, 15, -35, 30, 83, 104, }, + [33] = { 93, 66, 12.05, 15, -35, 30, 85, 106, }, + [34] = { 94, 67, 12.1, 16, -35, 31, 87, 109, }, + [35] = { 95, 68, 12.15, 16, -35, 31, 90, 112, }, + [36] = { 96, 70, 12.2, 16, -36, 31, 92, 115, }, + [37] = { 97, 71, 12.25, 16, -36, 31, 94, 118, }, + [38] = { 98, 72, 12.3, 17, -36, 32, 97, 121, }, + [39] = { 99, 73, 12.35, 17, -36, 32, 99, 124, }, + [40] = { 100, 75, 12.4, 17, -37, 32, 102, 127, }, }, } skills["Discharge"] = { name = "Discharge", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - cold = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Fire, Cold, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Discharge all the character's charges to deal elemental damage to all nearby monsters.", skillTypes = { [2] = true, [10] = true, [11] = true, [18] = true, [26] = true, [36] = true, [45] = true, [33] = true, [34] = true, [35] = true, [60] = true, }, @@ -1424,32 +1385,31 @@ skills["Discharge"] = { [17] = { 64, 44, 24, 454, 170, 255, 139, 208, }, [18] = { 66, 45, 26, 495, 185, 278, 152, 227, }, [19] = { 68, 46, 28, 540, 202, 303, 165, 248, }, - [20] = { 70, 47, 31, 589, 220, 331, 180, 271, }, + [20] = { 70, 47, 31, 589, 221, 331, 180, 271, }, [21] = { 72, 48, 34, 642, 240, 360, 197, 295, }, [22] = { 74, 49, 37, 699, 262, 392, 214, 321, }, [23] = { 76, 50, 40, 761, 285, 427, 233, 349, }, [24] = { 78, 51, 44, 828, 310, 465, 253, 380, }, - [25] = { 80, 52, 47, 900, 337, 505, 276, 413, }, + [25] = { 80, 52, 47, 900, 337, 505, 275, 413, }, [26] = { 82, 53, 51, 978, 366, 549, 299, 449, }, [27] = { 84, 54, 56, 1062, 397, 596, 325, 488, }, [28] = { 86, 55, 61, 1153, 431, 647, 353, 529, }, [29] = { 88, 57, 66, 1251, 468, 702, 383, 575, }, - [30] = { 90, 58, 71, 1357, 508, 762, 416, 623, }, + [30] = { 90, 58, 71, 1357, 508, 762, 415, 623, }, + [31] = { 91, 58, 74, 1413, 529, 793, 433, 649, }, + [32] = { 92, 59, 77, 1471, 551, 826, 450, 676, }, + [33] = { 93, 59, 81, 1532, 573, 860, 469, 704, }, + [34] = { 94, 60, 84, 1595, 597, 895, 488, 732, }, + [35] = { 95, 60, 87, 1660, 621, 932, 508, 762, }, + [36] = { 96, 61, 91, 1728, 647, 970, 529, 794, }, + [37] = { 97, 61, 95, 1798, 673, 1009, 551, 826, }, + [38] = { 98, 62, 98, 1871, 700, 1050, 573, 859, }, + [39] = { 99, 62, 102, 1947, 729, 1093, 596, 894, }, + [40] = { 100, 63, 107, 2026, 758, 1137, 620, 931, }, }, } skills["Discipline"] = { name = "Discipline", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1502,26 +1462,23 @@ skills["Discipline"] = { [25] = { 80, 262, 24, }, [26] = { 82, 269, 25, }, [27] = { 84, 284, 26, }, - [28] = { 86, 298, 27, }, - [29] = { 88, 315, 28, }, - [30] = { 90, 319, 29, }, + [28] = { 86, 294, 27, }, + [29] = { 88, 304, 28, }, + [30] = { 90, 314, 29, }, + [31] = { 91, 314, 29, }, + [32] = { 92, 323, 30, }, + [33] = { 93, 323, 30, }, + [34] = { 94, 332, 31, }, + [35] = { 95, 332, 31, }, + [36] = { 96, 340, 32, }, + [37] = { 97, 340, 32, }, + [38] = { 98, 348, 33, }, + [39] = { 99, 348, 33, }, + [40] = { 100, 356, 34, }, }, } skills["VaalDiscipline"] = { name = "Vaal Discipline", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Aura, Vaal, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1577,22 +1534,20 @@ skills["VaalDiscipline"] = { [28] = { 86, 27, }, [29] = { 88, 28, }, [30] = { 90, 29, }, + [31] = { 91, 29, }, + [32] = { 92, 30, }, + [33] = { 93, 30, }, + [34] = { 94, 31, }, + [35] = { 95, 31, }, + [36] = { 96, 32, }, + [37] = { 97, 32, }, + [38] = { 98, 33, }, + [39] = { 99, 33, }, + [40] = { 100, 34, }, }, } skills["ElementalWeakness"] = { name = "Elemental Weakness", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1649,22 +1604,20 @@ skills["ElementalWeakness"] = { [28] = { 86, 59, 11.7, 14, -47, }, [29] = { 88, 60, 11.8, 14, -48, }, [30] = { 90, 61, 11.9, 15, -49, }, + [31] = { 91, 63, 11.95, 15, -49, }, + [32] = { 92, 65, 12, 15, -50, }, + [33] = { 93, 66, 12.05, 15, -50, }, + [34] = { 94, 67, 12.1, 16, -51, }, + [35] = { 95, 68, 12.15, 16, -51, }, + [36] = { 96, 70, 12.2, 16, -52, }, + [37] = { 97, 71, 12.25, 16, -52, }, + [38] = { 98, 72, 12.3, 17, -53, }, + [39] = { 99, 73, 12.35, 17, -53, }, + [40] = { 100, 75, 12.4, 17, -54, }, }, } skills["Enfeeble"] = { name = "Enfeeble", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -1725,24 +1678,22 @@ skills["Enfeeble"] = { [28] = { 86, 59, 11.7, 9, -45, -34, -34, }, [29] = { 88, 60, 11.8, 10, -46, -35, -35, }, [30] = { 90, 61, 11.9, 10, -47, -35, -35, }, + [31] = { 91, 63, 11.95, 10, -47, -35, -35, }, + [32] = { 92, 65, 12, 10, -48, -36, -36, }, + [33] = { 93, 66, 12.05, 10, -48, -36, -36, }, + [34] = { 94, 67, 12.1, 11, -49, -36, -36, }, + [35] = { 95, 68, 12.15, 11, -49, -36, -36, }, + [36] = { 96, 70, 12.2, 11, -50, -37, -37, }, + [37] = { 97, 71, 12.25, 11, -50, -37, -37, }, + [38] = { 98, 72, 12.3, 11, -51, -37, -37, }, + [39] = { 99, 73, 12.35, 11, -51, -37, -37, }, + [40] = { 100, 75, 12.4, 12, -52, -38, -38, }, }, } skills["EssenceDrain"] = { name = "Essence Drain", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - chaos = true, - }, - gemTagString = "Projectile, Spell, Duration, Chaos", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, - 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.", + 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, }, baseFlags = { spell = true, @@ -1786,42 +1737,39 @@ skills["EssenceDrain"] = { [12] = { 50, 20, 342.65, 99, 148, }, [13] = { 53, 21, 413.71666666667, 119, 179, }, [14] = { 56, 22, 498.38333333333, 144, 215, }, - [15] = { 59, 23, 599.13333333333, 173, 259, }, - [16] = { 62, 24, 718.86666666667, 207, 311, }, + [15] = { 59, 23, 599.11666666667, 173, 259, }, + [16] = { 62, 24, 718.85, 207, 311, }, [17] = { 64, 24, 810.9, 234, 350, }, - [18] = { 66, 25, 914.06666666667, 263, 395, }, - [19] = { 68, 26, 1029.6333333333, 297, 445, }, - [20] = { 70, 27, 1159.0333333333, 334, 501, }, - [21] = { 72, 28, 1303.8833333333, 376, 563, }, - [22] = { 74, 29, 1465.9666666667, 422, 633, }, - [23] = { 76, 29, 1647.25, 474, 712, }, - [24] = { 78, 30, 1849.95, 533, 799, }, - [25] = { 80, 30, 2076.5166666667, 598, 897, }, - [26] = { 82, 31, 2329.6666666667, 671, 1006, }, - [27] = { 84, 32, 2612.4333333333, 752, 1129, }, - [28] = { 86, 33, 2928.2, 843, 1265, }, - [29] = { 88, 33, 3280.7, 945, 1417, }, - [30] = { 90, 34, 3674.1, 1058, 1587, }, + [18] = { 66, 25, 914.05, 263, 395, }, + [19] = { 68, 26, 1029.6166666667, 297, 445, }, + [20] = { 70, 27, 1159.0166666667, 334, 501, }, + [21] = { 72, 28, 1303.8666666667, 376, 563, }, + [22] = { 74, 29, 1465.95, 422, 633, }, + [23] = { 76, 29, 1647.2333333333, 474, 712, }, + [24] = { 78, 30, 1849.9333333333, 533, 799, }, + [25] = { 80, 30, 2076.4833333333, 598, 897, }, + [26] = { 82, 31, 2329.6333333333, 671, 1006, }, + [27] = { 84, 32, 2612.4166666667, 752, 1129, }, + [28] = { 86, 33, 2928.1666666667, 843, 1265, }, + [29] = { 88, 33, 3280.6666666667, 945, 1417, }, + [30] = { 90, 34, 3674.0666666667, 1058, 1587, }, + [31] = { 91, 34, 3887.5166666667, 1120, 1679, }, + [32] = { 92, 34, 4112.9666666667, 1185, 1777, }, + [33] = { 93, 34, 4351.0833333333, 1253, 1880, }, + [34] = { 94, 35, 4602.55, 1326, 1988, }, + [35] = { 95, 35, 4868.0833333333, 1402, 2103, }, + [36] = { 96, 35, 5148.4666666667, 1483, 2224, }, + [37] = { 97, 36, 5444.5166666667, 1568, 2352, }, + [38] = { 98, 36, 5757.1, 1658, 2487, }, + [39] = { 99, 36, 6087.0833333333, 1753, 2630, }, + [40] = { 100, 37, 6435.45, 1853, 2780, }, }, } skills["FireNovaMine"] = { name = "Fire Nova Mine", - gemTags = { - area = true, - mine = true, - intelligence = true, - active_skill = true, - spell = true, - fire = true, - duration = true, - }, - gemTagString = "AoE, Mine, Spell, Fire, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, [12] = true, }, + skillTypes = { [2] = true, [10] = true, [36] = true, [11] = true, [33] = true, [26] = true, [41] = true, }, baseFlags = { spell = true, mine = true, @@ -1868,7 +1816,7 @@ skills["FireNovaMine"] = { [15] = { 59, 32, 79, 118, 27, }, [16] = { 62, 33, 90, 135, 27, }, [17] = { 64, 34, 98, 148, 28, }, - [18] = { 66, 35, 107, 161, 28, }, + [18] = { 66, 35, 108, 161, 28, }, [19] = { 68, 36, 117, 176, 29, }, [20] = { 70, 36, 128, 192, 29, }, [21] = { 72, 37, 140, 210, 30, }, @@ -1881,22 +1829,20 @@ skills["FireNovaMine"] = { [28] = { 86, 43, 253, 379, 33, }, [29] = { 88, 44, 274, 412, 34, }, [30] = { 90, 45, 298, 447, 34, }, + [31] = { 91, 46, 310, 466, 34, }, + [32] = { 92, 46, 323, 485, 35, }, + [33] = { 93, 47, 337, 505, 35, }, + [34] = { 94, 48, 351, 526, 35, }, + [35] = { 95, 49, 365, 548, 35, }, + [36] = { 96, 50, 380, 571, 36, }, + [37] = { 97, 51, 396, 594, 36, }, + [38] = { 98, 51, 412, 619, 36, }, + [39] = { 99, 52, 429, 644, 36, }, + [40] = { 100, 53, 447, 671, 37, }, }, } skills["Fireball"] = { name = "Fireball", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Projectile, Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1915,7 +1861,8 @@ skills["Fireball"] = { projectile = true, }, baseMods = { - skill("castTime", 0.85), + skill("castTime", 0.75), + skill("damageEffectiveness", 1.6), skill("CritChance", 6), --"base_is_projectile" = ? skill("radius", 9), @@ -1930,55 +1877,53 @@ skills["Fireball"] = { [4] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" [5] = mod("EnemyIgniteChance", "BASE", nil), --"base_chance_to_ignite_%" [6] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + --[7] = "active_skill_ignite_damage_+%_final" }, levels = { - [1] = { 1, 6, 7, 10, 20, 0, }, - [2] = { 2, 6, 8, 11, 21, 0, }, - [3] = { 4, 7, 10, 14, 22, 0, }, - [4] = { 7, 8, 13, 20, 23, 0, }, - [5] = { 11, 9, 19, 29, 24, 0, }, - [6] = { 16, 10, 29, 43, 25, 1, }, - [7] = { 20, 11, 39, 58, 26, 1, }, - [8] = { 24, 12, 52, 77, 27, 1, }, - [9] = { 28, 13, 67, 101, 28, 1, }, - [10] = { 32, 15, 87, 131, 29, 1, }, - [11] = { 36, 16, 112, 168, 30, 1, }, - [12] = { 40, 17, 142, 213, 31, 2, }, - [13] = { 44, 18, 180, 270, 32, 2, }, - [14] = { 48, 19, 226, 339, 33, 2, }, - [15] = { 52, 21, 283, 424, 34, 2, }, - [16] = { 56, 22, 352, 528, 35, 2, }, - [17] = { 60, 23, 437, 655, 36, 2, }, - [18] = { 64, 24, 540, 810, 37, 3, }, - [19] = { 67, 25, 632, 948, 38, 3, }, - [20] = { 70, 26, 739, 1109, 39, 3, }, - [21] = { 72, 27, 819, 1229, 40, 3, }, - [22] = { 74, 27, 908, 1362, 41, 3, }, - [23] = { 76, 28, 1005, 1508, 42, 3, }, - [24] = { 78, 28, 1113, 1669, 43, 4, }, - [25] = { 80, 29, 1231, 1847, 44, 4, }, - [26] = { 82, 30, 1361, 2042, 45, 4, }, - [27] = { 84, 30, 1504, 2257, 46, 4, }, - [28] = { 86, 31, 1662, 2493, 47, 4, }, - [29] = { 88, 31, 1835, 2752, 48, 4, }, - [30] = { 90, 32, 2025, 3038, 49, 5, }, + [1] = { 1, 6, 7, 10, 20, 0, 50, }, + [2] = { 2, 6, 8, 11, 21, 0, 52, }, + [3] = { 4, 7, 10, 15, 22, 0, 54, }, + [4] = { 7, 8, 13, 20, 23, 0, 56, }, + [5] = { 11, 9, 20, 29, 24, 1, 58, }, + [6] = { 16, 10, 30, 45, 25, 1, 60, }, + [7] = { 20, 11, 41, 61, 26, 1, 62, }, + [8] = { 24, 12, 55, 82, 27, 1, 64, }, + [9] = { 28, 13, 72, 109, 28, 2, 66, }, + [10] = { 32, 15, 95, 142, 29, 2, 68, }, + [11] = { 36, 16, 123, 184, 30, 2, 70, }, + [12] = { 40, 17, 158, 237, 31, 2, 72, }, + [13] = { 44, 18, 202, 303, 32, 3, 74, }, + [14] = { 48, 19, 256, 384, 33, 3, 76, }, + [15] = { 52, 21, 324, 486, 34, 3, 78, }, + [16] = { 56, 22, 408, 612, 35, 3, 80, }, + [17] = { 60, 23, 512, 768, 36, 4, 82, }, + [18] = { 64, 24, 640, 960, 37, 4, 84, }, + [19] = { 67, 25, 755, 1133, 38, 4, 86, }, + [20] = { 70, 26, 890, 1335, 39, 4, 88, }, + [21] = { 72, 27, 992, 1488, 40, 5, 90, }, + [22] = { 74, 27, 1105, 1657, 41, 5, 92, }, + [23] = { 76, 28, 1230, 1845, 42, 5, 94, }, + [24] = { 78, 28, 1369, 2053, 43, 5, 96, }, + [25] = { 80, 29, 1522, 2284, 44, 6, 98, }, + [26] = { 82, 30, 1692, 2539, 45, 6, 100, }, + [27] = { 84, 30, 1881, 2821, 46, 6, 102, }, + [28] = { 86, 31, 2089, 3133, 47, 6, 104, }, + [29] = { 88, 31, 2319, 3478, 48, 7, 106, }, + [30] = { 90, 32, 2573, 3859, 49, 7, 108, }, + [31] = { 91, 32, 2710, 4065, 50, 7, 109, }, + [32] = { 92, 32, 2854, 4281, 51, 7, 110, }, + [33] = { 93, 32, 3005, 4508, 52, 7, 111, }, + [34] = { 94, 33, 3164, 4747, 53, 7, 112, }, + [35] = { 95, 33, 3332, 4997, 54, 7, 113, }, + [36] = { 96, 33, 3507, 5261, 55, 8, 114, }, + [37] = { 97, 33, 3692, 5538, 56, 8, 115, }, + [38] = { 98, 34, 3886, 5829, 57, 8, 116, }, + [39] = { 99, 34, 4090, 6135, 58, 8, 117, }, + [40] = { 100, 34, 4304, 6456, 59, 8, 118, }, }, } skills["VaalFireballSpiralNova"] = { name = "Vaal Fireball", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Projectile, Vaal, Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -1997,70 +1942,70 @@ skills["VaalFireballSpiralNova"] = { projectile = true, }, baseMods = { - skill("castTime", 0.85), - skill("damageEffectiveness", 1.25), + skill("castTime", 0.75), + skill("damageEffectiveness", 1.6), skill("CritChance", 6), --"base_number_of_projectiles_in_spiral_nova" = 32 --"projectile_spiral_nova_time_ms" = 2000 --"projectile_spiral_nova_angle" = -720 - mod("AreaOfEffect", "INC", 50), --"base_skill_area_of_effect_+%" = 50 --"base_is_projectile" = ? }, qualityMods = { - mod("EnemyIgniteChance", "BASE", 1.5), --"base_chance_to_ignite_%" = 1.5 + mod("EnemyIgniteChance", "BASE", 0.5), --"base_chance_to_ignite_%" = 0.5 }, levelMods = { [1] = skill("levelRequirement", nil), [2] = skill("FireMin", nil), --"spell_minimum_base_fire_damage" [3] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" + [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + [5] = mod("EnemyIgniteChance", "BASE", nil), --"base_chance_to_ignite_%" + --[6] = "active_skill_ignite_damage_+%_final" }, levels = { - [1] = { 1, 8, 11, }, - [2] = { 2, 9, 13, }, - [3] = { 4, 11, 16, }, - [4] = { 7, 14, 22, }, - [5] = { 11, 20, 30, }, - [6] = { 16, 30, 45, }, - [7] = { 20, 39, 59, }, - [8] = { 24, 51, 76, }, - [9] = { 28, 65, 98, }, - [10] = { 32, 82, 124, }, - [11] = { 36, 103, 155, }, - [12] = { 40, 128, 192, }, - [13] = { 44, 158, 238, }, - [14] = { 48, 195, 292, }, - [15] = { 52, 238, 357, }, - [16] = { 56, 289, 434, }, - [17] = { 60, 351, 526, }, - [18] = { 64, 424, 636, }, - [19] = { 67, 488, 732, }, - [20] = { 70, 560, 841, }, - [21] = { 72, 614, 921, }, - [22] = { 74, 673, 1009, }, - [23] = { 76, 736, 1105, }, - [24] = { 78, 806, 1209, }, - [25] = { 80, 881, 1322, }, - [26] = { 82, 963, 1445, }, - [27] = { 84, 1052, 1578, }, - [28] = { 86, 1149, 1723, }, - [29] = { 88, 1254, 1881, }, - [30] = { 90, 1368, 2052, }, + [1] = { 1, 7, 10, 0, 20, 50, }, + [2] = { 2, 8, 11, 0, 21, 52, }, + [3] = { 4, 10, 15, 0, 22, 54, }, + [4] = { 7, 13, 20, 0, 23, 56, }, + [5] = { 11, 20, 29, 1, 24, 58, }, + [6] = { 16, 30, 45, 1, 25, 60, }, + [7] = { 20, 41, 61, 1, 26, 62, }, + [8] = { 24, 55, 82, 1, 27, 64, }, + [9] = { 28, 72, 109, 2, 28, 66, }, + [10] = { 32, 95, 142, 2, 29, 68, }, + [11] = { 36, 123, 184, 2, 30, 70, }, + [12] = { 40, 158, 237, 2, 31, 72, }, + [13] = { 44, 202, 303, 3, 32, 74, }, + [14] = { 48, 256, 384, 3, 33, 76, }, + [15] = { 52, 324, 486, 3, 34, 78, }, + [16] = { 56, 408, 612, 3, 35, 80, }, + [17] = { 60, 512, 768, 4, 36, 82, }, + [18] = { 64, 640, 960, 4, 37, 84, }, + [19] = { 67, 755, 1133, 4, 38, 86, }, + [20] = { 70, 890, 1335, 4, 39, 88, }, + [21] = { 72, 992, 1488, 5, 40, 90, }, + [22] = { 74, 1105, 1657, 5, 41, 92, }, + [23] = { 76, 1230, 1845, 5, 42, 94, }, + [24] = { 78, 1369, 2053, 5, 43, 96, }, + [25] = { 80, 1522, 2284, 6, 44, 98, }, + [26] = { 82, 1692, 2539, 6, 45, 100, }, + [27] = { 84, 1881, 2821, 6, 46, 102, }, + [28] = { 86, 2089, 3133, 6, 47, 104, }, + [29] = { 88, 2319, 3478, 7, 48, 106, }, + [30] = { 90, 2573, 3859, 7, 49, 108, }, + [31] = { 91, 2710, 4065, 7, 49, 109, }, + [32] = { 92, 2854, 4281, 7, 50, 110, }, + [33] = { 93, 3005, 4508, 7, 50, 111, }, + [34] = { 94, 3164, 4747, 7, 51, 112, }, + [35] = { 95, 3332, 4997, 7, 51, 113, }, + [36] = { 96, 3507, 5261, 8, 52, 114, }, + [37] = { 97, 3692, 5538, 8, 52, 115, }, + [38] = { 98, 3886, 5829, 8, 53, 116, }, + [39] = { 99, 4090, 6135, 8, 53, 117, }, + [40] = { 100, 4304, 6456, 8, 54, 118, }, }, } skills["Firestorm"] = { name = "Firestorm", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, AoE, Duration, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2091,52 +2036,50 @@ skills["Firestorm"] = { [4] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" }, levels = { - [1] = { 12, 9, 4, 10, }, + [1] = { 12, 9, 4, 11, }, [2] = { 15, 10, 9, 13, }, - [3] = { 19, 11, 11, 17, }, - [4] = { 23, 12, 15, 22, }, - [5] = { 27, 13, 19, 28, }, - [6] = { 31, 14, 23, 35, }, - [7] = { 35, 15, 29, 44, }, - [8] = { 38, 16, 35, 52, }, - [9] = { 41, 17, 40, 61, }, - [10] = { 44, 18, 47, 71, }, - [11] = { 47, 19, 55, 82, }, - [12] = { 50, 20, 64, 95, }, - [13] = { 53, 21, 74, 110, }, - [14] = { 56, 22, 85, 127, }, - [15] = { 59, 23, 98, 147, }, - [16] = { 62, 24, 112, 169, }, - [17] = { 64, 24, 123, 185, }, - [18] = { 66, 25, 135, 203, }, - [19] = { 68, 25, 148, 222, }, - [20] = { 70, 26, 162, 243, }, - [21] = { 72, 26, 177, 265, }, - [22] = { 74, 27, 193, 290, }, - [23] = { 76, 27, 211, 317, }, - [24] = { 78, 28, 231, 346, }, - [25] = { 80, 29, 251, 377, }, - [26] = { 82, 30, 274, 411, }, - [27] = { 84, 30, 299, 448, }, - [28] = { 86, 30, 326, 488, }, - [29] = { 88, 31, 355, 532, }, - [30] = { 90, 32, 386, 579, }, + [3] = { 19, 11, 12, 18, }, + [4] = { 23, 12, 16, 24, }, + [5] = { 27, 13, 20, 30, }, + [6] = { 31, 14, 26, 39, }, + [7] = { 35, 15, 33, 49, }, + [8] = { 38, 16, 39, 58, }, + [9] = { 41, 17, 46, 69, }, + [10] = { 44, 18, 54, 81, }, + [11] = { 47, 19, 64, 95, }, + [12] = { 50, 20, 74, 112, }, + [13] = { 53, 21, 87, 130, }, + [14] = { 56, 22, 101, 152, }, + [15] = { 59, 23, 118, 177, }, + [16] = { 62, 24, 137, 205, }, + [17] = { 64, 24, 151, 226, }, + [18] = { 66, 25, 166, 249, }, + [19] = { 68, 25, 183, 275, }, + [20] = { 70, 26, 202, 302, }, + [21] = { 72, 26, 222, 333, }, + [22] = { 74, 27, 244, 366, }, + [23] = { 76, 27, 268, 402, }, + [24] = { 78, 28, 294, 442, }, + [25] = { 80, 29, 323, 485, }, + [26] = { 82, 30, 355, 532, }, + [27] = { 84, 30, 389, 583, }, + [28] = { 86, 30, 426, 639, }, + [29] = { 88, 31, 467, 701, }, + [30] = { 90, 32, 512, 767, }, + [31] = { 91, 32, 535, 803, }, + [32] = { 92, 32, 560, 840, }, + [33] = { 93, 33, 586, 879, }, + [34] = { 94, 33, 613, 919, }, + [35] = { 95, 33, 641, 962, }, + [36] = { 96, 33, 670, 1006, }, + [37] = { 97, 34, 701, 1052, }, + [38] = { 98, 34, 733, 1100, }, + [39] = { 99, 34, 767, 1150, }, + [40] = { 100, 35, 802, 1202, }, }, } skills["FlameDash"] = { name = "Flame Dash", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - movement = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, Movement, Duration, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2170,46 +2113,45 @@ skills["FlameDash"] = { [3] = { 17, 12, 11, 16, 20.016666666667, }, [4] = { 21, 13, 15, 22, 27.366666666667, }, [5] = { 25, 14, 20, 29, 36.816666666667, }, - [6] = { 29, 15, 26, 39, 48.85, }, + [6] = { 29, 15, 26, 39, 48.866666666667, }, [7] = { 33, 16, 34, 51, 64.15, }, [8] = { 36, 17, 42, 63, 78.233333333333, }, [9] = { 39, 18, 51, 76, 94.983333333333, }, [10] = { 42, 20, 61, 92, 114.9, }, - [11] = { 45, 21, 74, 111, 138.5, }, + [11] = { 45, 21, 74, 111, 138.51666666667, }, [12] = { 48, 22, 89, 133, 166.48333333333, }, [13] = { 51, 24, 106, 160, 199.55, }, [14] = { 54, 25, 127, 191, 238.61666666667, }, [15] = { 57, 26, 152, 228, 284.7, }, [16] = { 60, 27, 181, 271, 339, }, - [17] = { 63, 28, 215, 322, 402.9, }, + [17] = { 63, 28, 215, 322, 402.91666666667, }, [18] = { 66, 29, 255, 382, 478.05, }, - [19] = { 68, 30, 285, 428, 535.3, }, - [20] = { 70, 30, 319, 479, 599.01666666667, }, - [21] = { 72, 31, 357, 536, 669.9, }, - [22] = { 74, 32, 399, 599, 748.71666666667, }, - [23] = { 76, 33, 446, 669, 836.33333333333, }, - [24] = { 78, 34, 498, 747, 933.7, }, - [25] = { 80, 34, 556, 833, 1041.8666666667, }, - [26] = { 82, 35, 620, 930, 1161.9666666667, }, - [27] = { 84, 36, 691, 1036, 1295.3166666667, }, - [28] = { 86, 37, 770, 1155, 1443.3, }, - [29] = { 88, 38, 857, 1286, 1607.4833333333, }, - [30] = { 90, 38, 954, 1432, 1789.6, }, + [19] = { 68, 30, 286, 428, 535.31666666667, }, + [20] = { 70, 30, 319, 479, 599.03333333333, }, + [21] = { 72, 31, 357, 536, 669.91666666667, }, + [22] = { 74, 32, 399, 599, 748.73333333333, }, + [23] = { 76, 33, 446, 669, 836.35, }, + [24] = { 78, 34, 498, 747, 933.71666666667, }, + [25] = { 80, 34, 556, 834, 1041.8833333333, }, + [26] = { 82, 35, 620, 930, 1161.9833333333, }, + [27] = { 84, 36, 691, 1036, 1295.3333333333, }, + [28] = { 86, 37, 770, 1155, 1443.3166666667, }, + [29] = { 88, 38, 857, 1286, 1607.5, }, + [30] = { 90, 38, 954, 1432, 1789.6333333333, }, + [31] = { 91, 38, 1007, 1510, 1888, }, + [32] = { 92, 39, 1062, 1593, 1991.5833333333, }, + [33] = { 93, 39, 1120, 1681, 2100.65, }, + [34] = { 94, 40, 1182, 1772, 2215.4666666667, }, + [35] = { 95, 40, 1246, 1869, 2336.35, }, + [36] = { 96, 41, 1314, 1971, 2463.6166666667, }, + [37] = { 97, 41, 1385, 2078, 2597.5666666667, }, + [38] = { 98, 42, 1461, 2191, 2738.5666666667, }, + [39] = { 99, 42, 1540, 2310, 2886.9666666667, }, + [40] = { 100, 42, 1623, 2435, 3043.1666666667, }, }, } skills["FlameWhip"] = { name = "Flame Surge", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2219,8 +2161,8 @@ skills["FlameWhip"] = { }, baseMods = { skill("castTime", 0.5), + skill("damageEffectiveness", 1.2), skill("CritChance", 6), - mod("Damage", "MORE", 50, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Burning" }), --"flame_whip_damage_+%_final_vs_burning_enemies" = 50 flag("CannotIgnite"), --"never_ignite" = ? --"is_area_damage" = ? skill("radius", 30), @@ -2233,56 +2175,55 @@ skills["FlameWhip"] = { [2] = skill("manaCost", nil), [3] = skill("FireMin", nil), --"spell_minimum_base_fire_damage" [4] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" + [5] = mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Burning" }), --"flame_whip_damage_+%_final_vs_burning_enemies" }, levels = { - [1] = { 12, 5, 21, 31, }, - [2] = { 15, 6, 26, 39, }, - [3] = { 19, 6, 35, 52, }, - [4] = { 23, 7, 45, 67, }, - [5] = { 27, 7, 57, 86, }, - [6] = { 31, 8, 73, 109, }, - [7] = { 35, 9, 91, 137, }, - [8] = { 38, 9, 107, 161, }, - [9] = { 41, 10, 126, 189, }, - [10] = { 44, 10, 147, 221, }, - [11] = { 47, 11, 171, 257, }, - [12] = { 50, 12, 199, 299, }, - [13] = { 53, 12, 231, 346, }, - [14] = { 56, 13, 267, 401, }, - [15] = { 59, 13, 308, 462, }, - [16] = { 62, 13, 355, 533, }, - [17] = { 64, 13, 390, 585, }, - [18] = { 66, 14, 428, 642, }, - [19] = { 68, 15, 469, 703, }, - [20] = { 70, 15, 514, 771, }, - [21] = { 72, 15, 563, 844, }, - [22] = { 74, 15, 616, 923, }, - [23] = { 76, 16, 673, 1010, }, - [24] = { 78, 16, 736, 1104, }, - [25] = { 80, 17, 804, 1206, }, - [26] = { 82, 18, 878, 1317, }, - [27] = { 84, 18, 958, 1437, }, - [28] = { 86, 18, 1045, 1567, }, - [29] = { 88, 18, 1139, 1709, }, - [30] = { 90, 19, 1242, 1863, }, + [1] = { 12, 5, 21, 31, 50, }, + [2] = { 15, 6, 26, 39, 52, }, + [3] = { 19, 6, 35, 52, 54, }, + [4] = { 23, 7, 45, 67, 56, }, + [5] = { 27, 7, 57, 86, 58, }, + [6] = { 31, 8, 73, 109, 60, }, + [7] = { 35, 9, 91, 137, 62, }, + [8] = { 38, 9, 107, 161, 64, }, + [9] = { 41, 10, 126, 189, 66, }, + [10] = { 44, 10, 147, 221, 68, }, + [11] = { 47, 11, 171, 257, 70, }, + [12] = { 50, 12, 199, 299, 72, }, + [13] = { 53, 12, 231, 346, 74, }, + [14] = { 56, 13, 267, 401, 76, }, + [15] = { 59, 13, 308, 462, 78, }, + [16] = { 62, 13, 355, 533, 80, }, + [17] = { 64, 13, 390, 585, 82, }, + [18] = { 66, 14, 428, 642, 84, }, + [19] = { 68, 15, 469, 703, 86, }, + [20] = { 70, 15, 514, 771, 88, }, + [21] = { 72, 15, 563, 844, 90, }, + [22] = { 74, 15, 616, 923, 92, }, + [23] = { 76, 16, 673, 1010, 94, }, + [24] = { 78, 16, 736, 1104, 96, }, + [25] = { 80, 17, 804, 1206, 98, }, + [26] = { 82, 18, 878, 1317, 100, }, + [27] = { 84, 18, 958, 1437, 102, }, + [28] = { 86, 18, 1045, 1567, 104, }, + [29] = { 88, 18, 1139, 1709, 106, }, + [30] = { 90, 19, 1242, 1863, 108, }, + [31] = { 91, 20, 1296, 1945, 108, }, + [32] = { 92, 20, 1353, 2030, 110, }, + [33] = { 93, 21, 1412, 2118, 110, }, + [34] = { 94, 21, 1474, 2211, 112, }, + [35] = { 95, 22, 1538, 2307, 112, }, + [36] = { 96, 22, 1604, 2407, 114, }, + [37] = { 97, 23, 1674, 2511, 114, }, + [38] = { 98, 23, 1746, 2619, 116, }, + [39] = { 99, 24, 1821, 2732, 116, }, + [40] = { 100, 24, 1900, 2850, 118, }, }, } skills["Flameblast"] = { name = "Flameblast", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - channelling = true, - }, - gemTagString = "Spell, AoE, Fire, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - 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.", + 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, }, parts = { { @@ -2301,7 +2242,8 @@ skills["Flameblast"] = { skill("damageEffectiveness", 0.5), skill("CritChance", 5), mod("Damage", "MORE", 110, 0, KeywordFlag.Hit, { type = "Multiplier", var = "FlameblastStage" }), --"charged_blast_spell_damage_+%_final_per_stack" = 110 - mod("Damage", "MORE", 55, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "FlameblastStage" }), --"flameblast_ailment_damage_+%_final_per_stack" = 55 + mod("Damage", "MORE", 90, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "FlameblastStage" }), --"flameblast_ailment_damage_+%_final_per_stack" = 90 + --"flameblast_ignite_chance_+%_per_stage" = 5 --"is_area_damage" = ? --"base_skill_show_average_damage_instead_of_dps" = ? mod("Multiplier:FlameblastStage", "BASE", 9, 0, 0, { type = "SkillPart", skillPart = 2 }), @@ -2317,65 +2259,65 @@ skills["Flameblast"] = { [4] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" }, levels = { - [1] = { 28, 6, 32, 48, }, - [2] = { 31, 6, 38, 57, }, - [3] = { 34, 6, 45, 67, }, - [4] = { 37, 6, 52, 78, }, - [5] = { 40, 7, 61, 91, }, - [6] = { 42, 7, 67, 101, }, - [7] = { 44, 7, 74, 111, }, - [8] = { 46, 7, 82, 123, }, - [9] = { 48, 7, 90, 135, }, - [10] = { 50, 8, 99, 148, }, - [11] = { 52, 8, 109, 163, }, - [12] = { 54, 8, 119, 179, }, - [13] = { 56, 8, 130, 196, }, - [14] = { 58, 8, 143, 214, }, - [15] = { 60, 9, 156, 234, }, - [16] = { 62, 9, 171, 256, }, - [17] = { 64, 9, 186, 279, }, - [18] = { 66, 9, 203, 305, }, - [19] = { 68, 9, 221, 332, }, - [20] = { 70, 9, 241, 362, }, - [21] = { 72, 10, 263, 394, }, - [22] = { 74, 10, 286, 429, }, - [23] = { 76, 10, 311, 466, }, - [24] = { 78, 11, 338, 507, }, - [25] = { 80, 11, 367, 550, }, - [26] = { 82, 11, 398, 598, }, - [27] = { 84, 12, 432, 649, }, - [28] = { 86, 12, 469, 704, }, - [29] = { 88, 12, 509, 763, }, - [30] = { 90, 13, 551, 827, }, + [1] = { 28, 3, 32, 48, }, + [2] = { 31, 3, 38, 57, }, + [3] = { 34, 3, 45, 67, }, + [4] = { 37, 3, 52, 78, }, + [5] = { 40, 3, 61, 91, }, + [6] = { 42, 4, 67, 101, }, + [7] = { 44, 4, 74, 111, }, + [8] = { 46, 4, 82, 123, }, + [9] = { 48, 4, 90, 135, }, + [10] = { 50, 4, 99, 148, }, + [11] = { 52, 5, 109, 163, }, + [12] = { 54, 5, 119, 179, }, + [13] = { 56, 5, 130, 196, }, + [14] = { 58, 5, 143, 214, }, + [15] = { 60, 5, 156, 234, }, + [16] = { 62, 6, 171, 256, }, + [17] = { 64, 6, 186, 279, }, + [18] = { 66, 6, 203, 305, }, + [19] = { 68, 6, 221, 332, }, + [20] = { 70, 6, 241, 362, }, + [21] = { 72, 6, 263, 394, }, + [22] = { 74, 7, 286, 429, }, + [23] = { 76, 7, 311, 466, }, + [24] = { 78, 7, 338, 507, }, + [25] = { 80, 7, 367, 550, }, + [26] = { 82, 7, 398, 598, }, + [27] = { 84, 7, 432, 649, }, + [28] = { 86, 8, 469, 704, }, + [29] = { 88, 8, 509, 763, }, + [30] = { 90, 8, 551, 827, }, + [31] = { 91, 8, 574, 861, }, + [32] = { 92, 8, 597, 896, }, + [33] = { 93, 9, 622, 932, }, + [34] = { 94, 9, 647, 970, }, + [35] = { 95, 9, 673, 1010, }, + [36] = { 96, 9, 700, 1051, }, + [37] = { 97, 9, 729, 1093, }, + [38] = { 98, 10, 758, 1137, }, + [39] = { 99, 10, 788, 1183, }, + [40] = { 100, 10, 820, 1230, }, }, } skills["VaalFlameblast"] = { name = "Vaal Flameblast", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "Targets an area and builds up a large explosion. The build-up speed is based on cast speed. The explosion occurs after it reaches 10 stacks.", + 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, }, baseFlags = { spell = true, area = true, }, baseMods = { - skill("castTime", 1), - skill("damageEffectiveness", 0.6), + skill("castTime", 0.5), + skill("damageEffectiveness", 0.5), skill("CritChance", 5), mod("Damage", "MORE", 110, 0, KeywordFlag.Hit, { type = "Multiplier", var = "FlameblastStage" }), --"charged_blast_spell_damage_+%_final_per_stack" = 110 - mod("Damage", "MORE", 55, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "FlameblastStage" }), --"flameblast_ailment_damage_+%_final_per_stack" = 55 + mod("Damage", "MORE", 90, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "FlameblastStage" }), --"flameblast_ailment_damage_+%_final_per_stack" = 90 + --"flameblast_ignite_chance_+%_per_stage" = 5 + --"vaal_flameblast_radius_+_per_stage" = -1 --"is_area_damage" = ? skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? mod("Multiplier:FlameblastStage", "BASE", 9), @@ -2389,53 +2331,50 @@ skills["VaalFlameblast"] = { [3] = skill("FireMax", nil), --"spell_maximum_base_fire_damage" }, levels = { - [1] = { 28, 39, 58, }, - [2] = { 31, 46, 68, }, - [3] = { 34, 53, 80, }, - [4] = { 37, 62, 93, }, - [5] = { 40, 71, 107, }, - [6] = { 42, 78, 117, }, - [7] = { 44, 86, 129, }, - [8] = { 46, 94, 141, }, - [9] = { 48, 103, 154, }, - [10] = { 50, 113, 169, }, - [11] = { 52, 123, 184, }, - [12] = { 54, 134, 201, }, - [13] = { 56, 146, 219, }, - [14] = { 58, 159, 238, }, - [15] = { 60, 173, 259, }, - [16] = { 62, 188, 282, }, - [17] = { 64, 204, 306, }, - [18] = { 66, 221, 332, }, - [19] = { 68, 240, 360, }, - [20] = { 70, 260, 390, }, - [21] = { 72, 281, 422, }, - [22] = { 74, 305, 457, }, - [23] = { 76, 329, 494, }, - [24] = { 78, 356, 534, }, - [25] = { 80, 385, 577, }, - [26] = { 82, 416, 623, }, - [27] = { 84, 449, 673, }, - [28] = { 86, 484, 726, }, - [29] = { 88, 522, 783, }, - [30] = { 90, 563, 844, }, + [1] = { 28, 32, 48, }, + [2] = { 31, 38, 57, }, + [3] = { 34, 45, 67, }, + [4] = { 37, 52, 78, }, + [5] = { 40, 61, 91, }, + [6] = { 42, 67, 101, }, + [7] = { 44, 74, 111, }, + [8] = { 46, 82, 123, }, + [9] = { 48, 90, 135, }, + [10] = { 50, 99, 148, }, + [11] = { 52, 109, 163, }, + [12] = { 54, 119, 179, }, + [13] = { 56, 130, 196, }, + [14] = { 58, 143, 214, }, + [15] = { 60, 156, 234, }, + [16] = { 62, 171, 256, }, + [17] = { 64, 186, 279, }, + [18] = { 66, 203, 305, }, + [19] = { 68, 221, 332, }, + [20] = { 70, 241, 362, }, + [21] = { 72, 263, 394, }, + [22] = { 74, 286, 429, }, + [23] = { 76, 311, 466, }, + [24] = { 78, 338, 507, }, + [25] = { 80, 367, 550, }, + [26] = { 82, 398, 598, }, + [27] = { 84, 432, 649, }, + [28] = { 86, 469, 704, }, + [29] = { 88, 509, 763, }, + [30] = { 90, 551, 827, }, + [31] = { 91, 574, 861, }, + [32] = { 92, 597, 896, }, + [33] = { 93, 622, 932, }, + [34] = { 94, 647, 970, }, + [35] = { 95, 673, 1010, }, + [36] = { 96, 700, 1051, }, + [37] = { 97, 729, 1093, }, + [38] = { 98, 758, 1137, }, + [39] = { 99, 788, 1183, }, + [40] = { 100, 820, 1230, }, }, } skills["Flammability"] = { name = "Flammability", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Fire", - gemStr = 40, - gemDex = 0, - gemInt = 60, 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, }, @@ -2493,21 +2432,20 @@ skills["Flammability"] = { [28] = { 86, 59, 11.7, 14, -52, 16, }, [29] = { 88, 60, 11.8, 14, -53, 17, }, [30] = { 90, 61, 11.9, 15, -54, 17, }, + [31] = { 91, 63, 11.95, 15, -54, 17, }, + [32] = { 92, 65, 12, 15, -55, 17, }, + [33] = { 93, 66, 12.05, 15, -55, 17, }, + [34] = { 94, 67, 12.1, 16, -56, 18, }, + [35] = { 95, 68, 12.15, 16, -56, 18, }, + [36] = { 96, 70, 12.2, 16, -57, 18, }, + [37] = { 97, 71, 12.25, 16, -57, 18, }, + [38] = { 98, 72, 12.3, 17, -58, 18, }, + [39] = { 99, 73, 12.35, 17, -58, 18, }, + [40] = { 100, 75, 12.4, 17, -59, 19, }, }, } skills["FleshOffering"] = { name = "Flesh Offering", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -2564,23 +2502,22 @@ skills["FleshOffering"] = { [28] = { 86, 39, 34, 33, 34, }, [29] = { 88, 40, 34, 34, 34, }, [30] = { 90, 41, 35, 34, 35, }, + [31] = { 91, 42, 35, 34, 35, }, + [32] = { 92, 43, 35, 35, 35, }, + [33] = { 93, 44, 35, 35, 35, }, + [34] = { 94, 45, 36, 35, 36, }, + [35] = { 95, 45, 36, 35, 36, }, + [36] = { 96, 46, 36, 36, 36, }, + [37] = { 97, 47, 36, 36, 36, }, + [38] = { 98, 48, 37, 36, 37, }, + [39] = { 99, 49, 37, 36, 37, }, + [40] = { 100, 50, 37, 37, 37, }, }, } skills["FreezingPulse"] = { name = "Freezing Pulse", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - 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 runs out of time and dissipates completely.", + 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, }, setupFunc = function(env, output) env.modDB:NewMod("Damage", "MORE", -100, "Skill:FreezingPulse", { type = "DistanceRamp", ramp = {{0,0},{60*output.ProjectileSpeedMod,1}} }) @@ -2611,49 +2548,47 @@ skills["FreezingPulse"] = { [1] = { 1, 4, 7, 11, 0, }, [2] = { 2, 5, 8, 13, 1, }, [3] = { 4, 6, 11, 16, 2, }, - [4] = { 7, 7, 15, 23, 3, }, - [5] = { 11, 8, 22, 33, 4, }, - [6] = { 16, 9, 32, 49, 5, }, - [7] = { 20, 10, 43, 65, 6, }, - [8] = { 24, 11, 57, 85, 7, }, - [9] = { 28, 12, 73, 110, 8, }, - [10] = { 32, 13, 93, 140, 9, }, - [11] = { 36, 14, 118, 176, 10, }, - [12] = { 40, 14, 148, 221, 11, }, - [13] = { 44, 15, 184, 276, 12, }, - [14] = { 48, 16, 228, 342, 13, }, - [15] = { 52, 17, 281, 421, 14, }, - [16] = { 56, 18, 345, 517, 15, }, - [17] = { 60, 18, 422, 633, 16, }, - [18] = { 64, 18, 515, 772, 17, }, - [19] = { 67, 18, 596, 894, 18, }, - [20] = { 70, 18, 689, 1034, 19, }, - [21] = { 72, 18, 759, 1138, 20, }, - [22] = { 74, 19, 835, 1252, 21, }, - [23] = { 76, 19, 918, 1377, 22, }, - [24] = { 78, 19, 1009, 1513, 23, }, - [25] = { 80, 20, 1108, 1662, 24, }, - [26] = { 82, 20, 1216, 1824, 25, }, - [27] = { 84, 20, 1335, 2002, 26, }, - [28] = { 86, 21, 1464, 2196, 27, }, - [29] = { 88, 21, 1605, 2407, 28, }, - [30] = { 90, 21, 1759, 2638, 29, }, + [4] = { 7, 7, 16, 23, 3, }, + [5] = { 11, 8, 22, 34, 4, }, + [6] = { 16, 9, 34, 50, 5, }, + [7] = { 20, 10, 45, 68, 6, }, + [8] = { 24, 11, 59, 89, 7, }, + [9] = { 28, 12, 77, 116, 8, }, + [10] = { 32, 13, 99, 149, 9, }, + [11] = { 36, 14, 127, 190, 10, }, + [12] = { 40, 14, 160, 240, 11, }, + [13] = { 44, 15, 201, 302, 12, }, + [14] = { 48, 16, 252, 378, 13, }, + [15] = { 52, 17, 313, 469, 14, }, + [16] = { 56, 18, 388, 581, 15, }, + [17] = { 60, 18, 478, 717, 16, }, + [18] = { 64, 18, 588, 882, 17, }, + [19] = { 67, 18, 686, 1028, 18, }, + [20] = { 70, 18, 798, 1197, 19, }, + [21] = { 72, 18, 882, 1323, 20, }, + [22] = { 74, 19, 974, 1462, 21, }, + [23] = { 76, 19, 1076, 1614, 22, }, + [24] = { 78, 19, 1188, 1781, 23, }, + [25] = { 80, 20, 1310, 1965, 24, }, + [26] = { 82, 20, 1444, 2166, 25, }, + [27] = { 84, 20, 1591, 2387, 26, }, + [28] = { 86, 21, 1753, 2629, 27, }, + [29] = { 88, 21, 1930, 2895, 28, }, + [30] = { 90, 21, 2124, 3186, 29, }, + [31] = { 91, 22, 2228, 3342, 29, }, + [32] = { 92, 22, 2337, 3505, 30, }, + [33] = { 93, 23, 2451, 3676, 30, }, + [34] = { 94, 23, 2570, 3854, 31, }, + [35] = { 95, 23, 2694, 4041, 31, }, + [36] = { 96, 23, 2825, 4237, 32, }, + [37] = { 97, 23, 2961, 4442, 32, }, + [38] = { 98, 23, 3104, 4656, 33, }, + [39] = { 99, 24, 3253, 4880, 33, }, + [40] = { 100, 24, 3410, 5115, 34, }, }, } skills["FrostBomb"] = { name = "Frost Bomb", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies that reduces their cold resistance and life regeneration. When its duration ends, the crystal 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, }, @@ -2664,12 +2599,12 @@ skills["FrostBomb"] = { }, baseMods = { skill("castTime", 0.5), - skill("damageEffectiveness", 1.3), + skill("damageEffectiveness", 2), skill("CritChance", 6), skill("cooldown", 2.5), - skill("duration", 3.5), --"base_skill_effect_duration" = 3500 - skill("durationSecondary", 2), --"base_secondary_skill_effect_duration" = 2000 - mod("ColdResist", "BASE", -20, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }), --"base_cold_damage_resistance_%" = -20 + skill("duration", 2), --"base_skill_effect_duration" = 2000 + skill("durationSecondary", 5), --"base_secondary_skill_effect_duration" = 5000 + mod("ColdResist", "BASE", -25, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }), --"base_cold_damage_resistance_%" = -25 --"life_regeneration_rate_+%" = -75 --"is_area_damage" = ? skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? @@ -2685,51 +2620,50 @@ skills["FrostBomb"] = { [4] = skill("ColdMax", nil), --"spell_maximum_base_cold_damage" }, levels = { - [1] = { 4, 6, 10, 14, }, - [2] = { 6, 7, 12, 18, }, - [3] = { 9, 8, 15, 23, }, - [4] = { 12, 9, 20, 30, }, - [5] = { 16, 10, 27, 40, }, - [6] = { 20, 11, 36, 54, }, - [7] = { 24, 12, 46, 70, }, - [8] = { 28, 13, 59, 89, }, - [9] = { 32, 13, 75, 113, }, - [10] = { 36, 14, 94, 142, }, - [11] = { 40, 14, 118, 176, }, - [12] = { 44, 15, 145, 218, }, - [13] = { 48, 16, 179, 268, }, - [14] = { 52, 16, 219, 329, }, - [15] = { 55, 17, 254, 382, }, - [16] = { 58, 18, 295, 442, }, - [17] = { 61, 18, 341, 511, }, - [18] = { 64, 19, 393, 590, }, - [19] = { 67, 19, 453, 679, }, - [20] = { 70, 19, 521, 781, }, - [21] = { 72, 20, 572, 857, }, - [22] = { 74, 21, 627, 940, }, - [23] = { 76, 21, 687, 1030, }, - [24] = { 78, 21, 752, 1128, }, - [25] = { 80, 22, 823, 1235, }, - [26] = { 82, 23, 900, 1351, }, - [27] = { 84, 23, 985, 1477, }, - [28] = { 86, 23, 1076, 1614, }, - [29] = { 88, 24, 1176, 1764, }, - [30] = { 90, 24, 1284, 1926, }, + [1] = { 4, 6, 14, 21, }, + [2] = { 6, 7, 17, 26, }, + [3] = { 9, 8, 23, 35, }, + [4] = { 12, 9, 30, 45, }, + [5] = { 16, 10, 41, 62, }, + [6] = { 20, 11, 55, 83, }, + [7] = { 24, 12, 73, 110, }, + [8] = { 28, 13, 95, 142, }, + [9] = { 32, 13, 122, 183, }, + [10] = { 36, 14, 155, 232, }, + [11] = { 40, 14, 196, 293, }, + [12] = { 44, 15, 245, 368, }, + [13] = { 48, 16, 306, 459, }, + [14] = { 52, 16, 380, 569, }, + [15] = { 55, 17, 445, 668, }, + [16] = { 58, 18, 521, 781, }, + [17] = { 61, 18, 608, 913, }, + [18] = { 64, 19, 709, 1064, }, + [19] = { 67, 19, 825, 1238, }, + [20] = { 70, 19, 959, 1439, }, + [21] = { 72, 20, 1059, 1589, }, + [22] = { 74, 21, 1169, 1754, }, + [23] = { 76, 21, 1290, 1935, }, + [24] = { 78, 21, 1422, 2133, }, + [25] = { 80, 22, 1567, 2351, }, + [26] = { 82, 23, 1726, 2589, }, + [27] = { 84, 23, 1901, 2851, }, + [28] = { 86, 23, 2091, 3137, }, + [29] = { 88, 24, 2300, 3451, }, + [30] = { 90, 24, 2529, 3794, }, + [31] = { 91, 24, 2652, 3978, }, + [32] = { 92, 24, 2780, 4170, }, + [33] = { 93, 24, 2914, 4371, }, + [34] = { 94, 25, 3054, 4581, }, + [35] = { 95, 25, 3200, 4801, }, + [36] = { 96, 25, 3354, 5031, }, + [37] = { 97, 25, 3514, 5271, }, + [38] = { 98, 25, 3682, 5523, }, + [39] = { 99, 26, 3857, 5786, }, + [40] = { 100, 26, 4041, 6061, }, }, } skills["FrostWall"] = { name = "Frost Wall", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - duration = true, - cold = true, - }, - gemTagString = "Spell, Duration, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2785,23 +2719,20 @@ skills["FrostWall"] = { [28] = { 86, 42, 5.7, 70, 947, 1420, }, [29] = { 88, 42, 5.8, 77, 1033, 1550, }, [30] = { 90, 42, 5.9, 77, 1127, 1691, }, + [31] = { 91, 43, 5.95, 78, 1178, 1766, }, + [32] = { 92, 43, 6, 80, 1230, 1844, }, + [33] = { 93, 44, 6.05, 81, 1284, 1926, }, + [34] = { 94, 44, 6.1, 83, 1340, 2011, }, + [35] = { 95, 44, 6.15, 85, 1399, 2099, }, + [36] = { 96, 45, 6.2, 87, 1461, 2191, }, + [37] = { 97, 45, 6.25, 88, 1525, 2287, }, + [38] = { 98, 45, 6.3, 90, 1591, 2387, }, + [39] = { 99, 46, 6.35, 92, 1661, 2491, }, + [40] = { 100, 46, 6.4, 94, 1733, 2599, }, }, } skills["Frostbite"] = { name = "Frostbite", - gemTags = { - curse = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - cold = true, - }, - gemTagString = "Curse, Spell, AoE, Duration, Cold", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -2859,21 +2790,20 @@ skills["Frostbite"] = { [28] = { 86, 59, 11.7, 14, -52, 16, }, [29] = { 88, 60, 11.8, 14, -53, 17, }, [30] = { 90, 61, 11.9, 15, -54, 17, }, + [31] = { 91, 63, 11.95, 15, -54, 17, }, + [32] = { 92, 65, 12, 15, -55, 17, }, + [33] = { 93, 66, 12.05, 15, -55, 17, }, + [34] = { 94, 67, 12.1, 16, -56, 18, }, + [35] = { 95, 68, 12.15, 16, -56, 18, }, + [36] = { 96, 70, 12.2, 16, -57, 18, }, + [37] = { 97, 71, 12.25, 16, -57, 18, }, + [38] = { 98, 72, 12.3, 17, -58, 18, }, + [39] = { 99, 73, 12.35, 17, -58, 18, }, + [40] = { 100, 75, 12.4, 17, -59, 19, }, }, } skills["FrostBolt"] = { name = "Frostbolt", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2916,32 +2846,31 @@ skills["FrostBolt"] = { [17] = { 60, 18, 440, 661, }, [18] = { 64, 19, 547, 820, }, [19] = { 67, 19, 642, 963, }, - [20] = { 70, 20, 752, 1129, }, + [20] = { 70, 20, 753, 1129, }, [21] = { 72, 20, 836, 1254, }, [22] = { 74, 21, 928, 1392, }, - [23] = { 76, 21, 1030, 1544, }, + [23] = { 76, 21, 1030, 1545, }, [24] = { 78, 21, 1142, 1713, }, [25] = { 80, 22, 1266, 1898, }, [26] = { 82, 23, 1402, 2103, }, - [27] = { 84, 23, 1552, 2329, }, + [27] = { 84, 23, 1553, 2329, }, [28] = { 86, 23, 1718, 2577, }, [29] = { 88, 24, 1901, 2851, }, [30] = { 90, 24, 2102, 3153, }, + [31] = { 91, 24, 2210, 3315, }, + [32] = { 92, 24, 2324, 3486, }, + [33] = { 93, 25, 2443, 3664, }, + [34] = { 94, 25, 2568, 3852, }, + [35] = { 95, 25, 2699, 4048, }, + [36] = { 96, 25, 2836, 4254, }, + [37] = { 97, 25, 2980, 4471, }, + [38] = { 98, 26, 3132, 4697, }, + [39] = { 99, 26, 3290, 4935, }, + [40] = { 100, 26, 3457, 5185, }, }, } skills["GlacialCascade"] = { name = "Glacial Cascade", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -2999,23 +2928,20 @@ skills["GlacialCascade"] = { [28] = { 86, 31, 873, 1310, 2, }, [29] = { 88, 31, 954, 1431, 2, }, [30] = { 90, 32, 1042, 1563, 3, }, + [31] = { 91, 33, 1089, 1634, 3, }, + [32] = { 92, 33, 1138, 1707, 3, }, + [33] = { 93, 34, 1189, 1783, 3, }, + [34] = { 94, 35, 1242, 1863, 3, }, + [35] = { 95, 35, 1297, 1946, 3, }, + [36] = { 96, 36, 1355, 2032, 3, }, + [37] = { 97, 37, 1415, 2123, 3, }, + [38] = { 98, 37, 1478, 2217, 3, }, + [39] = { 99, 38, 1543, 2315, 3, }, + [40] = { 100, 38, 1611, 2417, 3, }, }, } skills["HeraldOfThunder"] = { name = "Herald of Thunder", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - lightning = true, - herald = true, - }, - gemTagString = "Spell, AoE, Duration, Lightning, Herald", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3078,21 +3004,20 @@ skills["HeraldOfThunder"] = { [28] = { 86, 33, 131, 33, 131, 67, 3016, }, [29] = { 88, 35, 140, 35, 140, 75, 3338, }, [30] = { 90, 37, 150, 37, 150, 83, 3692, }, + [31] = { 91, 39, 155, 39, 155, 88, 3884, }, + [32] = { 92, 40, 160, 40, 160, 92, 4076, }, + [33] = { 93, 41, 165, 41, 165, 96, 4283, }, + [34] = { 94, 43, 170, 43, 170, 101, 4490, }, + [35] = { 95, 44, 176, 44, 176, 106, 4712, }, + [36] = { 96, 45, 182, 45, 182, 111, 4934, }, + [37] = { 97, 47, 188, 47, 188, 116, 5171, }, + [38] = { 98, 48, 194, 48, 194, 121, 5408, }, + [39] = { 99, 50, 200, 50, 200, 126, 5660, }, + [40] = { 100, 52, 207, 52, 207, 132, 5912, }, }, } skills["IceNova"] = { name = "Ice Nova", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "A chilling circle of ice expands from the caster. 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, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -3148,22 +3073,20 @@ skills["IceNova"] = { [28] = { 86, 35, 1074, 1580, }, [29] = { 88, 35, 1183, 1740, }, [30] = { 90, 35, 1303, 1917, }, + [31] = { 91, 35, 1367, 2011, }, + [32] = { 92, 35, 1435, 2110, }, + [33] = { 93, 35, 1505, 2213, }, + [34] = { 94, 35, 1579, 2322, }, + [35] = { 95, 35, 1656, 2435, }, + [36] = { 96, 36, 1737, 2554, }, + [37] = { 97, 36, 1821, 2678, }, + [38] = { 98, 36, 1910, 2808, }, + [39] = { 99, 36, 2002, 2944, }, + [40] = { 100, 36, 2099, 3087, }, }, } skills["VaalIceNova"] = { name = "Vaal Ice Nova", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - cold = true, - }, - gemTagString = "Vaal, Spell, AoE, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3203,7 +3126,7 @@ skills["VaalIceNova"] = { [13] = { 53, 123, 193, }, [14] = { 56, 143, 223, }, [15] = { 59, 164, 257, }, - [16] = { 62, 189, 296, }, + [16] = { 62, 190, 296, }, [17] = { 64, 208, 325, }, [18] = { 66, 228, 357, }, [19] = { 68, 250, 391, }, @@ -3217,22 +3140,21 @@ skills["VaalIceNova"] = { [27] = { 84, 511, 799, }, [28] = { 86, 558, 871, }, [29] = { 88, 608, 950, }, - [30] = { 90, 663, 1035, }, + [30] = { 90, 663, 1036, }, + [31] = { 91, 692, 1081, }, + [32] = { 92, 722, 1128, }, + [33] = { 93, 754, 1177, }, + [34] = { 94, 786, 1229, }, + [35] = { 95, 821, 1282, }, + [36] = { 96, 856, 1338, }, + [37] = { 97, 893, 1396, }, + [38] = { 98, 932, 1456, }, + [39] = { 99, 972, 1519, }, + [40] = { 100, 1014, 1584, }, }, } skills["IceSpear"] = { name = "Ice Spear", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - cold = true, - }, - gemTagString = "Projectile, Spell, Cold", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Launches a shard of ice that pierces close enemies, before exploding on a distant enemy with a much higher critical strike chance.", skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [18] = true, [19] = true, [26] = true, [36] = true, [34] = true, [60] = true, }, @@ -3298,22 +3220,21 @@ skills["IceSpear"] = { [28] = { 86, 33, 1232, 1847, 94, 37, }, [29] = { 88, 33, 1360, 2040, 96, 38, }, [30] = { 90, 34, 1501, 2251, 98, 39, }, + [31] = { 91, 34, 1577, 2365, 99, 39, }, + [32] = { 92, 34, 1656, 2484, 100, 40, }, + [33] = { 93, 34, 1739, 2609, 101, 40, }, + [34] = { 94, 35, 1826, 2739, 102, 41, }, + [35] = { 95, 35, 1918, 2876, 103, 41, }, + [36] = { 96, 35, 2013, 3020, 104, 42, }, + [37] = { 97, 36, 2114, 3171, 105, 42, }, + [38] = { 98, 36, 2219, 3328, 106, 43, }, + [39] = { 99, 36, 2329, 3493, 107, 43, }, + [40] = { 100, 37, 2444, 3667, 108, 44, }, }, } skills["Incinerate"] = { name = "Incinerate", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - fire = true, - channelling = true, - }, - gemTagString = "Projectile, Spell, Fire, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, + hidden = true, color = 3, description = "Continuously launches a torrent of fire from your hand. The longer you channel this spell, the larger and more damaging the flames become.", skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [18] = true, [33] = true, [58] = true, }, @@ -3367,7 +3288,7 @@ skills["Incinerate"] = { [17] = { 64, 8, 104, 157, }, [18] = { 66, 8, 114, 171, }, [19] = { 68, 8, 125, 187, }, - [20] = { 70, 9, 136, 204, }, + [20] = { 70, 9, 136, 205, }, [21] = { 72, 9, 149, 223, }, [22] = { 74, 9, 162, 244, }, [23] = { 76, 9, 177, 266, }, @@ -3378,21 +3299,20 @@ skills["Incinerate"] = { [28] = { 86, 10, 271, 406, }, [29] = { 88, 10, 295, 442, }, [30] = { 90, 10, 320, 480, }, + [31] = { 91, 10, 334, 501, }, + [32] = { 92, 10, 348, 522, }, + [33] = { 93, 11, 362, 544, }, + [34] = { 94, 11, 378, 567, }, + [35] = { 95, 11, 394, 590, }, + [36] = { 96, 11, 410, 615, }, + [37] = { 97, 11, 427, 641, }, + [38] = { 98, 11, 445, 667, }, + [39] = { 99, 12, 463, 695, }, + [40] = { 100, 12, 483, 724, }, }, } skills["ClusterBurst"] = { name = "Kinetic Blast", - gemTags = { - intelligence = true, - active_skill = true, - attack = true, - area = true, - projectile = true, - }, - gemTagString = "Attack, AoE, Projectile", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -3463,22 +3383,20 @@ skills["ClusterBurst"] = { [28] = { 86, 17, 1.58, 1.578, 27, }, [29] = { 88, 17, 1.59, 1.592, 28, }, [30] = { 90, 17, 1.61, 1.606, 29, }, + [31] = { 91, 17, 1.61, 1.613, 29, }, + [32] = { 92, 17, 1.62, 1.62, 30, }, + [33] = { 93, 17, 1.63, 1.627, 30, }, + [34] = { 94, 17, 1.63, 1.634, 31, }, + [35] = { 95, 17, 1.64, 1.641, 31, }, + [36] = { 96, 17, 1.65, 1.648, 32, }, + [37] = { 97, 17, 1.66, 1.655, 32, }, + [38] = { 98, 18, 1.66, 1.662, 33, }, + [39] = { 99, 18, 1.67, 1.669, 33, }, + [40] = { 100, 18, 1.68, 1.676, 34, }, }, } skills["LightningTendrilsChannelled"] = { name = "Lightning Tendrils", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - channelling = true, - }, - gemTagString = "Spell, AoE, Lightning, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3524,38 +3442,35 @@ skills["LightningTendrilsChannelled"] = { [16] = { 56, 6, 13, 244, 5, }, [17] = { 60, 6, 16, 309, 5, }, [18] = { 64, 7, 21, 391, 6, }, - [19] = { 67, 7, 24, 464, 6, }, + [19] = { 67, 7, 24, 465, 6, }, [20] = { 70, 7, 29, 552, 6, }, [21] = { 72, 7, 33, 618, 7, }, [22] = { 74, 7, 36, 692, 7, }, - [23] = { 76, 7, 41, 774, 7, }, + [23] = { 76, 7, 41, 775, 7, }, [24] = { 78, 7, 46, 866, 8, }, - [25] = { 80, 8, 51, 968, 8, }, + [25] = { 80, 8, 51, 969, 8, }, [26] = { 82, 8, 57, 1082, 8, }, [27] = { 84, 8, 64, 1209, 9, }, - [28] = { 86, 8, 71, 1349, 9, }, + [28] = { 86, 8, 71, 1350, 9, }, [29] = { 88, 8, 79, 1506, 9, }, [30] = { 90, 8, 88, 1680, 10, }, + [31] = { 91, 9, 93, 1774, 10, }, + [32] = { 92, 9, 99, 1873, 10, }, + [33] = { 93, 10, 104, 1977, 10, }, + [34] = { 94, 10, 110, 2087, 10, }, + [35] = { 95, 10, 116, 2203, 10, }, + [36] = { 96, 10, 122, 2326, 11, }, + [37] = { 97, 10, 129, 2454, 11, }, + [38] = { 98, 11, 136, 2590, 11, }, + [39] = { 99, 11, 144, 2733, 11, }, + [40] = { 100, 11, 152, 2884, 11, }, }, } skills["LightningTrap"] = { name = "Lightning Trap", - gemTags = { - projectile = true, - trap = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Trap, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, [12] = true, [35] = true, }, + skillTypes = { [2] = true, [10] = true, [3] = true, [68] = true, [37] = true, [19] = true, [35] = true, }, baseFlags = { spell = true, trap = true, @@ -3563,9 +3478,7 @@ skills["LightningTrap"] = { }, baseMods = { skill("castTime", 1), - skill("damageEffectiveness", 0.9), - skill("CritChance", 5), - skill("cooldown", 2), + skill("CritChance", 6), --"base_trap_duration" = 4000 mod("ProjectileCount", "BASE", 8), --"number_of_additional_projectiles" = 8 mod("EnemyShockChance", "BASE", 20), --"base_chance_to_shock_%" = 20 @@ -3576,7 +3489,8 @@ skills["LightningTrap"] = { skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? }, qualityMods = { - mod("TrapThrowingSpeed", "INC", 0.5), --"trap_throwing_speed_+%" = 0.5 + mod("LightningDamage", "INC", 1), --"lightning_damage_+%" = 1 + mod("EnemyShockEffect", "INC", 0.5), --"shock_effect_+%" = 0.5 }, levelMods = { [1] = skill("levelRequirement", nil), @@ -3584,56 +3498,53 @@ skills["LightningTrap"] = { [3] = skill("LightningMin", nil), --"spell_minimum_base_lightning_damage" [4] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" [5] = mod("EnemyShockEffect", "INC", nil), --"shock_effect_+%" + --[6] = "critical_strike_chance_+%_vs_shocked_enemies" }, levels = { - [1] = { 12, 8, 3, 62, 0, }, - [2] = { 15, 9, 4, 77, 1, }, - [3] = { 19, 10, 5, 98, 2, }, - [4] = { 23, 10, 7, 124, 3, }, - [5] = { 27, 11, 8, 153, 4, }, - [6] = { 31, 12, 10, 188, 5, }, - [7] = { 35, 13, 12, 228, 6, }, - [8] = { 38, 14, 14, 263, 7, }, - [9] = { 41, 14, 16, 301, 8, }, - [10] = { 44, 16, 18, 344, 9, }, - [11] = { 47, 17, 21, 391, 10, }, - [12] = { 50, 18, 23, 444, 11, }, - [13] = { 53, 19, 26, 503, 12, }, - [14] = { 56, 20, 30, 568, 13, }, - [15] = { 59, 21, 34, 640, 14, }, - [16] = { 62, 22, 38, 720, 15, }, - [17] = { 64, 22, 41, 779, 16, }, - [18] = { 66, 23, 44, 841, 17, }, - [19] = { 68, 24, 48, 907, 18, }, - [20] = { 70, 24, 52, 979, 19, }, - [21] = { 72, 25, 56, 1055, 20, }, - [22] = { 74, 26, 60, 1136, 21, }, - [23] = { 76, 26, 64, 1223, 22, }, - [24] = { 78, 27, 69, 1316, 23, }, - [25] = { 80, 27, 74, 1415, 24, }, - [26] = { 82, 28, 80, 1521, 25, }, - [27] = { 84, 29, 86, 1634, 26, }, - [28] = { 86, 30, 92, 1755, 27, }, - [29] = { 88, 30, 99, 1884, 28, }, - [30] = { 90, 30, 106, 2021, 29, }, + [1] = { 12, 8, 14, 41, 0, 80, }, + [2] = { 15, 8, 17, 51, 1, 82, }, + [3] = { 19, 9, 22, 67, 2, 84, }, + [4] = { 23, 10, 29, 86, 3, 86, }, + [5] = { 27, 10, 36, 108, 4, 88, }, + [6] = { 31, 11, 45, 135, 5, 90, }, + [7] = { 35, 11, 56, 167, 6, 92, }, + [8] = { 38, 12, 65, 195, 7, 94, }, + [9] = { 41, 13, 75, 226, 8, 96, }, + [10] = { 44, 14, 87, 262, 9, 98, }, + [11] = { 47, 14, 101, 302, 10, 100, }, + [12] = { 50, 15, 116, 348, 11, 102, }, + [13] = { 53, 16, 133, 399, 12, 104, }, + [14] = { 56, 16, 152, 457, 13, 106, }, + [15] = { 59, 17, 174, 522, 14, 108, }, + [16] = { 62, 18, 199, 596, 15, 110, }, + [17] = { 64, 18, 216, 649, 16, 112, }, + [18] = { 66, 19, 236, 708, 17, 114, }, + [19] = { 68, 19, 257, 771, 18, 116, }, + [20] = { 70, 20, 279, 838, 19, 118, }, + [21] = { 72, 20, 304, 912, 20, 120, }, + [22] = { 74, 21, 330, 991, 21, 122, }, + [23] = { 76, 21, 359, 1076, 22, 124, }, + [24] = { 78, 21, 390, 1169, 23, 126, }, + [25] = { 80, 22, 423, 1268, 24, 128, }, + [26] = { 82, 23, 458, 1375, 25, 130, }, + [27] = { 84, 23, 497, 1491, 26, 132, }, + [28] = { 86, 23, 538, 1615, 27, 134, }, + [29] = { 88, 24, 583, 1750, 28, 136, }, + [30] = { 90, 24, 631, 1894, 29, 138, }, + [31] = { 91, 26, 657, 1970, 29, 139, }, + [32] = { 92, 26, 683, 2050, 30, 140, }, + [33] = { 93, 27, 711, 2132, 30, 141, }, + [34] = { 94, 27, 739, 2217, 31, 142, }, + [35] = { 95, 28, 769, 2306, 31, 143, }, + [36] = { 96, 29, 799, 2398, 32, 144, }, + [37] = { 97, 29, 831, 2493, 32, 145, }, + [38] = { 98, 30, 864, 2592, 33, 146, }, + [39] = { 99, 30, 898, 2694, 33, 147, }, + [40] = { 100, 31, 934, 2801, 34, 148, }, }, } skills["VaalLightningTrap"] = { name = "Vaal Lightning Trap", - gemTags = { - projectile = true, - trap = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Trap, Vaal, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 40, - gemInt = 60, color = 3, 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, }, @@ -3645,12 +3556,13 @@ skills["VaalLightningTrap"] = { }, baseMods = { skill("castTime", 1), - skill("damageEffectiveness", 0.9), - skill("CritChance", 5), + skill("CritChance", 6), --"base_trap_duration" = 4000 mod("ProjectileCount", "BASE", 8), --"number_of_additional_projectiles" = 8 skill("duration", 4), --"base_skill_effect_duration" = 4000 --"shocked_ground_base_magnitude_override" = 15 + --"skill_repeat_count" = 0 + --"critical_strike_chance_+%_vs_shocked_enemies" = 0 --"projectiles_nova" = ? --"is_trap" = ? --"base_skill_is_trapped" = ? @@ -3660,7 +3572,7 @@ skills["VaalLightningTrap"] = { flag("PierceAllTargets"), --"always_pierce" = ? }, qualityMods = { - mod("TrapThrowingSpeed", "INC", 0.5), --"trap_throwing_speed_+%" = 0.5 + --"shocked_ground_base_magnitude_override" = 0.25 }, levelMods = { [1] = skill("levelRequirement", nil), @@ -3668,53 +3580,50 @@ skills["VaalLightningTrap"] = { [3] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" }, levels = { - [1] = { 12, 3, 62, }, - [2] = { 15, 4, 77, }, - [3] = { 19, 5, 98, }, - [4] = { 23, 7, 124, }, - [5] = { 27, 8, 153, }, - [6] = { 31, 10, 188, }, - [7] = { 35, 12, 228, }, - [8] = { 38, 14, 263, }, - [9] = { 41, 16, 301, }, - [10] = { 44, 18, 344, }, - [11] = { 47, 21, 391, }, - [12] = { 50, 23, 444, }, - [13] = { 53, 26, 503, }, - [14] = { 56, 30, 568, }, - [15] = { 59, 34, 640, }, - [16] = { 62, 38, 720, }, - [17] = { 64, 41, 779, }, - [18] = { 66, 44, 841, }, - [19] = { 68, 48, 907, }, - [20] = { 70, 52, 979, }, - [21] = { 72, 56, 1055, }, - [22] = { 74, 60, 1136, }, - [23] = { 76, 64, 1223, }, - [24] = { 78, 69, 1316, }, - [25] = { 80, 74, 1415, }, - [26] = { 82, 80, 1521, }, - [27] = { 84, 86, 1634, }, - [28] = { 86, 92, 1755, }, - [29] = { 88, 99, 1884, }, - [30] = { 90, 106, 2021, }, + [1] = { 12, 14, 41, }, + [2] = { 15, 17, 51, }, + [3] = { 19, 22, 67, }, + [4] = { 23, 29, 86, }, + [5] = { 27, 36, 108, }, + [6] = { 31, 45, 135, }, + [7] = { 35, 56, 167, }, + [8] = { 38, 65, 195, }, + [9] = { 41, 75, 226, }, + [10] = { 44, 87, 262, }, + [11] = { 47, 101, 302, }, + [12] = { 50, 116, 348, }, + [13] = { 53, 133, 399, }, + [14] = { 56, 152, 457, }, + [15] = { 59, 174, 522, }, + [16] = { 62, 199, 596, }, + [17] = { 64, 216, 649, }, + [18] = { 66, 236, 708, }, + [19] = { 68, 257, 771, }, + [20] = { 70, 279, 838, }, + [21] = { 72, 304, 912, }, + [22] = { 74, 330, 991, }, + [23] = { 76, 359, 1076, }, + [24] = { 78, 390, 1169, }, + [25] = { 80, 423, 1268, }, + [26] = { 82, 458, 1375, }, + [27] = { 84, 497, 1491, }, + [28] = { 86, 538, 1615, }, + [29] = { 88, 583, 1750, }, + [30] = { 90, 631, 1894, }, + [31] = { 91, 657, 1970, }, + [32] = { 92, 683, 2050, }, + [33] = { 93, 711, 2132, }, + [34] = { 94, 739, 2217, }, + [35] = { 95, 769, 2306, }, + [36] = { 96, 799, 2398, }, + [37] = { 97, 831, 2493, }, + [38] = { 98, 864, 2592, }, + [39] = { 99, 898, 2694, }, + [40] = { 100, 934, 2801, }, }, } skills["LightningWarp"] = { name = "Lightning Warp", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - movement = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Duration, Movement, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3773,23 +3682,20 @@ skills["LightningWarp"] = { [28] = { 86, 37, 81, 1536, -54, }, [29] = { 88, 37, 89, 1689, -56, }, [30] = { 90, 37, 98, 1856, -58, }, + [31] = { 91, 38, 102, 1945, -59, }, + [32] = { 92, 39, 107, 2039, -60, }, + [33] = { 93, 39, 112, 2137, -61, }, + [34] = { 94, 39, 118, 2239, -62, }, + [35] = { 95, 39, 123, 2346, -63, }, + [36] = { 96, 40, 129, 2458, -64, }, + [37] = { 97, 40, 136, 2575, -65, }, + [38] = { 98, 40, 142, 2697, -66, }, + [39] = { 99, 41, 149, 2825, -67, }, + [40] = { 100, 41, 156, 2959, -68, }, }, } skills["VaalLightningWarpInstant"] = { name = "Vaal Lightning Warp", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3846,23 +3752,20 @@ skills["VaalLightningWarpInstant"] = { [28] = { 86, 64, 1221, -54, }, [29] = { 88, 70, 1335, -56, }, [30] = { 90, 77, 1459, -58, }, + [31] = { 91, 80, 1525, -59, }, + [32] = { 92, 84, 1594, -60, }, + [33] = { 93, 88, 1666, -61, }, + [34] = { 94, 92, 1742, -62, }, + [35] = { 95, 96, 1820, -63, }, + [36] = { 96, 100, 1902, -64, }, + [37] = { 97, 105, 1987, -65, }, + [38] = { 98, 109, 2076, -66, }, + [39] = { 99, 114, 2168, -67, }, + [40] = { 100, 119, 2265, -68, }, }, } skills["MagmaOrb"] = { name = "Magma Orb", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - chaining = true, - }, - gemTagString = "Projectile, Spell, AoE, Fire, Chaining", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -3874,8 +3777,9 @@ skills["MagmaOrb"] = { }, baseMods = { skill("castTime", 0.7), - skill("damageEffectiveness", 1.25), + skill("damageEffectiveness", 1.4), skill("CritChance", 5), + --"monster_projectile_variation" = 1 --"is_area_damage" = ? --"base_is_projectile" = ? }, @@ -3890,55 +3794,52 @@ skills["MagmaOrb"] = { [5] = mod("ChainCountMax", "BASE", nil), --"number_of_additional_projectiles_in_chain" }, levels = { - [1] = { 1, 5, 6, 9, 1, }, - [2] = { 2, 6, 7, 10, 1, }, - [3] = { 4, 6, 8, 12, 1, }, - [4] = { 7, 7, 11, 17, 1, }, - [5] = { 11, 7, 16, 24, 1, }, - [6] = { 16, 8, 25, 37, 1, }, - [7] = { 20, 9, 33, 50, 1, }, - [8] = { 24, 10, 44, 66, 1, }, - [9] = { 28, 11, 58, 87, 1, }, - [10] = { 32, 12, 75, 112, 2, }, - [11] = { 36, 13, 96, 144, 2, }, - [12] = { 40, 14, 122, 183, 2, }, - [13] = { 44, 15, 154, 232, 2, }, - [14] = { 48, 16, 194, 291, 2, }, - [15] = { 52, 18, 243, 365, 2, }, - [16] = { 56, 19, 303, 454, 2, }, - [17] = { 60, 20, 376, 564, 2, }, - [18] = { 64, 21, 466, 698, 2, }, - [19] = { 67, 21, 545, 818, 2, }, - [20] = { 70, 22, 637, 956, 2, }, - [21] = { 72, 23, 707, 1060, 3, }, - [22] = { 74, 23, 784, 1175, 3, }, - [23] = { 76, 24, 868, 1302, 3, }, - [24] = { 78, 24, 961, 1442, 3, }, - [25] = { 80, 25, 1063, 1595, 3, }, - [26] = { 82, 26, 1176, 1764, 3, }, - [27] = { 84, 26, 1300, 1950, 3, }, - [28] = { 86, 27, 1437, 2155, 3, }, - [29] = { 88, 27, 1587, 2380, 3, }, - [30] = { 90, 28, 1752, 2628, 3, }, + [1] = { 1, 5, 8, 10, 1, }, + [2] = { 2, 6, 9, 12, 1, }, + [3] = { 4, 6, 10, 15, 1, }, + [4] = { 7, 7, 14, 20, 1, }, + [5] = { 11, 7, 20, 29, 1, }, + [6] = { 16, 8, 29, 44, 1, }, + [7] = { 20, 9, 39, 59, 1, }, + [8] = { 24, 10, 52, 78, 1, }, + [9] = { 28, 11, 68, 102, 1, }, + [10] = { 32, 12, 87, 131, 2, }, + [11] = { 36, 13, 111, 167, 2, }, + [12] = { 40, 14, 141, 211, 2, }, + [13] = { 44, 15, 177, 265, 2, }, + [14] = { 48, 16, 221, 331, 2, }, + [15] = { 52, 18, 274, 412, 2, }, + [16] = { 56, 19, 340, 510, 2, }, + [17] = { 60, 20, 419, 629, 2, }, + [18] = { 64, 21, 516, 773, 2, }, + [19] = { 67, 21, 601, 902, 2, }, + [20] = { 70, 22, 699, 1049, 2, }, + [21] = { 72, 23, 773, 1160, 3, }, + [22] = { 74, 23, 854, 1282, 3, }, + [23] = { 76, 24, 943, 1415, 3, }, + [24] = { 78, 24, 1041, 1562, 3, }, + [25] = { 80, 25, 1148, 1723, 3, }, + [26] = { 82, 26, 1266, 1899, 3, }, + [27] = { 84, 26, 1395, 2093, 3, }, + [28] = { 86, 27, 1537, 2305, 3, }, + [29] = { 88, 27, 1692, 2538, 3, }, + [30] = { 90, 28, 1862, 2793, 3, }, + [31] = { 91, 28, 1953, 2930, 3, }, + [32] = { 92, 29, 2049, 3073, 3, }, + [33] = { 93, 29, 2148, 3223, 3, }, + [34] = { 94, 29, 2253, 3379, 3, }, + [35] = { 95, 29, 2362, 3543, 3, }, + [36] = { 96, 30, 2476, 3715, 3, }, + [37] = { 97, 30, 2596, 3894, 3, }, + [38] = { 98, 30, 2721, 4082, 3, }, + [39] = { 99, 30, 2852, 4278, 3, }, + [40] = { 100, 31, 2989, 4484, 3, }, }, } skills["OrbOfStorms"] = { name = "Orb of Storms", - gemTags = { - lightning = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - area = true, - chaining = true, - }, - gemTagString = "Lightning, Spell, Duration, AoE, Chaining", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "Creates a stationary electrical orb that frequently unleashes a splitting bolt of lightning at a nearby enemy. Using a lightning skill while inside the orb's cloud unleashes additional bolts. Casting this skill again will replace the previous orb. You can only cast this spell yourself, directly.", + description = "Creates a stationary electrical orb that frequently unleashes a splitting bolt of lightning at a nearby enemy. Modifers 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. You can only cast this spell yourself, directly.", skillTypes = { [2] = true, [10] = true, [35] = true, [12] = true, [11] = true, [23] = true, }, baseFlags = { spell = true, @@ -3947,12 +3848,13 @@ skills["OrbOfStorms"] = { }, baseMods = { skill("castTime", 0.5), - skill("damageEffectiveness", 0.2), + skill("damageEffectiveness", 0.45), skill("CritChance", 5), skill("cooldown", 0.5), skill("duration", 6), --"base_skill_effect_duration" = 6000 mod("ChainCountMax", "BASE", 0), --"number_of_additional_projectiles_in_chain" = 0 --"storm_cloud_charged_damage_+%_final" = 0 + --"orb_of_storms_base_bolt_frequency_ms" = 1000 --"skill_can_add_multiple_charges_per_action" = ? }, qualityMods = { @@ -3966,52 +3868,52 @@ skills["OrbOfStorms"] = { --[5] = "projectile_number_to_split" }, levels = { - [1] = { 4, 11, 1, 3, 2, }, - [2] = { 6, 12, 1, 3, 2, }, - [3] = { 9, 13, 1, 4, 2, }, - [4] = { 12, 14, 2, 6, 2, }, - [5] = { 16, 15, 3, 8, 2, }, - [6] = { 20, 16, 3, 10, 2, }, - [7] = { 24, 17, 4, 13, 2, }, - [8] = { 28, 18, 6, 17, 2, }, - [9] = { 32, 19, 7, 22, 3, }, - [10] = { 36, 20, 10, 29, 3, }, - [11] = { 40, 21, 12, 36, 3, }, - [12] = { 44, 22, 15, 45, 3, }, - [13] = { 48, 23, 19, 56, 3, }, - [14] = { 52, 24, 23, 70, 3, }, - [15] = { 55, 25, 27, 82, 3, }, - [16] = { 58, 26, 32, 96, 3, }, - [17] = { 61, 26, 37, 112, 4, }, - [18] = { 64, 27, 44, 131, 4, }, - [19] = { 67, 27, 51, 152, 4, }, - [20] = { 70, 28, 59, 177, 4, }, - [21] = { 72, 28, 65, 195, 4, }, - [22] = { 74, 29, 72, 215, 4, }, - [23] = { 76, 29, 79, 238, 4, }, - [24] = { 78, 30, 87, 262, 4, }, - [25] = { 80, 30, 96, 289, 5, }, - [26] = { 82, 30, 106, 318, 5, }, - [27] = { 84, 30, 117, 350, 5, }, - [28] = { 86, 31, 128, 385, 5, }, - [29] = { 88, 31, 141, 424, 5, }, - [30] = { 90, 32, 155, 466, 5, }, + [1] = { 4, 11, 2, 5, 2, }, + [2] = { 6, 12, 2, 6, 2, }, + [3] = { 9, 13, 3, 9, 2, }, + [4] = { 12, 14, 4, 11, 2, }, + [5] = { 16, 15, 5, 15, 2, }, + [6] = { 20, 16, 7, 20, 2, }, + [7] = { 24, 17, 9, 27, 2, }, + [8] = { 28, 18, 12, 35, 2, }, + [9] = { 32, 19, 15, 45, 3, }, + [10] = { 36, 20, 19, 57, 3, }, + [11] = { 40, 21, 24, 72, 3, }, + [12] = { 44, 22, 30, 90, 3, }, + [13] = { 48, 23, 38, 113, 3, }, + [14] = { 52, 24, 47, 140, 3, }, + [15] = { 55, 25, 55, 164, 3, }, + [16] = { 58, 26, 64, 192, 3, }, + [17] = { 61, 26, 75, 224, 4, }, + [18] = { 64, 27, 87, 261, 4, }, + [19] = { 67, 27, 101, 304, 4, }, + [20] = { 70, 28, 118, 353, 4, }, + [21] = { 72, 28, 130, 390, 4, }, + [22] = { 74, 29, 144, 431, 4, }, + [23] = { 76, 29, 158, 475, 4, }, + [24] = { 78, 30, 175, 524, 4, }, + [25] = { 80, 30, 192, 577, 5, }, + [26] = { 82, 30, 212, 636, 5, }, + [27] = { 84, 30, 233, 700, 5, }, + [28] = { 86, 31, 257, 770, 5, }, + [29] = { 88, 31, 282, 847, 5, }, + [30] = { 90, 32, 311, 932, 5, }, + [31] = { 91, 33, 326, 977, 5, }, + [32] = { 92, 33, 341, 1024, 5, }, + [33] = { 93, 33, 358, 1073, 5, }, + [34] = { 94, 33, 375, 1125, 5, }, + [35] = { 95, 34, 393, 1179, 5, }, + [36] = { 96, 34, 412, 1235, 5, }, + [37] = { 97, 34, 431, 1294, 5, }, + [38] = { 98, 34, 452, 1356, 5, }, + [39] = { 99, 35, 474, 1421, 6, }, + [40] = { 100, 35, 496, 1488, 6, }, }, } skills["PowerSiphon"] = { name = "Power Siphon", - gemTags = { - intelligence = true, - active_skill = true, - attack = true, - projectile = true, - }, - gemTagString = "Attack, Projectile", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "Fires your wand, dealing increased damage and granting you a power charge if an enemy is killed by, or soon after, the hit.", + 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, }, weaponTypes = { ["Wand"] = true, @@ -4022,6 +3924,9 @@ skills["PowerSiphon"] = { }, baseMods = { skill("castTime", 1), + --"chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" = 20 + --"critical_strike_multiplier_+_per_power_charge" = 10 + --"critical_strike_chance_+%_per_power_charge" = 20 --"kill_enemy_on_hit_if_under_10%_life" = ? --"skill_can_fire_wand_projectiles" = ? }, @@ -4033,53 +3938,53 @@ skills["PowerSiphon"] = { [2] = skill("manaCost", nil), [3] = skill("damageEffectiveness", nil), [4] = skill("baseMultiplier", nil), + [5] = mod("ProjectileCount", "BASE", nil), --"number_of_additional_projectiles" }, levels = { - [1] = { 12, 13, 1.3, 1.3, }, - [2] = { 15, 13, 1.32, 1.316, }, - [3] = { 19, 13, 1.33, 1.332, }, - [4] = { 23, 13, 1.35, 1.348, }, - [5] = { 27, 13, 1.36, 1.364, }, - [6] = { 31, 13, 1.38, 1.38, }, - [7] = { 35, 13, 1.4, 1.396, }, - [8] = { 38, 14, 1.41, 1.412, }, - [9] = { 41, 14, 1.43, 1.428, }, - [10] = { 44, 14, 1.44, 1.444, }, - [11] = { 47, 14, 1.46, 1.46, }, - [12] = { 50, 14, 1.48, 1.476, }, - [13] = { 53, 14, 1.49, 1.492, }, - [14] = { 56, 14, 1.51, 1.508, }, - [15] = { 59, 14, 1.52, 1.524, }, - [16] = { 62, 14, 1.54, 1.54, }, - [17] = { 64, 14, 1.56, 1.556, }, - [18] = { 66, 14, 1.57, 1.572, }, - [19] = { 68, 15, 1.59, 1.588, }, - [20] = { 70, 15, 1.6, 1.604, }, - [21] = { 72, 15, 1.62, 1.62, }, - [22] = { 74, 15, 1.64, 1.636, }, - [23] = { 76, 15, 1.65, 1.652, }, - [24] = { 78, 15, 1.67, 1.668, }, - [25] = { 80, 15, 1.68, 1.684, }, - [26] = { 82, 16, 1.7, 1.7, }, - [27] = { 84, 16, 1.72, 1.716, }, - [28] = { 86, 16, 1.73, 1.732, }, - [29] = { 88, 16, 1.75, 1.748, }, - [30] = { 90, 16, 1.76, 1.764, }, + [1] = { 12, 7, 1.25, 1.25, 4, }, + [2] = { 15, 7, 1.26, 1.264, 4, }, + [3] = { 19, 7, 1.28, 1.277, 4, }, + [4] = { 23, 8, 1.29, 1.291, 4, }, + [5] = { 27, 8, 1.3, 1.304, 4, }, + [6] = { 31, 8, 1.32, 1.318, 5, }, + [7] = { 35, 8, 1.33, 1.331, 5, }, + [8] = { 38, 8, 1.35, 1.345, 5, }, + [9] = { 41, 9, 1.36, 1.358, 5, }, + [10] = { 44, 9, 1.37, 1.372, 5, }, + [11] = { 47, 9, 1.39, 1.385, 6, }, + [12] = { 50, 9, 1.4, 1.399, 6, }, + [13] = { 53, 9, 1.41, 1.412, 6, }, + [14] = { 56, 10, 1.43, 1.426, 6, }, + [15] = { 59, 10, 1.44, 1.439, 6, }, + [16] = { 62, 10, 1.45, 1.453, 7, }, + [17] = { 64, 10, 1.47, 1.466, 7, }, + [18] = { 66, 10, 1.48, 1.48, 7, }, + [19] = { 68, 11, 1.49, 1.493, 7, }, + [20] = { 70, 11, 1.51, 1.507, 7, }, + [21] = { 72, 11, 1.52, 1.52, 8, }, + [22] = { 74, 11, 1.53, 1.534, 8, }, + [23] = { 76, 11, 1.55, 1.547, 8, }, + [24] = { 78, 11, 1.56, 1.561, 8, }, + [25] = { 80, 11, 1.57, 1.574, 8, }, + [26] = { 82, 12, 1.59, 1.588, 9, }, + [27] = { 84, 12, 1.6, 1.601, 9, }, + [28] = { 86, 12, 1.62, 1.615, 9, }, + [29] = { 88, 12, 1.63, 1.628, 9, }, + [30] = { 90, 12, 1.64, 1.642, 9, }, + [31] = { 91, 12, 1.65, 1.649, 10, }, + [32] = { 92, 13, 1.66, 1.656, 10, }, + [33] = { 93, 13, 1.66, 1.663, 10, }, + [34] = { 94, 13, 1.67, 1.67, 10, }, + [35] = { 95, 13, 1.68, 1.677, 10, }, + [36] = { 96, 13, 1.68, 1.684, 11, }, + [37] = { 97, 13, 1.69, 1.691, 11, }, + [38] = { 98, 13, 1.7, 1.698, 11, }, + [39] = { 99, 13, 1.71, 1.705, 11, }, + [40] = { 100, 13, 1.71, 1.712, 11, }, }, } skills["VaalPowerSiphon"] = { name = "Vaal Power Siphon", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - attack = true, - projectile = true, - }, - gemTagString = "Vaal, Attack, Projectile", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4092,6 +3997,9 @@ skills["VaalPowerSiphon"] = { }, baseMods = { skill("castTime", 1), + --"chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" = 100 + --"critical_strike_multiplier_+_per_power_charge" = 10 + --"critical_strike_chance_+%_per_power_charge" = 20 --"power_siphon_fire_at_all_targets" = ? --"skill_can_add_multiple_charges_per_action" = ? skill("cannotBeEvaded", true), --"global_always_hit" = ? @@ -4107,51 +4015,50 @@ skills["VaalPowerSiphon"] = { [3] = skill("baseMultiplier", nil), }, levels = { - [1] = { 12, 1.25, 1.25, }, - [2] = { 15, 1.27, 1.266, }, - [3] = { 19, 1.28, 1.282, }, - [4] = { 23, 1.3, 1.298, }, - [5] = { 27, 1.31, 1.314, }, - [6] = { 31, 1.33, 1.33, }, - [7] = { 35, 1.35, 1.346, }, - [8] = { 38, 1.36, 1.362, }, - [9] = { 41, 1.38, 1.378, }, - [10] = { 44, 1.39, 1.394, }, - [11] = { 47, 1.41, 1.41, }, - [12] = { 50, 1.43, 1.426, }, - [13] = { 53, 1.44, 1.442, }, - [14] = { 56, 1.46, 1.458, }, - [15] = { 59, 1.47, 1.474, }, - [16] = { 62, 1.49, 1.49, }, - [17] = { 64, 1.51, 1.506, }, - [18] = { 66, 1.52, 1.522, }, - [19] = { 68, 1.54, 1.538, }, - [20] = { 70, 1.55, 1.554, }, - [21] = { 72, 1.57, 1.57, }, - [22] = { 74, 1.59, 1.586, }, - [23] = { 76, 1.6, 1.602, }, - [24] = { 78, 1.62, 1.618, }, - [25] = { 80, 1.63, 1.634, }, - [26] = { 82, 1.65, 1.65, }, - [27] = { 84, 1.67, 1.666, }, - [28] = { 86, 1.68, 1.682, }, - [29] = { 88, 1.7, 1.698, }, - [30] = { 90, 1.71, 1.714, }, + [1] = { 12, 1.5, 1.5, }, + [2] = { 15, 1.52, 1.518, }, + [3] = { 19, 1.54, 1.536, }, + [4] = { 23, 1.55, 1.554, }, + [5] = { 27, 1.57, 1.572, }, + [6] = { 31, 1.59, 1.59, }, + [7] = { 35, 1.61, 1.608, }, + [8] = { 38, 1.63, 1.626, }, + [9] = { 41, 1.64, 1.644, }, + [10] = { 44, 1.66, 1.662, }, + [11] = { 47, 1.68, 1.68, }, + [12] = { 50, 1.7, 1.698, }, + [13] = { 53, 1.72, 1.716, }, + [14] = { 56, 1.73, 1.734, }, + [15] = { 59, 1.75, 1.752, }, + [16] = { 62, 1.77, 1.77, }, + [17] = { 64, 1.79, 1.788, }, + [18] = { 66, 1.81, 1.806, }, + [19] = { 68, 1.82, 1.824, }, + [20] = { 70, 1.84, 1.842, }, + [21] = { 72, 1.86, 1.86, }, + [22] = { 74, 1.88, 1.878, }, + [23] = { 76, 1.9, 1.896, }, + [24] = { 78, 1.91, 1.914, }, + [25] = { 80, 1.93, 1.932, }, + [26] = { 82, 1.95, 1.95, }, + [27] = { 84, 1.97, 1.968, }, + [28] = { 86, 1.99, 1.986, }, + [29] = { 88, 2, 2.004, }, + [30] = { 90, 2.02, 2.022, }, + [31] = { 91, 2.03, 2.031, }, + [32] = { 92, 2.04, 2.04, }, + [33] = { 93, 2.05, 2.049, }, + [34] = { 94, 2.06, 2.058, }, + [35] = { 95, 2.07, 2.067, }, + [36] = { 96, 2.08, 2.076, }, + [37] = { 97, 2.09, 2.085, }, + [38] = { 98, 2.09, 2.094, }, + [39] = { 99, 2.1, 2.103, }, + [40] = { 100, 2.11, 2.112, }, }, } skills["Purity"] = { name = "Purity of Elements", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 40, - gemDex = 0, - gemInt = 60, 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, }, @@ -4209,22 +4116,20 @@ skills["Purity"] = { [28] = { 86, 33, 27, }, [29] = { 88, 33, 28, }, [30] = { 90, 34, 29, }, + [31] = { 91, 34, 29, }, + [32] = { 92, 34, 30, }, + [33] = { 93, 34, 30, }, + [34] = { 94, 35, 31, }, + [35] = { 95, 35, 31, }, + [36] = { 96, 36, 32, }, + [37] = { 97, 36, 32, }, + [38] = { 98, 36, 33, }, + [39] = { 99, 36, 33, }, + [40] = { 100, 37, 34, }, }, } skills["LightningResistAura"] = { name = "Purity of Lightning", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Aura, Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4280,20 +4185,20 @@ skills["LightningResistAura"] = { [28] = { 86, 49, 5, 27, }, [29] = { 88, 50, 5, 28, }, [30] = { 90, 51, 5, 29, }, + [31] = { 91, 51, 5, 29, }, + [32] = { 92, 52, 5, 30, }, + [33] = { 93, 52, 5, 30, }, + [34] = { 94, 53, 5, 31, }, + [35] = { 95, 53, 5, 31, }, + [36] = { 96, 54, 5, 32, }, + [37] = { 97, 54, 5, 32, }, + [38] = { 98, 55, 5, 33, }, + [39] = { 99, 55, 5, 33, }, + [40] = { 100, 56, 5, 34, }, }, } skills["RaiseSpectre"] = { name = "Raise Spectre", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - }, - gemTagString = "Spell, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4356,20 +4261,20 @@ skills["RaiseSpectre"] = { [28] = { 86, 49, 26, 16, 16, 100, 1524, }, [29] = { 88, 50, 28, 18, 18, 100, 1644, }, [30] = { 90, 51, 30, 20, 20, 100, 1774, }, + [31] = { 91, 52, 31, 21, 21, 100, 1844, }, + [32] = { 92, 53, 32, 22, 22, 100, 1914, }, + [33] = { 93, 54, 33, 23, 23, 100, 1989, }, + [34] = { 94, 55, 34, 24, 24, 100, 2064, }, + [35] = { 95, 56, 35, 25, 25, 100, 2144, }, + [36] = { 96, 57, 36, 26, 26, 100, 2224, }, + [37] = { 97, 58, 37, 27, 27, 100, 2309, }, + [38] = { 98, 59, 38, 28, 28, 100, 2394, }, + [39] = { 99, 60, 39, 29, 29, 100, 2484, }, + [40] = { 100, 61, 40, 30, 30, 100, 2574, }, }, } skills["RaiseZombie"] = { name = "Raise Zombie", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - }, - gemTagString = "Spell, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4427,24 +4332,23 @@ skills["RaiseZombie"] = { [28] = { 86, 42, 86, }, [29] = { 88, 42, 88, }, [30] = { 90, 42, 90, }, + [31] = { 91, 43, 91, }, + [32] = { 92, 43, 92, }, + [33] = { 93, 44, 93, }, + [34] = { 94, 44, 94, }, + [35] = { 95, 44, 95, }, + [36] = { 96, 44, 96, }, + [37] = { 97, 44, 97, }, + [38] = { 98, 44, 98, }, + [39] = { 99, 44, 99, }, + [40] = { 100, 44, 100, }, }, } skills["RighteousFire"] = { name = "Righteous Fire", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Spell, AoE, Fire", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, 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, [18] = true, [29] = true, [36] = true, [40] = true, [33] = true, }, + skillTypes = { [2] = true, [5] = true, [11] = true, [29] = true, [40] = true, [33] = true, [18] = true, [36] = true, }, setupFunc = function(actor, output) if actor.mainSkill.skillFlags.totem then actor.mainSkill.skillData.FireDot = output.TotemLife * 0.4 @@ -4504,25 +4408,23 @@ skills["RighteousFire"] = { [28] = { 86, 47, 7, }, [29] = { 88, 48, 7, }, [30] = { 90, 49, 7, }, + [31] = { 91, 49, 7, }, + [32] = { 92, 50, 8, }, + [33] = { 93, 50, 8, }, + [34] = { 94, 51, 8, }, + [35] = { 95, 51, 8, }, + [36] = { 96, 52, 9, }, + [37] = { 97, 52, 9, }, + [38] = { 98, 53, 9, }, + [39] = { 99, 53, 9, }, + [40] = { 100, 54, 10, }, }, } skills["VaalRighteousFire"] = { name = "Vaal Righteous Fire", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Fire", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, - description = "A fiery blast removes your energy shield and all but 1 life, exploding outwards to deal fire damage to nearby enemies based on the life and energy shield lost.", - skillTypes = { [2] = true, [11] = true, [10] = true, [43] = true, [33] = true, }, + 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, [43] = true, [12] = true, }, setupFunc = function(actor, output) actor.mainSkill.skillData.FireMin = output.EnergyShield + output.Life - 1 actor.mainSkill.skillData.FireMax = output.EnergyShield + output.Life - 1 @@ -4532,65 +4434,64 @@ skills["VaalRighteousFire"] = { area = true, }, baseMods = { - skill("castTime", 1), - skill("CritChance", 5), - --"damage_cannot_be_reflected" = ? + skill("castTime", 0.75), + --"vaal_righteous_fire_life_and_es_%_to_lose_on_use" = 30 + skill("duration", 4), --"base_skill_effect_duration" = 4000 --"is_area_damage" = ? }, qualityMods = { - mod("Damage", "INC", 1, ModFlag.Spell, 0, nil), --"spell_damage_+%" = 1 + mod("FireDamage", "INC", 1, ModFlag.Dot), --"burn_damage_+%" = 1 }, levelMods = { [1] = skill("levelRequirement", nil), - [2] = mod("Damage", "MORE", nil), --"active_skill_damage_+%_final" + --[2] = "vaal_righteous_fire_life_and_es_%_as_damage_per_second" + --[3] = "vaal_righteous_fire_spell_damage_+%_final" }, levels = { - [1] = { 16, 20, }, - [2] = { 20, 21, }, - [3] = { 24, 22, }, - [4] = { 28, 23, }, - [5] = { 31, 24, }, - [6] = { 34, 25, }, - [7] = { 37, 26, }, - [8] = { 40, 27, }, - [9] = { 43, 28, }, - [10] = { 46, 29, }, - [11] = { 49, 30, }, - [12] = { 52, 31, }, - [13] = { 55, 32, }, - [14] = { 58, 33, }, - [15] = { 60, 34, }, - [16] = { 62, 35, }, - [17] = { 64, 36, }, - [18] = { 66, 37, }, - [19] = { 68, 38, }, - [20] = { 70, 39, }, - [21] = { 72, 40, }, - [22] = { 74, 41, }, - [23] = { 76, 42, }, - [24] = { 78, 43, }, - [25] = { 80, 44, }, - [26] = { 82, 45, }, - [27] = { 84, 46, }, - [28] = { 86, 47, }, - [29] = { 88, 48, }, - [30] = { 90, 49, }, + [1] = { 16, 161, 20, }, + [2] = { 20, 162, 21, }, + [3] = { 24, 163, 22, }, + [4] = { 28, 164, 23, }, + [5] = { 31, 165, 24, }, + [6] = { 34, 166, 25, }, + [7] = { 37, 167, 26, }, + [8] = { 40, 168, 27, }, + [9] = { 43, 169, 28, }, + [10] = { 46, 170, 29, }, + [11] = { 49, 171, 30, }, + [12] = { 52, 172, 31, }, + [13] = { 55, 173, 32, }, + [14] = { 58, 174, 33, }, + [15] = { 60, 175, 34, }, + [16] = { 62, 176, 35, }, + [17] = { 64, 177, 36, }, + [18] = { 66, 178, 37, }, + [19] = { 68, 179, 38, }, + [20] = { 70, 180, 39, }, + [21] = { 72, 181, 40, }, + [22] = { 74, 182, 41, }, + [23] = { 76, 183, 42, }, + [24] = { 78, 184, 43, }, + [25] = { 80, 185, 44, }, + [26] = { 82, 186, 45, }, + [27] = { 84, 187, 46, }, + [28] = { 86, 188, 47, }, + [29] = { 88, 189, 48, }, + [30] = { 90, 190, 49, }, + [31] = { 91, 191, 49, }, + [32] = { 92, 192, 50, }, + [33] = { 93, 193, 50, }, + [34] = { 94, 194, 51, }, + [35] = { 95, 195, 51, }, + [36] = { 96, 196, 52, }, + [37] = { 97, 197, 52, }, + [38] = { 98, 198, 53, }, + [39] = { 99, 199, 53, }, + [40] = { 100, 200, 54, }, }, } skills["FireBeam"] = { name = "Scorching Ray", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - fire = true, - duration = true, - channelling = true, - }, - gemTagString = "Spell, Fire, Duration, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Unleash a beam of fire that burns enemies it touches, and decreases their fire resistance. Remaining in the beam intensifies the burning, adding a portion of the beam's damage in 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, }, @@ -4636,14 +4537,14 @@ skills["FireBeam"] = { [2] = { 15, 4, 10.716666666667, }, [3] = { 19, 4, 14.85, }, [4] = { 23, 5, 20.166666666667, }, - [5] = { 27, 5, 26.983333333333, }, + [5] = { 27, 5, 26.966666666667, }, [6] = { 31, 5, 35.666666666667, }, [7] = { 35, 6, 46.7, }, [8] = { 38, 6, 56.866666666667, }, [9] = { 41, 6, 68.966666666667, }, [10] = { 44, 7, 83.35, }, [11] = { 47, 7, 100.43333333333, }, - [12] = { 50, 7, 120.66666666667, }, + [12] = { 50, 7, 120.65, }, [13] = { 53, 8, 144.6, }, [14] = { 56, 8, 172.9, }, [15] = { 59, 8, 206.3, }, @@ -4651,32 +4552,31 @@ skills["FireBeam"] = { [17] = { 64, 9, 275.78333333333, }, [18] = { 66, 9, 309.31666666667, }, [19] = { 68, 10, 346.7, }, - [20] = { 70, 10, 388.35, }, - [21] = { 72, 10, 434.71666666667, }, - [22] = { 74, 11, 486.33333333333, }, - [23] = { 76, 11, 543.76666666667, }, + [20] = { 70, 10, 388.33333333333, }, + [21] = { 72, 10, 434.7, }, + [22] = { 74, 11, 486.31666666667, }, + [23] = { 76, 11, 543.75, }, [24] = { 78, 11, 607.63333333333, }, - [25] = { 80, 12, 678.68333333333, }, - [26] = { 82, 12, 757.65, }, - [27] = { 84, 12, 845.4, }, - [28] = { 86, 13, 942.88333333333, }, - [29] = { 88, 13, 1051.15, }, - [30] = { 90, 13, 1171.35, }, + [25] = { 80, 12, 678.66666666667, }, + [26] = { 82, 12, 757.63333333333, }, + [27] = { 84, 12, 845.38333333333, }, + [28] = { 86, 13, 942.86666666667, }, + [29] = { 88, 13, 1051.1333333333, }, + [30] = { 90, 13, 1171.3333333333, }, + [31] = { 91, 13, 1236.3166666667, }, + [32] = { 92, 13, 1304.7666666667, }, + [33] = { 93, 13, 1376.8833333333, }, + [34] = { 94, 13, 1452.8333333333, }, + [35] = { 95, 13, 1532.8333333333, }, + [36] = { 96, 13, 1617.1, }, + [37] = { 97, 14, 1705.85, }, + [38] = { 98, 14, 1799.3, }, + [39] = { 99, 14, 1897.7166666667, }, + [40] = { 100, 14, 2001.35, }, }, } skills["ShockNova"] = { name = "Shock Nova", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -4742,22 +4642,20 @@ skills["ShockNova"] = { [28] = { 86, 31, 608, 1824, 47, }, [29] = { 88, 31, 670, 2010, 48, }, [30] = { 90, 32, 738, 2214, 49, }, + [31] = { 91, 32, 774, 2323, 49, }, + [32] = { 92, 32, 812, 2437, 50, }, + [33] = { 93, 33, 852, 2557, 50, }, + [34] = { 94, 33, 894, 2682, 51, }, + [35] = { 95, 33, 938, 2813, 51, }, + [36] = { 96, 34, 984, 2951, 52, }, + [37] = { 97, 34, 1031, 3094, 52, }, + [38] = { 98, 34, 1082, 3245, 53, }, + [39] = { 99, 35, 1134, 3402, 53, }, + [40] = { 100, 35, 1189, 3567, 54, }, }, } skills["Spark"] = { name = "Spark", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -4768,9 +4666,8 @@ skills["Spark"] = { }, baseMods = { skill("castTime", 0.65), - skill("damageEffectiveness", 0.7), skill("CritChance", 6), - skill("duration", 1.5), --"base_skill_effect_duration" = 1500 + skill("duration", 2), --"base_skill_effect_duration" = 2000 --"base_is_projectile" = ? }, qualityMods = { @@ -4782,55 +4679,53 @@ skills["Spark"] = { [3] = skill("LightningMin", nil), --"spell_minimum_base_lightning_damage" [4] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" [5] = mod("ProjectileCount", "BASE", nil), --"number_of_additional_projectiles" + [6] = mod("ProjectileSpeed", "INC", nil), --"base_projectile_speed_+%" }, levels = { - [1] = { 1, 5, 1, 20, 4, }, - [2] = { 2, 6, 1, 22, 4, }, - [3] = { 4, 7, 1, 27, 4, }, - [4] = { 7, 8, 2, 36, 4, }, - [5] = { 11, 9, 3, 49, 4, }, - [6] = { 16, 10, 4, 69, 4, }, - [7] = { 20, 11, 5, 88, 4, }, - [8] = { 24, 12, 6, 110, 4, }, - [9] = { 28, 14, 7, 136, 5, }, - [10] = { 32, 16, 9, 167, 5, }, - [11] = { 36, 17, 11, 202, 5, }, - [12] = { 40, 18, 13, 243, 5, }, - [13] = { 44, 19, 15, 291, 5, }, - [14] = { 48, 20, 18, 345, 5, }, - [15] = { 52, 21, 22, 409, 5, }, - [16] = { 56, 22, 25, 481, 5, }, - [17] = { 60, 22, 30, 565, 6, }, - [18] = { 64, 22, 35, 661, 6, }, - [19] = { 67, 22, 39, 742, 6, }, - [20] = { 70, 23, 44, 832, 6, }, - [21] = { 72, 23, 47, 897, 6, }, - [22] = { 74, 24, 51, 967, 6, }, - [23] = { 76, 24, 55, 1041, 6, }, - [24] = { 78, 25, 59, 1120, 6, }, - [25] = { 80, 25, 63, 1205, 7, }, - [26] = { 82, 26, 68, 1296, 7, }, - [27] = { 84, 26, 73, 1393, 7, }, - [28] = { 86, 26, 79, 1496, 7, }, - [29] = { 88, 26, 85, 1607, 7, }, - [30] = { 90, 27, 91, 1725, 7, }, + [1] = { 1, 5, 1, 20, 4, 0, }, + [2] = { 2, 6, 1, 22, 4, 1, }, + [3] = { 4, 7, 1, 27, 4, 2, }, + [4] = { 7, 8, 2, 36, 4, 3, }, + [5] = { 11, 9, 3, 50, 4, 4, }, + [6] = { 16, 10, 4, 71, 4, 5, }, + [7] = { 20, 11, 5, 92, 4, 6, }, + [8] = { 24, 12, 6, 117, 4, 7, }, + [9] = { 28, 14, 8, 146, 5, 8, }, + [10] = { 32, 16, 10, 181, 5, 9, }, + [11] = { 36, 17, 12, 222, 5, 10, }, + [12] = { 40, 18, 14, 269, 5, 11, }, + [13] = { 44, 19, 17, 325, 5, 12, }, + [14] = { 48, 20, 21, 391, 5, 13, }, + [15] = { 52, 21, 25, 467, 5, 14, }, + [16] = { 56, 22, 29, 556, 5, 15, }, + [17] = { 60, 22, 35, 660, 6, 16, }, + [18] = { 64, 22, 41, 780, 6, 17, }, + [19] = { 67, 22, 46, 883, 6, 18, }, + [20] = { 70, 23, 52, 997, 6, 19, }, + [21] = { 72, 23, 57, 1081, 6, 20, }, + [22] = { 74, 24, 62, 1171, 6, 21, }, + [23] = { 76, 24, 67, 1268, 6, 22, }, + [24] = { 78, 25, 72, 1372, 6, 23, }, + [25] = { 80, 25, 78, 1484, 7, 24, }, + [26] = { 82, 26, 84, 1604, 7, 25, }, + [27] = { 84, 26, 91, 1733, 7, 26, }, + [28] = { 86, 26, 98, 1871, 7, 27, }, + [29] = { 88, 26, 106, 2020, 7, 28, }, + [30] = { 90, 27, 115, 2180, 7, 29, }, + [31] = { 91, 28, 119, 2264, 7, 29, }, + [32] = { 92, 28, 124, 2351, 7, 30, }, + [33] = { 93, 29, 128, 2441, 8, 30, }, + [34] = { 94, 29, 133, 2535, 8, 31, }, + [35] = { 95, 29, 139, 2632, 8, 31, }, + [36] = { 96, 29, 144, 2732, 8, 32, }, + [37] = { 97, 30, 149, 2836, 8, 32, }, + [38] = { 98, 30, 155, 2943, 8, 33, }, + [39] = { 99, 30, 161, 3055, 8, 33, }, + [40] = { 100, 30, 167, 3170, 8, 34, }, }, } skills["VaalSparkSpiralNova"] = { name = "Vaal Spark", - gemTags = { - projectile = true, - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - duration = true, - lightning = true, - }, - gemTagString = "Projectile, Vaal, Spell, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -4856,53 +4751,53 @@ skills["VaalSparkSpiralNova"] = { [1] = skill("levelRequirement", nil), [2] = skill("LightningMin", nil), --"spell_minimum_base_lightning_damage" [3] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" + [4] = mod("ProjectileSpeed", "INC", nil), --"base_projectile_speed_+%" }, levels = { - [1] = { 1, 1, 11, }, - [2] = { 2, 1, 12, }, - [3] = { 4, 1, 15, }, - [4] = { 7, 1, 19, }, - [5] = { 11, 1, 27, }, - [6] = { 16, 2, 37, }, - [7] = { 20, 3, 48, }, - [8] = { 24, 3, 60, }, - [9] = { 28, 4, 74, }, - [10] = { 32, 5, 91, }, - [11] = { 36, 6, 110, }, - [12] = { 40, 7, 133, }, - [13] = { 44, 8, 159, }, - [14] = { 48, 10, 188, }, - [15] = { 52, 12, 223, }, - [16] = { 56, 14, 263, }, - [17] = { 60, 16, 308, }, - [18] = { 64, 19, 361, }, - [19] = { 67, 21, 405, }, - [20] = { 70, 24, 454, }, - [21] = { 72, 26, 489, }, - [22] = { 74, 28, 527, }, - [23] = { 76, 30, 568, }, - [24] = { 78, 32, 611, }, - [25] = { 80, 35, 658, }, - [26] = { 82, 37, 707, }, - [27] = { 84, 40, 760, }, - [28] = { 86, 43, 816, }, - [29] = { 88, 46, 877, }, - [30] = { 90, 50, 941, }, + [1] = { 1, 1, 11, 0, }, + [2] = { 2, 1, 12, 1, }, + [3] = { 4, 1, 15, 2, }, + [4] = { 7, 1, 19, 3, }, + [5] = { 11, 1, 27, 4, }, + [6] = { 16, 2, 37, 5, }, + [7] = { 20, 3, 48, 6, }, + [8] = { 24, 3, 60, 7, }, + [9] = { 28, 4, 74, 8, }, + [10] = { 32, 5, 91, 9, }, + [11] = { 36, 6, 110, 10, }, + [12] = { 40, 7, 133, 11, }, + [13] = { 44, 8, 159, 12, }, + [14] = { 48, 10, 188, 13, }, + [15] = { 52, 12, 223, 14, }, + [16] = { 56, 14, 263, 15, }, + [17] = { 60, 16, 308, 16, }, + [18] = { 64, 19, 361, 17, }, + [19] = { 67, 21, 405, 18, }, + [20] = { 70, 24, 454, 19, }, + [21] = { 72, 26, 489, 20, }, + [22] = { 74, 28, 527, 21, }, + [23] = { 76, 30, 568, 22, }, + [24] = { 78, 32, 611, 23, }, + [25] = { 80, 35, 658, 24, }, + [26] = { 82, 37, 707, 25, }, + [27] = { 84, 40, 760, 26, }, + [28] = { 86, 43, 816, 27, }, + [29] = { 88, 46, 877, 28, }, + [30] = { 90, 50, 941, 29, }, + [31] = { 91, 51, 975, 29, }, + [32] = { 92, 53, 1010, 30, }, + [33] = { 93, 55, 1046, 30, }, + [34] = { 94, 57, 1083, 31, }, + [35] = { 95, 59, 1121, 31, }, + [36] = { 96, 61, 1161, 32, }, + [37] = { 97, 63, 1202, 32, }, + [38] = { 98, 65, 1244, 33, }, + [39] = { 99, 68, 1288, 33, }, + [40] = { 100, 70, 1333, 34, }, }, } skills["SpiritOffering"] = { name = "Spirit Offering", - gemTags = { - minion = true, - intelligence = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Minion, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -4959,23 +4854,20 @@ skills["SpiritOffering"] = { [28] = { 86, 39, 33, 34, }, [29] = { 88, 40, 34, 34, }, [30] = { 90, 41, 34, 35, }, + [31] = { 91, 41, 34, 35, }, + [32] = { 92, 42, 35, 35, }, + [33] = { 93, 42, 35, 35, }, + [34] = { 94, 42, 35, 36, }, + [35] = { 95, 42, 35, 36, }, + [36] = { 96, 43, 36, 36, }, + [37] = { 97, 43, 36, 36, }, + [38] = { 98, 44, 36, 37, }, + [39] = { 99, 44, 36, 37, }, + [40] = { 100, 45, 37, 37, }, }, } skills["StormBurst"] = { name = "Storm Burst", - gemTags = { - projectile = true, - area = true, - intelligence = true, - active_skill = true, - spell = true, - lightning = true, - channelling = true, - }, - gemTagString = "Projectile, AoE, Spell, Lightning, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "Unleash a stream of projectiles while you channel this spell, which pierce through enemies, dealing lightning damage. When you stop channelling, the projectiles explode, dealing significant damage in an area around them. Additional projectiles are added in sequence.", skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [18] = true, [35] = true, [58] = true, [11] = true, }, @@ -4996,9 +4888,9 @@ skills["StormBurst"] = { }, baseMods = { skill("castTime", 0.65), - skill("damageEffectiveness", 0.1), + skill("damageEffectiveness", 0.4), skill("CritChance", 5), - mod("Damage", "MORE", 250, ModFlag.Area), --"active_skill_area_damage_+%_final" = 250 + mod("Damage", "MORE", 65, ModFlag.Area), --"active_skill_area_damage_+%_final" = 65 mod("ProjectileCount", "BASE", 1), --"number_of_additional_projectiles" = 1 --"base_is_projectile" = ? --"base_skill_show_average_damage_instead_of_dps" = ? @@ -5013,52 +4905,50 @@ skills["StormBurst"] = { [4] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" }, levels = { - [1] = { 28, 5, 9, 13, }, - [2] = { 31, 6, 10, 15, }, - [3] = { 34, 6, 12, 17, }, - [4] = { 37, 6, 13, 20, }, - [5] = { 40, 7, 15, 23, }, - [6] = { 42, 7, 17, 25, }, - [7] = { 44, 8, 18, 27, }, - [8] = { 46, 8, 20, 30, }, - [9] = { 48, 8, 21, 32, }, - [10] = { 50, 9, 23, 35, }, - [11] = { 52, 9, 25, 38, }, - [12] = { 54, 10, 27, 41, }, - [13] = { 56, 10, 30, 44, }, - [14] = { 58, 10, 32, 48, }, - [15] = { 60, 10, 35, 52, }, - [16] = { 62, 10, 37, 56, }, - [17] = { 64, 10, 40, 60, }, - [18] = { 66, 10, 43, 65, }, - [19] = { 68, 10, 47, 70, }, - [20] = { 70, 10, 50, 76, }, - [21] = { 72, 10, 54, 81, }, - [22] = { 74, 10, 58, 87, }, - [23] = { 76, 11, 63, 94, }, - [24] = { 78, 11, 67, 101, }, - [25] = { 80, 11, 72, 108, }, - [26] = { 82, 11, 78, 116, }, - [27] = { 84, 11, 83, 125, }, - [28] = { 86, 11, 89, 134, }, - [29] = { 88, 12, 95, 143, }, - [30] = { 90, 12, 102, 153, }, + [1] = { 28, 5, 31, 47, }, + [2] = { 31, 6, 36, 55, }, + [3] = { 34, 6, 42, 63, }, + [4] = { 37, 6, 48, 73, }, + [5] = { 40, 7, 55, 83, }, + [6] = { 42, 7, 60, 91, }, + [7] = { 44, 8, 66, 99, }, + [8] = { 46, 8, 72, 108, }, + [9] = { 48, 8, 78, 117, }, + [10] = { 50, 9, 85, 127, }, + [11] = { 52, 9, 92, 138, }, + [12] = { 54, 10, 99, 149, }, + [13] = { 56, 10, 108, 161, }, + [14] = { 58, 10, 116, 175, }, + [15] = { 60, 10, 126, 189, }, + [16] = { 62, 10, 136, 204, }, + [17] = { 64, 10, 147, 220, }, + [18] = { 66, 10, 158, 237, }, + [19] = { 68, 10, 170, 255, }, + [20] = { 70, 10, 183, 275, }, + [21] = { 72, 10, 197, 296, }, + [22] = { 74, 10, 212, 318, }, + [23] = { 76, 11, 228, 342, }, + [24] = { 78, 11, 245, 367, }, + [25] = { 80, 11, 263, 394, }, + [26] = { 82, 11, 282, 423, }, + [27] = { 84, 11, 302, 453, }, + [28] = { 86, 11, 324, 486, }, + [29] = { 88, 12, 347, 521, }, + [30] = { 90, 12, 372, 558, }, + [31] = { 91, 12, 385, 577, }, + [32] = { 92, 12, 398, 597, }, + [33] = { 93, 12, 412, 618, }, + [34] = { 94, 13, 426, 639, }, + [35] = { 95, 13, 441, 661, }, + [36] = { 96, 13, 456, 684, }, + [37] = { 97, 13, 471, 707, }, + [38] = { 98, 13, 488, 731, }, + [39] = { 99, 13, 504, 756, }, + [40] = { 100, 13, 521, 782, }, }, } skills["StormCall"] = { name = "Storm Call", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -5106,7 +4996,7 @@ skills["StormCall"] = { [16] = { 62, 18, 234, 434, 5, 25, }, [17] = { 64, 18, 257, 478, 5, 26, }, [18] = { 66, 19, 283, 525, 6, 27, }, - [19] = { 68, 19, 310, 577, 6, 28, }, + [19] = { 68, 19, 311, 577, 6, 28, }, [20] = { 70, 19, 341, 633, 6, 29, }, [21] = { 72, 20, 374, 694, 7, 30, }, [22] = { 74, 21, 410, 761, 7, 31, }, @@ -5118,25 +5008,22 @@ skills["StormCall"] = { [28] = { 86, 23, 704, 1308, 9, 37, }, [29] = { 88, 24, 769, 1429, 9, 38, }, [30] = { 90, 24, 840, 1560, 10, 39, }, + [31] = { 91, 26, 878, 1630, 10, 39, }, + [32] = { 92, 26, 917, 1703, 10, 40, }, + [33] = { 93, 27, 958, 1779, 10, 40, }, + [34] = { 94, 28, 1001, 1858, 10, 41, }, + [35] = { 95, 28, 1045, 1941, 10, 41, }, + [36] = { 96, 29, 1092, 2027, 11, 42, }, + [37] = { 97, 29, 1140, 2117, 11, 42, }, + [38] = { 98, 30, 1190, 2211, 11, 43, }, + [39] = { 99, 31, 1243, 2308, 11, 43, }, + [40] = { 100, 31, 1297, 2410, 11, 44, }, }, } skills["VaalStormCall"] = { name = "Vaal Storm Call", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "Sets a marker at a location. While the marker remains, lightning strikes random enemies near it, dealing damage to them. After a short duration, a large bolt of lightning strikes the marker, dealing damage around it. When this happens, it will also set off the lightning at any other markers from this skill.", + 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, }, baseFlags = { spell = true, @@ -5145,11 +5032,12 @@ skills["VaalStormCall"] = { }, baseMods = { skill("castTime", 0.5), - skill("damageEffectiveness", 0.8), skill("CritChance", 6), - skill("duration", 3), --"base_skill_effect_duration" = 3000 + skill("duration", 6), --"base_skill_effect_duration" = 6000 + --"vaal_storm_call_base_delay_ms" = 250 --"is_area_damage" = ? skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? + --"monster_stormcall_individually_trigger" = ? }, qualityMods = { mod("AreaOfEffect", "INC", 0.5), --"base_skill_area_of_effect_+%" = 0.5 @@ -5158,54 +5046,53 @@ skills["VaalStormCall"] = { [1] = skill("levelRequirement", nil), [2] = skill("LightningMin", nil), --"spell_minimum_base_lightning_damage" [3] = skill("LightningMax", nil), --"spell_maximum_base_lightning_damage" + [4] = mod("EnemyShockEffect", "INC", nil), --"shock_effect_+%" }, levels = { - [1] = { 12, 13, 25, }, - [2] = { 15, 17, 31, }, - [3] = { 19, 22, 41, }, - [4] = { 23, 29, 53, }, - [5] = { 27, 36, 67, }, - [6] = { 31, 46, 85, }, - [7] = { 35, 57, 105, }, - [8] = { 38, 67, 124, }, - [9] = { 41, 78, 144, }, - [10] = { 44, 90, 168, }, - [11] = { 47, 105, 194, }, - [12] = { 50, 121, 225, }, - [13] = { 53, 140, 259, }, - [14] = { 56, 161, 298, }, - [15] = { 59, 184, 343, }, - [16] = { 62, 211, 393, }, - [17] = { 64, 231, 429, }, - [18] = { 66, 253, 470, }, - [19] = { 68, 276, 513, }, - [20] = { 70, 302, 560, }, - [21] = { 72, 329, 611, }, - [22] = { 74, 359, 666, }, - [23] = { 76, 391, 726, }, - [24] = { 78, 426, 791, }, - [25] = { 80, 464, 861, }, - [26] = { 82, 504, 937, }, - [27] = { 84, 549, 1019, }, - [28] = { 86, 596, 1108, }, - [29] = { 88, 648, 1204, }, - [30] = { 90, 704, 1307, }, + [1] = { 12, 14, 26, 10, }, + [2] = { 15, 18, 33, 11, }, + [3] = { 19, 24, 44, 12, }, + [4] = { 23, 31, 57, 13, }, + [5] = { 27, 40, 74, 14, }, + [6] = { 31, 50, 94, 15, }, + [7] = { 35, 63, 118, 16, }, + [8] = { 38, 75, 139, 17, }, + [9] = { 41, 88, 163, 18, }, + [10] = { 44, 103, 192, 19, }, + [11] = { 47, 121, 224, 20, }, + [12] = { 50, 141, 261, 21, }, + [13] = { 53, 163, 304, 22, }, + [14] = { 56, 190, 352, 23, }, + [15] = { 59, 220, 408, 24, }, + [16] = { 62, 254, 471, 25, }, + [17] = { 64, 279, 518, 26, }, + [18] = { 66, 307, 570, 27, }, + [19] = { 68, 337, 626, 28, }, + [20] = { 70, 370, 687, 29, }, + [21] = { 72, 406, 753, 30, }, + [22] = { 74, 445, 826, 31, }, + [23] = { 76, 487, 905, 32, }, + [24] = { 78, 534, 991, 33, }, + [25] = { 80, 584, 1085, 34, }, + [26] = { 82, 639, 1187, 35, }, + [27] = { 84, 699, 1298, 36, }, + [28] = { 86, 764, 1419, 37, }, + [29] = { 88, 835, 1550, 38, }, + [30] = { 90, 911, 1693, 39, }, + [31] = { 91, 952, 1769, 39, }, + [32] = { 92, 995, 1848, 40, }, + [33] = { 93, 1039, 1930, 40, }, + [34] = { 94, 1086, 2016, 41, }, + [35] = { 95, 1134, 2106, 41, }, + [36] = { 96, 1184, 2200, 42, }, + [37] = { 97, 1237, 2297, 42, }, + [38] = { 98, 1291, 2398, 43, }, + [39] = { 99, 1348, 2504, 43, }, + [40] = { 100, 1408, 2614, 44, }, }, } skills["SummonChaosGolem"] = { name = "Summon Chaos Golem", - gemTags = { - intelligence = true, - active_skill = true, - chaos = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Chaos, Minion, Spell, Golem", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -5270,22 +5157,20 @@ skills["SummonChaosGolem"] = { [28] = { 86, 60, 14, 5, 84, 86, }, [29] = { 88, 62, 14, 5, 86, 88, }, [30] = { 90, 62, 15, 5, 88, 90, }, + [31] = { 91, 62, 15, 5, 89, 91, }, + [32] = { 92, 63, 15, 6, 90, 92, }, + [33] = { 93, 63, 15, 6, 91, 93, }, + [34] = { 94, 63, 16, 6, 92, 94, }, + [35] = { 95, 63, 16, 6, 93, 95, }, + [36] = { 96, 64, 16, 6, 94, 96, }, + [37] = { 97, 64, 16, 6, 95, 97, }, + [38] = { 98, 64, 17, 6, 96, 98, }, + [39] = { 99, 64, 17, 6, 97, 99, }, + [40] = { 100, 64, 17, 6, 98, 100, }, }, } skills["SummonLightningGolem"] = { name = "Summon Lightning Golem", - gemTags = { - intelligence = true, - active_skill = true, - lightning = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Lightning, Minion, Spell, Golem", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, }, @@ -5349,22 +5234,20 @@ skills["SummonLightningGolem"] = { [28] = { 86, 60, 27, 11, 84, 86, }, [29] = { 88, 62, 28, 11, 86, 88, }, [30] = { 90, 62, 29, 11, 88, 90, }, + [31] = { 91, 62, 29, 11, 89, 91, }, + [32] = { 92, 63, 30, 12, 90, 92, }, + [33] = { 93, 63, 30, 12, 91, 93, }, + [34] = { 94, 63, 31, 12, 92, 94, }, + [35] = { 95, 63, 31, 12, 93, 95, }, + [36] = { 96, 64, 32, 12, 94, 96, }, + [37] = { 97, 64, 32, 12, 95, 97, }, + [38] = { 98, 64, 33, 12, 96, 98, }, + [39] = { 99, 64, 33, 12, 97, 99, }, + [40] = { 100, 64, 34, 12, 98, 100, }, }, } skills["SummonRagingSpirit"] = { name = "Summon Raging Spirit", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, Minion, Duration, Fire", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -5422,21 +5305,20 @@ skills["SummonRagingSpirit"] = { [28] = { 86, 15, }, [29] = { 88, 15, }, [30] = { 90, 15, }, + [31] = { 91, 16, }, + [32] = { 92, 16, }, + [33] = { 93, 17, }, + [34] = { 94, 17, }, + [35] = { 95, 18, }, + [36] = { 96, 18, }, + [37] = { 97, 18, }, + [38] = { 98, 19, }, + [39] = { 99, 19, }, + [40] = { 100, 20, }, }, } skills["SummonSkeletons"] = { name = "Summon Skeleton", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - minion = true, - duration = true, - }, - gemTagString = "Spell, Minion, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -5497,22 +5379,20 @@ skills["SummonSkeletons"] = { [28] = { 86, 15, 84, }, [29] = { 88, 15, 86, }, [30] = { 90, 15, 88, }, + [31] = { 91, 16, 89, }, + [32] = { 92, 17, 90, }, + [33] = { 93, 17, 91, }, + [34] = { 94, 17, 92, }, + [35] = { 95, 18, 93, }, + [36] = { 96, 18, 94, }, + [37] = { 97, 18, 95, }, + [38] = { 98, 19, 96, }, + [39] = { 99, 19, 97, }, + [40] = { 100, 20, 98, }, }, } skills["VaalSummonSkeletons"] = { name = "Vaal Summon Skeletons", - gemTags = { - intelligence = true, - active_skill = true, - vaal = true, - spell = true, - minion = true, - duration = true, - }, - gemTagString = "Vaal, Spell, Minion, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, }, @@ -5575,22 +5455,20 @@ skills["VaalSummonSkeletons"] = { [28] = { 86, 24, 11, 8, 44, 84, }, [29] = { 88, 25, 11, 8, 45, 86, }, [30] = { 90, 25, 12, 8, 46, 88, }, + [31] = { 91, 25, 12, 8, 46, 89, }, + [32] = { 92, 26, 12, 9, 47, 90, }, + [33] = { 93, 26, 12, 9, 47, 91, }, + [34] = { 94, 26, 12, 9, 48, 92, }, + [35] = { 95, 26, 12, 9, 48, 93, }, + [36] = { 96, 27, 12, 9, 49, 94, }, + [37] = { 97, 27, 12, 9, 49, 95, }, + [38] = { 98, 27, 13, 9, 50, 96, }, + [39] = { 99, 27, 13, 9, 50, 97, }, + [40] = { 100, 27, 13, 10, 51, 98, }, }, } skills["TempestShield"] = { name = "Tempest Shield", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - lightning = true, - chaining = true, - duration = true, - }, - gemTagString = "Spell, Lightning, Chaining, Duration", - gemStr = 40, - gemDex = 0, - gemInt = 60, color = 3, 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, }, @@ -5600,7 +5478,7 @@ skills["TempestShield"] = { chaining = true, }, baseMods = { - skill("castTime", 0.5), + skill("castTime", 0.25), skill("damageEffectiveness", 0.6), skill("CritChance", 6), mod("BlockChance", "BASE", 3, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), --"shield_block_%" = 3 @@ -5650,22 +5528,20 @@ skills["TempestShield"] = { [28] = { 86, 23, 507, 760, }, [29] = { 88, 23, 543, 815, }, [30] = { 90, 23, 583, 874, }, + [31] = { 91, 23, 603, 905, }, + [32] = { 92, 24, 624, 937, }, + [33] = { 93, 24, 646, 969, }, + [34] = { 94, 24, 669, 1003, }, + [35] = { 95, 24, 692, 1038, }, + [36] = { 96, 24, 716, 1074, }, + [37] = { 97, 24, 741, 1112, }, + [38] = { 98, 24, 767, 1150, }, + [39] = { 99, 24, 793, 1190, }, + [40] = { 100, 24, 820, 1231, }, }, } skills["FrostBoltNova"] = { name = "Vortex", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - cold = true, - duration = true, - }, - gemTagString = "Spell, AoE, Cold, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex that continues to deal cold damage over time and chill enemies caught in it. If the caster targets near one of their Frostbolt projectiles, it will explode from the projectile instead, destroying it.", skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [18] = true, [19] = true, [26] = true, [34] = true, [36] = true, [12] = true, [60] = true, }, @@ -5709,40 +5585,37 @@ skills["FrostBoltNova"] = { [13] = { 56, 17, 232, 347, 289.53333333333, }, [14] = { 58, 18, 256, 384, 328.85, }, [15] = { 60, 18, 283, 424, 372.9, }, - [16] = { 62, 19, 312, 468, 422.2, }, + [16] = { 62, 19, 312, 468, 422.21666666667, }, [17] = { 64, 19, 344, 516, 477.35, }, [18] = { 66, 20, 379, 568, 538.96666666667, }, [19] = { 68, 20, 417, 625, 607.75, }, [20] = { 70, 21, 458, 688, 684.46666666667, }, [21] = { 72, 21, 504, 756, 769.96666666667, }, - [22] = { 74, 22, 554, 831, 865.18333333333, }, + [22] = { 74, 22, 554, 831, 865.2, }, [23] = { 76, 22, 608, 912, 971.15, }, [24] = { 78, 23, 667, 1001, 1088.9833333333, }, [25] = { 80, 23, 732, 1098, 1219.9166666667, }, [26] = { 82, 24, 802, 1204, 1365.3333333333, }, - [27] = { 84, 24, 879, 1319, 1526.7, }, - [28] = { 86, 25, 963, 1445, 1705.7, }, + [27] = { 84, 24, 879, 1319, 1526.7166666667, }, + [28] = { 86, 25, 963, 1445, 1705.7166666667, }, [29] = { 88, 25, 1055, 1582, 1904.1333333333, }, - [30] = { 90, 26, 1154, 1731, 2123.95, }, + [30] = { 90, 26, 1154, 1731, 2123.9666666667, }, + [31] = { 91, 26, 1207, 1811, 2263.55, }, + [32] = { 92, 26, 1263, 1894, 2411.2166666667, }, + [33] = { 93, 26, 1320, 1981, 2567.45, }, + [34] = { 94, 27, 1381, 2071, 2732.65, }, + [35] = { 95, 27, 1444, 2165, 2907.3333333333, }, + [36] = { 96, 27, 1509, 2264, 3091.9666666667, }, + [37] = { 97, 27, 1578, 2367, 3287.1, }, + [38] = { 98, 28, 1649, 2474, 3493.2666666667, }, + [39] = { 99, 28, 1724, 2586, 3711.05, }, + [40] = { 100, 28, 1802, 2702, 3941.05, }, }, } skills["Wither"] = { name = "Wither", - gemTags = { - intelligence = true, - active_skill = true, - spell = true, - area = true, - duration = true, - chaos = true, - channelling = true, - }, - gemTagString = "Spell, AoE, Duration, Chaos, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, - description = "Casts a debilitating effect on enemies in an area, Hindering their movement and applying a stacking debuff that increases the Chaos Damage they take. This effect can stack up to 15 times.", + description = "Casts a debilitating debuff on enemies in an area, hindering their movement and also applies a secondary 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, }, parts = { { @@ -5815,22 +5688,20 @@ skills["Wither"] = { [28] = { 86, 13, -39, 27, }, [29] = { 88, 13, -39, 28, }, [30] = { 90, 13, -39, 29, }, + [31] = { 91, 13, -39, 29, }, + [32] = { 92, 13, -40, 30, }, + [33] = { 93, 13, -40, 30, }, + [34] = { 94, 13, -40, 31, }, + [35] = { 95, 13, -40, 31, }, + [36] = { 96, 13, -40, 32, }, + [37] = { 97, 13, -40, 32, }, + [38] = { 98, 14, -41, 33, }, + [39] = { 99, 14, -41, 33, }, + [40] = { 100, 14, -41, 34, }, }, } skills["Wrath"] = { name = "Wrath", - gemTags = { - aura = true, - intelligence = true, - active_skill = true, - spell = true, - area = true, - lightning = true, - }, - gemTagString = "Aura, Spell, AoE, Lightning", - gemStr = 0, - gemDex = 0, - gemInt = 100, color = 3, 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, }, @@ -5887,5 +5758,15 @@ skills["Wrath"] = { [28] = { 86, 27, 429, 27, 24, }, [29] = { 88, 29, 458, 28, 24, }, [30] = { 90, 31, 490, 29, 24, }, + [31] = { 91, 32, 506, 29, 24, }, + [32] = { 92, 33, 523, 30, 25, }, + [33] = { 93, 34, 540, 30, 25, }, + [34] = { 94, 35, 558, 31, 25, }, + [35] = { 95, 36, 576, 31, 25, }, + [36] = { 96, 37, 595, 32, 25, }, + [37] = { 97, 38, 614, 32, 25, }, + [38] = { 98, 40, 634, 33, 26, }, + [39] = { 99, 41, 655, 33, 26, }, + [40] = { 100, 42, 676, 34, 26, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/act_str.lua b/Data/3_0/Skills/act_str.lua index 342c9694..6b0bd0cd 100644 --- a/Data/3_0/Skills/act_str.lua +++ b/Data/3_0/Skills/act_str.lua @@ -8,18 +8,6 @@ local skills, mod, flag, skill = ... skills["AbyssalCry"] = { name = "Abyssal Cry", - gemTags = { - warcry = true, - strength = true, - active_skill = true, - area = true, - duration = true, - chaos = true, - }, - gemTagString = "Warcry, AoE, Duration, Chaos", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -79,25 +67,23 @@ skills["AbyssalCry"] = { [28] = { 86, 62, -96, -29, }, [29] = { 88, 63, -98, -29, }, [30] = { 90, 64, -98, -30, }, + [31] = { 91, 65, -99, -30, }, + [32] = { 92, 66, -100, -30, }, + [33] = { 93, 66, -101, -30, }, + [34] = { 94, 67, -102, -30, }, + [35] = { 95, 68, -102, -30, }, + [36] = { 96, 69, -102, -31, }, + [37] = { 97, 70, -103, -31, }, + [38] = { 98, 70, -104, -31, }, + [39] = { 99, 71, -105, -31, }, + [40] = { 100, 72, -106, -31, }, }, } skills["TotemMelee"] = { name = "Ancestral Protector", - gemTags = { - totem = true, - strength = true, - active_skill = true, - attack = true, - duration = true, - melee = true, - }, - gemTagString = "Totem, Attack, Duration, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons an Ancestor Totem which will attack enemies with melee strikes while you stand close to it. Being near it grants you more attack speed.", - skillTypes = { [1] = true, [30] = true, [12] = true, [25] = true, [24] = true, [17] = true, [19] = true, }, + skillTypes = { [1] = true, [30] = true, [25] = true, [24] = true, [17] = true, [19] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -174,26 +160,23 @@ skills["TotemMelee"] = { [28] = { 86, 1.56, 1.556, 86, 24, }, [29] = { 88, 1.58, 1.584, 88, 24, }, [30] = { 90, 1.61, 1.612, 90, 25, }, + [31] = { 91, 1.63, 1.626, 91, 25, }, + [32] = { 92, 1.64, 1.64, 92, 25, }, + [33] = { 93, 1.65, 1.654, 93, 25, }, + [34] = { 94, 1.67, 1.668, 94, 26, }, + [35] = { 95, 1.68, 1.682, 95, 26, }, + [36] = { 96, 1.7, 1.696, 96, 26, }, + [37] = { 97, 1.71, 1.71, 97, 26, }, + [38] = { 98, 1.72, 1.724, 98, 27, }, + [39] = { 99, 1.74, 1.738, 99, 27, }, + [40] = { 100, 1.75, 1.752, 100, 27, }, }, } skills["AncestorTotemSlam"] = { name = "Ancestral Warchief", - gemTags = { - totem = true, - strength = true, - active_skill = true, - attack = true, - duration = true, - area = true, - melee = true, - }, - gemTagString = "Totem, Attack, Duration, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons an Ancestor Totem that will attack enemies with a powerful main hand slam while you stand close to it. Being near it grants you more melee damage.", - skillTypes = { [1] = true, [30] = true, [12] = true, [24] = true, [17] = true, [19] = true, [11] = true, }, + skillTypes = { [1] = true, [30] = true, [24] = true, [17] = true, [19] = true, [11] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -272,23 +255,21 @@ skills["AncestorTotemSlam"] = { [27] = { 84, 84, 21, 1.31, 1.312, }, [28] = { 86, 86, 22, 1.32, 1.324, }, [29] = { 88, 88, 22, 1.34, 1.336, }, - [30] = { 90, 90, 22, 1.45, 1.448, }, + [30] = { 90, 90, 22, 1.35, 1.348, }, + [31] = { 91, 91, 23, 1.35, 1.354, }, + [32] = { 92, 92, 23, 1.36, 1.36, }, + [33] = { 93, 93, 23, 1.37, 1.366, }, + [34] = { 94, 94, 24, 1.37, 1.372, }, + [35] = { 95, 95, 24, 1.38, 1.378, }, + [36] = { 96, 96, 24, 1.38, 1.384, }, + [37] = { 97, 97, 24, 1.39, 1.39, }, + [38] = { 98, 98, 25, 1.4, 1.396, }, + [39] = { 99, 99, 25, 1.4, 1.402, }, + [40] = { 100, 100, 25, 1.41, 1.408, }, }, } skills["Anger"] = { name = "Anger", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Aura, Spell, AoE, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, 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, }, @@ -346,22 +327,22 @@ skills["Anger"] = { [28] = { 86, 143, 238, 27, 119, 191, }, [29] = { 88, 153, 255, 28, 127, 204, }, [30] = { 90, 163, 272, 29, 136, 218, }, + [31] = { 91, 169, 281, 29, 141, 225, }, + [32] = { 92, 174, 290, 30, 145, 232, }, + [33] = { 93, 180, 300, 30, 150, 240, }, + [34] = { 94, 186, 310, 31, 155, 248, }, + [35] = { 95, 192, 320, 31, 160, 256, }, + [36] = { 96, 198, 331, 32, 165, 264, }, + [37] = { 97, 205, 341, 32, 171, 273, }, + [38] = { 98, 211, 352, 33, 176, 282, }, + [39] = { 99, 218, 364, 33, 182, 291, }, + [40] = { 100, 225, 376, 34, 188, 301, }, }, } skills["AnimateArmour"] = { name = "Animate Guardian", - gemTags = { - strength = true, - active_skill = true, - spell = true, - minion = true, - }, - gemTagString = "Spell, Minion", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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 weapons.", + 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, }, minionHasItemSet = true, @@ -429,21 +410,20 @@ skills["AnimateArmour"] = { [28] = { 86, 43, 100, 108, 108, 86, 69, 103, }, [29] = { 88, 44, 100, 112, 112, 88, 70, 106, }, [30] = { 90, 45, 100, 116, 116, 90, 72, 108, }, + [31] = { 91, 46, 100, 118, 118, 91, 72, 110, }, + [32] = { 92, 47, 100, 120, 120, 92, 73, 111, }, + [33] = { 93, 48, 100, 122, 122, 93, 74, 112, }, + [34] = { 94, 48, 100, 124, 124, 94, 75, 113, }, + [35] = { 95, 49, 100, 126, 126, 95, 76, 114, }, + [36] = { 96, 50, 100, 128, 128, 96, 76, 116, }, + [37] = { 97, 51, 100, 130, 130, 97, 77, 117, }, + [38] = { 98, 52, 100, 132, 132, 98, 78, 118, }, + [39] = { 99, 53, 100, 134, 134, 99, 78, 120, }, + [40] = { 100, 54, 100, 136, 136, 100, 79, 121, }, }, } skills["Cleave"] = { name = "Cleave", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 60, - gemDex = 40, - gemInt = 0, 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, [8] = true, [11] = true, [28] = true, [24] = true, [53] = true, }, @@ -507,25 +487,23 @@ skills["Cleave"] = { [28] = { 86, 1.86, 1.856, 9, }, [29] = { 88, 1.88, 1.884, 9, }, [30] = { 90, 1.91, 1.912, 10, }, + [31] = { 91, 1.93, 1.926, 10, }, + [32] = { 92, 1.94, 1.94, 10, }, + [33] = { 93, 1.95, 1.954, 10, }, + [34] = { 94, 1.97, 1.968, 10, }, + [35] = { 95, 1.98, 1.982, 10, }, + [36] = { 96, 2, 1.996, 11, }, + [37] = { 97, 2.01, 2.01, 11, }, + [38] = { 98, 2.02, 2.024, 11, }, + [39] = { 99, 2.04, 2.038, 11, }, + [40] = { 100, 2.05, 2.052, 11, }, }, } skills["DecoyTotem"] = { name = "Decoy Totem", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - area = true, - }, - gemTagString = "Totem, Spell, Duration, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons a totem that taunts nearby monsters to attack it.", - skillTypes = { [2] = true, [17] = true, [12] = true, [19] = true, [11] = true, [30] = true, [26] = true, }, + skillTypes = { [2] = true, [17] = true, [19] = true, [11] = true, [30] = true, [26] = true, }, skillTotemId = 6, baseFlags = { spell = true, @@ -585,21 +563,20 @@ skills["DecoyTotem"] = { [28] = { 86, 40, 84, 54, }, [29] = { 88, 41, 86, 56, }, [30] = { 90, 42, 88, 58, }, + [31] = { 91, 43, 89, 59, }, + [32] = { 92, 44, 90, 60, }, + [33] = { 93, 44, 91, 61, }, + [34] = { 94, 45, 92, 62, }, + [35] = { 95, 45, 93, 63, }, + [36] = { 96, 45, 94, 64, }, + [37] = { 97, 46, 95, 65, }, + [38] = { 98, 46, 96, 66, }, + [39] = { 99, 46, 97, 67, }, + [40] = { 100, 47, 98, 68, }, }, } skills["Determination"] = { name = "Determination", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -654,24 +631,23 @@ skills["Determination"] = { [28] = { 86, 59, 27, }, [29] = { 88, 60, 28, }, [30] = { 90, 61, 29, }, + [31] = { 91, 61, 29, }, + [32] = { 92, 62, 30, }, + [33] = { 93, 62, 30, }, + [34] = { 94, 63, 31, }, + [35] = { 95, 63, 31, }, + [36] = { 96, 64, 32, }, + [37] = { 97, 64, 32, }, + [38] = { 98, 65, 33, }, + [39] = { 99, 65, 33, }, + [40] = { 100, 66, 34, }, }, } skills["DevouringTotem"] = { name = "Devouring Totem", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Totem, Spell, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, 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, [12] = true, [19] = true, [30] = true, }, + skillTypes = { [2] = true, [17] = true, [19] = true, [30] = true, }, skillTotemId = 7, baseFlags = { spell = true, @@ -727,22 +703,20 @@ skills["DevouringTotem"] = { [28] = { 86, 50, 86, 563, 88, }, [29] = { 88, 50, 88, 606, 92, }, [30] = { 90, 51, 90, 652, 96, }, + [31] = { 91, 51, 91, 676, 98, }, + [32] = { 92, 52, 92, 701, 100, }, + [33] = { 93, 52, 93, 727, 102, }, + [34] = { 94, 52, 94, 753, 104, }, + [35] = { 95, 53, 95, 780, 106, }, + [36] = { 96, 53, 96, 808, 108, }, + [37] = { 97, 53, 97, 837, 110, }, + [38] = { 98, 54, 98, 866, 112, }, + [39] = { 99, 54, 99, 896, 114, }, + [40] = { 100, 54, 100, 927, 116, }, }, } skills["DominatingBlow"] = { name = "Dominating Blow", - gemTags = { - strength = true, - active_skill = true, - attack = true, - minion = true, - duration = true, - melee = true, - }, - gemTagString = "Attack, Minion, Duration, Melee", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Attacks the enemy with a melee strike. If a non-unique enemy is killed shortly after being hit by Dominating Blow, that enemy is revived as a minion until the skill duration ends.", skillTypes = { [1] = true, [9] = true, [12] = true, [21] = true, [25] = true, [28] = true, [24] = true, }, @@ -812,22 +786,20 @@ skills["DominatingBlow"] = { [28] = { 86, 17, 1.82, 1.817, }, [29] = { 88, 17, 1.84, 1.838, }, [30] = { 90, 17, 1.86, 1.859, }, + [31] = { 91, 17, 1.87, 1.8695, }, + [32] = { 92, 17, 1.88, 1.88, }, + [33] = { 93, 18, 1.89, 1.8905, }, + [34] = { 94, 18, 1.9, 1.901, }, + [35] = { 95, 18, 1.91, 1.9115, }, + [36] = { 96, 18, 1.92, 1.922, }, + [37] = { 97, 18, 1.93, 1.9325, }, + [38] = { 98, 18, 1.94, 1.943, }, + [39] = { 99, 19, 1.95, 1.9535, }, + [40] = { 100, 19, 1.96, 1.964, }, }, } skills["Earthquake"] = { name = "Earthquake", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - duration = true, - melee = true, - }, - gemTagString = "Attack, AoE, Duration, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [7] = true, [10] = true, [28] = true, [12] = true, }, @@ -856,8 +828,7 @@ skills["Earthquake"] = { baseMods = { skill("castTime", 1), skill("manaCost", 10), - skill("duration", 1.5), --"base_skill_effect_duration" = 1500 - mod("Damage", "MORE", 50, ModFlag.Hit, 0, { type = "SkillPart", skillPart = 2 }), --"quake_slam_fully_charged_explosion_damage_+%_final" = 50 + skill("duration", 1), --"base_skill_effect_duration" = 1000 --"is_area_damage" = ? skill("showAverage", true, { type = "SkillPart", skillPart = 2 }), skill("radius", 18, { type = "SkillPart", skillPart = 1 }), @@ -870,53 +841,53 @@ skills["Earthquake"] = { [1] = skill("levelRequirement", nil), [2] = skill("damageEffectiveness", nil), [3] = skill("baseMultiplier", nil), + [4] = mod("Damage", "MORE", nil, ModFlag.Hit, 0, { type = "SkillPart", skillPart = 2 }), --"quake_slam_fully_charged_explosion_damage_+%_final" }, levels = { - [1] = { 28, 0.9, 0.9, }, - [2] = { 31, 0.91, 0.91, }, - [3] = { 34, 0.92, 0.92, }, - [4] = { 37, 0.93, 0.93, }, - [5] = { 40, 0.94, 0.94, }, - [6] = { 42, 0.95, 0.95, }, - [7] = { 44, 0.96, 0.96, }, - [8] = { 46, 0.97, 0.97, }, - [9] = { 48, 0.98, 0.98, }, - [10] = { 50, 0.99, 0.99, }, - [11] = { 52, nil, nil, }, - [12] = { 54, 1.01, 1.01, }, - [13] = { 56, 1.02, 1.02, }, - [14] = { 58, 1.03, 1.03, }, - [15] = { 60, 1.04, 1.04, }, - [16] = { 62, 1.05, 1.05, }, - [17] = { 64, 1.06, 1.06, }, - [18] = { 66, 1.07, 1.07, }, - [19] = { 68, 1.08, 1.08, }, - [20] = { 70, 1.09, 1.09, }, - [21] = { 72, 1.1, 1.1, }, - [22] = { 74, 1.11, 1.11, }, - [23] = { 76, 1.12, 1.12, }, - [24] = { 78, 1.13, 1.13, }, - [25] = { 80, 1.14, 1.14, }, - [26] = { 82, 1.15, 1.15, }, - [27] = { 84, 1.16, 1.16, }, - [28] = { 86, 1.17, 1.17, }, - [29] = { 88, 1.18, 1.18, }, - [30] = { 90, 1.19, 1.19, }, + [1] = { 28, 0.9, 0.9, 50, }, + [2] = { 31, 0.91, 0.91, 51, }, + [3] = { 34, 0.92, 0.92, 52, }, + [4] = { 37, 0.93, 0.93, 53, }, + [5] = { 40, 0.94, 0.94, 54, }, + [6] = { 42, 0.95, 0.95, 55, }, + [7] = { 44, 0.96, 0.96, 56, }, + [8] = { 46, 0.97, 0.97, 57, }, + [9] = { 48, 0.98, 0.98, 58, }, + [10] = { 50, 0.99, 0.99, 59, }, + [11] = { 52, nil, nil, 60, }, + [12] = { 54, 1.01, 1.01, 61, }, + [13] = { 56, 1.02, 1.02, 62, }, + [14] = { 58, 1.03, 1.03, 63, }, + [15] = { 60, 1.04, 1.04, 64, }, + [16] = { 62, 1.05, 1.05, 65, }, + [17] = { 64, 1.06, 1.06, 66, }, + [18] = { 66, 1.07, 1.07, 67, }, + [19] = { 68, 1.08, 1.08, 68, }, + [20] = { 70, 1.09, 1.09, 69, }, + [21] = { 72, 1.1, 1.1, 70, }, + [22] = { 74, 1.11, 1.11, 71, }, + [23] = { 76, 1.12, 1.12, 72, }, + [24] = { 78, 1.13, 1.13, 73, }, + [25] = { 80, 1.14, 1.14, 74, }, + [26] = { 82, 1.15, 1.15, 75, }, + [27] = { 84, 1.16, 1.16, 76, }, + [28] = { 86, 1.17, 1.17, 77, }, + [29] = { 88, 1.18, 1.18, 78, }, + [30] = { 90, 1.19, 1.19, 79, }, + [31] = { 91, 1.2, 1.195, 79, }, + [32] = { 92, 1.2, 1.2, 80, }, + [33] = { 93, 1.21, 1.205, 80, }, + [34] = { 94, 1.21, 1.21, 81, }, + [35] = { 95, 1.22, 1.215, 81, }, + [36] = { 96, 1.22, 1.22, 82, }, + [37] = { 97, 1.23, 1.225, 82, }, + [38] = { 98, 1.23, 1.23, 83, }, + [39] = { 99, 1.24, 1.235, 83, }, + [40] = { 100, 1.24, 1.24, 84, }, }, } skills["EnduringCry"] = { name = "Enduring Cry", - gemTags = { - warcry = true, - strength = true, - active_skill = true, - area = true, - duration = true, - }, - gemTagString = "Warcry, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -973,26 +944,23 @@ skills["EnduringCry"] = { [28] = { 86, 23, 44, 566, }, [29] = { 88, 23, 45, 590, }, [30] = { 90, 23, 46, 614, }, + [31] = { 91, 24, 46, 626, }, + [32] = { 92, 24, 47, 638, }, + [33] = { 93, 24, 47, 651, }, + [34] = { 94, 24, 48, 664, }, + [35] = { 95, 24, 48, 677, }, + [36] = { 96, 24, 49, 690, }, + [37] = { 97, 24, 49, 703, }, + [38] = { 98, 24, 50, 716, }, + [39] = { 99, 24, 50, 729, }, + [40] = { 100, 25, 51, 742, }, }, } skills["FlameTotem"] = { name = "Flame Totem", - gemTags = { - projectile = true, - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - fire = true, - }, - gemTagString = "Projectile, Totem, Spell, Duration, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, description = "Summons a totem that fires a stream of flame at nearby enemies.", - skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [12] = true, [17] = true, [19] = true, [30] = true, [33] = true, }, + skillTypes = { [2] = true, [3] = true, [68] = true, [10] = true, [17] = true, [19] = true, [30] = true, [33] = true, }, skillTotemId = 8, baseFlags = { spell = true, @@ -1053,21 +1021,20 @@ skills["FlameTotem"] = { [28] = { 86, 50, 86, 275, 412, 2, }, [29] = { 88, 51, 88, 303, 455, 2, }, [30] = { 90, 52, 90, 335, 502, 2, }, + [31] = { 91, 52, 91, 352, 528, 2, }, + [32] = { 92, 52, 92, 370, 554, 2, }, + [33] = { 93, 53, 93, 388, 582, 2, }, + [34] = { 94, 53, 94, 408, 611, 2, }, + [35] = { 95, 54, 95, 428, 642, 2, }, + [36] = { 96, 54, 96, 449, 674, 2, }, + [37] = { 97, 55, 97, 472, 707, 2, }, + [38] = { 98, 55, 98, 495, 743, 2, }, + [39] = { 99, 55, 99, 520, 780, 2, }, + [40] = { 100, 56, 100, 545, 818, 2, }, }, } skills["GlacialHammer"] = { name = "Glacial Hammer", - gemTags = { - strength = true, - active_skill = true, - attack = true, - melee = true, - cold = true, - }, - gemTagString = "Attack, Melee, Cold", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1129,24 +1096,20 @@ skills["GlacialHammer"] = { [28] = { 86, 1.99, 1.994, 37, }, [29] = { 88, 2.02, 2.016, 38, }, [30] = { 90, 2.04, 2.038, 39, }, + [31] = { 91, 2.05, 2.049, 39, }, + [32] = { 92, 2.06, 2.06, 40, }, + [33] = { 93, 2.07, 2.071, 40, }, + [34] = { 94, 2.08, 2.082, 41, }, + [35] = { 95, 2.09, 2.093, 41, }, + [36] = { 96, 2.1, 2.104, 42, }, + [37] = { 97, 2.12, 2.115, 42, }, + [38] = { 98, 2.13, 2.126, 43, }, + [39] = { 99, 2.14, 2.137, 43, }, + [40] = { 100, 2.15, 2.148, 44, }, }, } skills["VaalGlacialHammer"] = { name = "Vaal Glacial Hammer", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - attack = true, - melee = true, - duration = true, - area = true, - cold = true, - }, - gemTagString = "Vaal, Attack, Melee, Duration, AoE, Cold", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1167,6 +1130,7 @@ skills["VaalGlacialHammer"] = { mod("SkillPhysicalDamageConvertToCold", "BASE", 50), --"skill_physical_damage_%_to_convert_to_cold" = 50 mod("EnemyFreezeChance", "BASE", 25), --"base_chance_to_freeze_%" = 25 mod("EnemyChillDuration", "INC", 35), --"chill_duration_+%" = 35 + skill("cannotBeEvaded", true), --"global_always_hit" = ? }, qualityMods = { mod("EnemyChillDuration", "INC", 2), --"chill_duration_+%" = 2 @@ -1209,29 +1173,30 @@ skills["VaalGlacialHammer"] = { [28] = { 86, 1.99, 1.986, 4.75, }, [29] = { 88, 2, 2.004, 4.8, }, [30] = { 90, 2.02, 2.022, 4.85, }, + [31] = { 91, 2.03, 2.031, 4.85, }, + [32] = { 92, 2.04, 2.04, 4.9, }, + [33] = { 93, 2.05, 2.049, 4.9, }, + [34] = { 94, 2.06, 2.058, 4.95, }, + [35] = { 95, 2.07, 2.067, 4.95, }, + [36] = { 96, 2.08, 2.076, 5, }, + [37] = { 97, 2.09, 2.085, 5, }, + [38] = { 98, 2.09, 2.094, 5.05, }, + [39] = { 99, 2.1, 2.103, 5.05, }, + [40] = { 100, 2.11, 2.112, 5.1, }, }, } skills["GroundSlam"] = { name = "Ground Slam", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, - description = "The character slams the ground in front of them with their main hand weapon, creating a wave that travels forward and damages enemies with an increased chance to stun. Only works with Staves or Maces.", + description = "The character slams the ground in front of them with their main hand weapon, creating a wave that travels forward and damages enemies with an increased chance to stun. The wave deals more damage to closer enemies. Only works with Staves, Axes or Maces.", skillTypes = { [1] = true, [7] = true, [11] = true, [28] = true, [24] = true, }, weaponTypes = { - ["Two Handed Mace"] = true, - ["Staff"] = true, ["One Handed Mace"] = true, ["Sceptre"] = true, + ["Two Handed Mace"] = true, + ["One Handed Axe"] = true, + ["Two Handed Axe"] = true, + ["Staff"] = true, }, baseFlags = { attack = true, @@ -1250,65 +1215,66 @@ skills["GroundSlam"] = { }, levelMods = { [1] = skill("levelRequirement", nil), - [2] = skill("damageEffectiveness", nil), - [3] = skill("baseMultiplier", nil), - [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + [2] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + --[3] = "groundslam_damage_to_close_targets_+%_final" + [4] = skill("damageEffectiveness", nil), + [5] = skill("baseMultiplier", nil), }, levels = { - [1] = { 1, 0.9, 0.9, 0, }, - [2] = { 2, 0.92, 0.916, 0, }, - [3] = { 4, 0.93, 0.932, 1, }, - [4] = { 7, 0.95, 0.948, 1, }, - [5] = { 11, 0.96, 0.964, 1, }, - [6] = { 16, 0.98, 0.98, 2, }, - [7] = { 20, nil, 0.996, 2, }, - [8] = { 24, 1.01, 1.012, 2, }, - [9] = { 28, 1.03, 1.028, 3, }, - [10] = { 32, 1.04, 1.044, 3, }, - [11] = { 36, 1.06, 1.06, 3, }, - [12] = { 40, 1.08, 1.076, 4, }, - [13] = { 44, 1.09, 1.092, 4, }, - [14] = { 48, 1.11, 1.108, 4, }, - [15] = { 52, 1.12, 1.124, 5, }, - [16] = { 56, 1.14, 1.14, 5, }, - [17] = { 60, 1.16, 1.156, 5, }, - [18] = { 64, 1.17, 1.172, 6, }, - [19] = { 67, 1.19, 1.188, 6, }, - [20] = { 70, 1.2, 1.204, 6, }, - [21] = { 72, 1.22, 1.22, 7, }, - [22] = { 74, 1.24, 1.236, 7, }, - [23] = { 76, 1.25, 1.252, 7, }, - [24] = { 78, 1.27, 1.268, 8, }, - [25] = { 80, 1.28, 1.284, 8, }, - [26] = { 82, 1.3, 1.3, 8, }, - [27] = { 84, 1.32, 1.316, 9, }, - [28] = { 86, 1.33, 1.332, 9, }, - [29] = { 88, 1.35, 1.348, 9, }, - [30] = { 90, 1.36, 1.364, 10, }, + [1] = { 1, 0, 40, nil, nil, }, + [2] = { 2, 0, 40, 1.01, 1.012, }, + [3] = { 4, 1, 41, 1.02, 1.024, }, + [4] = { 7, 1, 41, 1.04, 1.036, }, + [5] = { 11, 1, 42, 1.05, 1.048, }, + [6] = { 16, 2, 42, 1.06, 1.06, }, + [7] = { 20, 2, 43, 1.07, 1.072, }, + [8] = { 24, 2, 43, 1.08, 1.084, }, + [9] = { 28, 3, 44, 1.1, 1.096, }, + [10] = { 32, 3, 44, 1.11, 1.108, }, + [11] = { 36, 3, 45, 1.12, 1.12, }, + [12] = { 40, 4, 45, 1.13, 1.132, }, + [13] = { 44, 4, 46, 1.14, 1.144, }, + [14] = { 48, 4, 46, 1.16, 1.156, }, + [15] = { 52, 5, 47, 1.17, 1.168, }, + [16] = { 56, 5, 47, 1.18, 1.18, }, + [17] = { 60, 5, 48, 1.19, 1.192, }, + [18] = { 64, 6, 48, 1.2, 1.204, }, + [19] = { 67, 6, 49, 1.22, 1.216, }, + [20] = { 70, 6, 49, 1.23, 1.228, }, + [21] = { 72, 7, 50, 1.24, 1.24, }, + [22] = { 74, 7, 50, 1.25, 1.252, }, + [23] = { 76, 7, 51, 1.26, 1.264, }, + [24] = { 78, 8, 51, 1.28, 1.276, }, + [25] = { 80, 8, 52, 1.29, 1.288, }, + [26] = { 82, 8, 52, 1.3, 1.3, }, + [27] = { 84, 9, 53, 1.31, 1.312, }, + [28] = { 86, 9, 53, 1.32, 1.324, }, + [29] = { 88, 9, 54, 1.34, 1.336, }, + [30] = { 90, 10, 54, 1.35, 1.348, }, + [31] = { 91, 10, 54, 1.35, 1.354, }, + [32] = { 92, 10, 55, 1.36, 1.36, }, + [33] = { 93, 10, 55, 1.37, 1.366, }, + [34] = { 94, 10, 55, 1.37, 1.372, }, + [35] = { 95, 10, 55, 1.38, 1.378, }, + [36] = { 96, 11, 55, 1.38, 1.384, }, + [37] = { 97, 11, 55, 1.39, 1.39, }, + [38] = { 98, 11, 56, 1.4, 1.396, }, + [39] = { 99, 11, 56, 1.4, 1.402, }, + [40] = { 100, 11, 56, 1.41, 1.408, }, }, } skills["VaalGroundSlam"] = { name = "Vaal Ground Slam", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Vaal, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, - description = "The character slams the ground with their main hand weapon, creating a wave that travels in all directions and damages enemies. Only works with Staves or Maces.", + description = "The character slams the ground in front of them with their main hand weapon, creating a wave that travels in all directions that damages and stuns enemies. The wave deals more damage to closer enemies. Only works with Staves, Axes or Maces.", skillTypes = { [1] = true, [7] = true, [11] = true, [24] = true, [43] = true, }, weaponTypes = { - ["Two Handed Mace"] = true, - ["Staff"] = true, ["One Handed Mace"] = true, ["Sceptre"] = true, + ["Two Handed Mace"] = true, + ["One Handed Axe"] = true, + ["Two Handed Axe"] = true, + ["Staff"] = true, }, baseFlags = { attack = true, @@ -1317,10 +1283,8 @@ skills["VaalGroundSlam"] = { }, baseMods = { skill("castTime", 1), - mod("EnemyKnockbackDistance", "INC", 100), --"knockback_distance_+%" = 100 - --"animation_effect_variation" = -1 + mod("EnemyStunDuration", "INC", 200), --"base_stun_duration_+%" = 200 --"always_stun" = ? - mod("EnemyKnockbackChance", "BASE", 100), --"global_knockback" = ? --"is_area_damage" = ? skill("cannotBeEvaded", true), --"global_always_hit" = ? }, @@ -1332,52 +1296,53 @@ skills["VaalGroundSlam"] = { [2] = skill("damageEffectiveness", nil), [3] = skill("baseMultiplier", nil), [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + --[5] = "groundslam_damage_to_close_targets_+%_final" }, levels = { - [1] = { 1, 1.6, 1.6, 0, }, - [2] = { 2, 1.62, 1.62, 0, }, - [3] = { 4, 1.64, 1.64, 1, }, - [4] = { 7, 1.66, 1.66, 1, }, - [5] = { 11, 1.68, 1.68, 1, }, - [6] = { 16, 1.7, 1.7, 2, }, - [7] = { 20, 1.72, 1.72, 2, }, - [8] = { 24, 1.74, 1.74, 2, }, - [9] = { 28, 1.76, 1.76, 3, }, - [10] = { 32, 1.78, 1.78, 3, }, - [11] = { 36, 1.8, 1.8, 3, }, - [12] = { 40, 1.82, 1.82, 4, }, - [13] = { 44, 1.84, 1.84, 4, }, - [14] = { 48, 1.86, 1.86, 4, }, - [15] = { 52, 1.88, 1.88, 5, }, - [16] = { 56, 1.9, 1.9, 5, }, - [17] = { 60, 1.92, 1.92, 5, }, - [18] = { 64, 1.94, 1.94, 6, }, - [19] = { 67, 1.96, 1.96, 6, }, - [20] = { 70, 1.98, 1.98, 6, }, - [21] = { 72, 2, 2, 7, }, - [22] = { 74, 2.02, 2.02, 7, }, - [23] = { 76, 2.04, 2.04, 7, }, - [24] = { 78, 2.06, 2.06, 8, }, - [25] = { 80, 2.08, 2.08, 8, }, - [26] = { 82, 2.1, 2.1, 8, }, - [27] = { 84, 2.12, 2.12, 9, }, - [28] = { 86, 2.14, 2.14, 9, }, - [29] = { 88, 2.16, 2.16, 9, }, - [30] = { 90, 2.18, 2.18, 10, }, + [1] = { 1, 1.85, 1.85, 0, 40, }, + [2] = { 2, 1.87, 1.872, 0, 40, }, + [3] = { 4, 1.89, 1.894, 1, 41, }, + [4] = { 7, 1.92, 1.916, 1, 41, }, + [5] = { 11, 1.94, 1.938, 2, 42, }, + [6] = { 16, 1.96, 1.96, 2, 42, }, + [7] = { 20, 1.98, 1.982, 3, 43, }, + [8] = { 24, 2, 2.004, 3, 43, }, + [9] = { 28, 2.03, 2.026, 4, 44, }, + [10] = { 32, 2.05, 2.048, 4, 44, }, + [11] = { 36, 2.07, 2.07, 5, 45, }, + [12] = { 40, 2.09, 2.092, 5, 45, }, + [13] = { 44, 2.11, 2.114, 6, 46, }, + [14] = { 48, 2.14, 2.136, 6, 46, }, + [15] = { 52, 2.16, 2.158, 7, 47, }, + [16] = { 56, 2.18, 2.18, 7, 47, }, + [17] = { 60, 2.2, 2.202, 8, 48, }, + [18] = { 64, 2.22, 2.224, 8, 48, }, + [19] = { 67, 2.25, 2.246, 9, 49, }, + [20] = { 70, 2.27, 2.268, 9, 49, }, + [21] = { 72, 2.29, 2.29, 10, 50, }, + [22] = { 74, 2.31, 2.312, 10, 50, }, + [23] = { 76, 2.33, 2.334, 11, 51, }, + [24] = { 78, 2.36, 2.356, 11, 51, }, + [25] = { 80, 2.38, 2.378, 12, 52, }, + [26] = { 82, 2.4, 2.4, 12, 52, }, + [27] = { 84, 2.42, 2.422, 13, 53, }, + [28] = { 86, 2.44, 2.444, 13, 53, }, + [29] = { 88, 2.47, 2.466, 14, 54, }, + [30] = { 90, 2.49, 2.488, 14, 54, }, + [31] = { 91, 2.5, 2.499, 14, 54, }, + [32] = { 92, 2.51, 2.51, 15, 55, }, + [33] = { 93, 2.52, 2.521, 15, 55, }, + [34] = { 94, 2.53, 2.532, 15, 55, }, + [35] = { 95, 2.54, 2.543, 15, 55, }, + [36] = { 96, 2.55, 2.554, 16, 56, }, + [37] = { 97, 2.57, 2.565, 16, 56, }, + [38] = { 98, 2.58, 2.576, 16, 56, }, + [39] = { 99, 2.59, 2.587, 16, 56, }, + [40] = { 100, 2.6, 2.598, 17, 57, }, }, } skills["HeavyStrike"] = { name = "Heavy Strike", - gemTags = { - strength = true, - active_skill = true, - attack = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1441,23 +1406,20 @@ skills["HeavyStrike"] = { [28] = { 86, 2.12, 2.121, }, [29] = { 88, 2.14, 2.144, }, [30] = { 90, 2.17, 2.167, }, + [31] = { 91, 2.18, 2.1785, }, + [32] = { 92, 2.19, 2.19, }, + [33] = { 93, 2.2, 2.2015, }, + [34] = { 94, 2.21, 2.213, }, + [35] = { 95, 2.22, 2.2245, }, + [36] = { 96, 2.24, 2.236, }, + [37] = { 97, 2.25, 2.2475, }, + [38] = { 98, 2.26, 2.259, }, + [39] = { 99, 2.27, 2.2705, }, + [40] = { 100, 2.28, 2.282, }, }, } skills["HeraldOfAsh"] = { name = "Herald of Ash", - gemTags = { - strength = true, - active_skill = true, - spell = true, - area = true, - fire = true, - herald = true, - duration = true, - }, - gemTagString = "Spell, AoE, Fire, Herald, Duration", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, 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, }, @@ -1514,25 +1476,23 @@ skills["HeraldOfAsh"] = { [28] = { 86, 54, 14, }, [29] = { 88, 56, 14, }, [30] = { 90, 58, 14, }, + [31] = { 91, 59, 14, }, + [32] = { 92, 60, 15, }, + [33] = { 93, 61, 15, }, + [34] = { 94, 62, 15, }, + [35] = { 95, 63, 15, }, + [36] = { 96, 64, 15, }, + [37] = { 97, 65, 15, }, + [38] = { 98, 66, 15, }, + [39] = { 99, 67, 15, }, + [40] = { 100, 68, 15, }, }, } skills["IceCrash"] = { name = "Ice Crash", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - cold = true, - melee = true, - }, - gemTagString = "Attack, AoE, Cold, Melee", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, - description = "Slam the ground with your main hand weapon, 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. Cannot be supported by Multistrike.", - skillTypes = { [1] = true, [11] = true, [24] = true, [7] = true, [34] = true, }, + description = "Slam the ground with your main hand weapon, 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, [7] = true, [34] = true, [28] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -1608,22 +1568,22 @@ skills["IceCrash"] = { [26] = { 82, 2.2, 2.2, }, [27] = { 84, 2.22, 2.22, }, [28] = { 86, 2.24, 2.24, }, - [29] = { 88, 2.16, 2.16, }, - [30] = { 90, 2.18, 2.18, }, + [29] = { 88, 2.16, 2.26, }, + [30] = { 90, 2.18, 2.28, }, + [31] = { 91, 2.29, 2.29, }, + [32] = { 92, 2.3, 2.3, }, + [33] = { 93, 2.31, 2.31, }, + [34] = { 94, 2.32, 2.32, }, + [35] = { 95, 2.33, 2.33, }, + [36] = { 96, 2.34, 2.34, }, + [37] = { 97, 2.35, 2.35, }, + [38] = { 98, 2.36, 2.36, }, + [39] = { 99, 2.37, 2.37, }, + [40] = { 100, 2.38, 2.38, }, }, } skills["ImmortalCall"] = { name = "Immortal Call", - gemTags = { - strength = true, - active_skill = true, - spell = true, - duration = true, - }, - gemTagString = "Spell, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1676,21 +1636,20 @@ skills["ImmortalCall"] = { [28] = { 86, 43, 181, }, [29] = { 88, 44, 184, }, [30] = { 90, 45, 187, }, + [31] = { 91, 45, 188, }, + [32] = { 92, 46, 190, }, + [33] = { 93, 46, 192, }, + [34] = { 94, 46, 193, }, + [35] = { 95, 46, 194, }, + [36] = { 96, 47, 196, }, + [37] = { 97, 47, 198, }, + [38] = { 98, 48, 199, }, + [39] = { 99, 48, 200, }, + [40] = { 100, 49, 202, }, }, } skills["VaalImmortalCall"] = { name = "Vaal Immortal Call", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - spell = true, - duration = true, - }, - gemTagString = "Vaal, Spell, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -1743,25 +1702,23 @@ skills["VaalImmortalCall"] = { [28] = { 86, 181, }, [29] = { 88, 184, }, [30] = { 90, 187, }, + [31] = { 91, 188, }, + [32] = { 92, 190, }, + [33] = { 93, 192, }, + [34] = { 94, 193, }, + [35] = { 95, 194, }, + [36] = { 96, 196, }, + [37] = { 97, 198, }, + [38] = { 98, 199, }, + [39] = { 99, 200, }, + [40] = { 100, 202, }, }, } skills["InfernalBlow"] = { name = "Infernal Blow", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - fire = true, - }, - gemTagString = "Attack, AoE, Melee, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, - description = "Hits the enemy, converting some of your physical damage to fire damage. If the enemy dies soon after being hit, they will explode, dealing fire damage to nearby enemies. The 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, }, + 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, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -1781,10 +1738,10 @@ skills["InfernalBlow"] = { baseMods = { skill("castTime", 1), skill("manaCost", 6), - skill("CritChance", 5), mod("SkillPhysicalDamageConvertToFire", "BASE", 50), --"skill_physical_damage_%_to_convert_to_fire" = 50 - skill("duration", 0.5), --"base_skill_effect_duration" = 500 - skill("corpseExplosionLifeMultiplier", 0.1), --"corpse_explosion_monster_life_%" = 10 + skill("duration", 0.8), --"base_skill_effect_duration" = 800 + skill("corpseExplosionLifeMultiplier", 0.06), --"corpse_explosion_monster_life_%" = 6 + --"infernal_blow_explosion_damage_%_of_total_per_stack" = 66 skill("radius", 15), }, qualityMods = { @@ -1792,56 +1749,55 @@ skills["InfernalBlow"] = { }, levelMods = { [1] = skill("levelRequirement", nil), - [2] = skill("damageEffectiveness", nil), - [3] = skill("baseMultiplier", nil), + [2] = { mod("MeleeWeaponRange", "BASE", nil), mod("UnarmedRange", "BASE", nil) }, --"melee_range_+" + [3] = skill("damageEffectiveness", nil), + [4] = skill("baseMultiplier", nil), }, levels = { - [1] = { 1, 1.3, 1.3, }, - [2] = { 2, 1.32, 1.316, }, - [3] = { 4, 1.33, 1.332, }, - [4] = { 7, 1.35, 1.348, }, - [5] = { 11, 1.36, 1.364, }, - [6] = { 16, 1.38, 1.38, }, - [7] = { 20, 1.4, 1.396, }, - [8] = { 24, 1.41, 1.412, }, - [9] = { 28, 1.43, 1.428, }, - [10] = { 32, 1.44, 1.444, }, - [11] = { 36, 1.46, 1.46, }, - [12] = { 40, 1.48, 1.476, }, - [13] = { 44, 1.49, 1.492, }, - [14] = { 48, 1.51, 1.508, }, - [15] = { 52, 1.52, 1.524, }, - [16] = { 56, 1.54, 1.54, }, - [17] = { 60, 1.56, 1.556, }, - [18] = { 64, 1.57, 1.572, }, - [19] = { 67, 1.59, 1.588, }, - [20] = { 70, 1.6, 1.604, }, - [21] = { 72, 1.62, 1.62, }, - [22] = { 74, 1.64, 1.636, }, - [23] = { 76, 1.65, 1.652, }, - [24] = { 78, 1.67, 1.668, }, - [25] = { 80, 1.68, 1.684, }, - [26] = { 82, 1.7, 1.7, }, - [27] = { 84, 1.72, 1.716, }, - [28] = { 86, 1.73, 1.732, }, - [29] = { 88, 1.75, 1.748, }, - [30] = { 90, 1.76, 1.764, }, + [1] = { 12, 0, nil, nil, }, + [2] = { 15, 0, 1.01, 1.012, }, + [3] = { 19, 0, 1.02, 1.024, }, + [4] = { 23, 0, 1.04, 1.036, }, + [5] = { 27, 0, 1.05, 1.048, }, + [6] = { 31, 1, 1.06, 1.06, }, + [7] = { 35, 1, 1.07, 1.072, }, + [8] = { 38, 1, 1.08, 1.084, }, + [9] = { 41, 1, 1.1, 1.096, }, + [10] = { 44, 1, 1.11, 1.108, }, + [11] = { 47, 2, 1.12, 1.12, }, + [12] = { 50, 2, 1.13, 1.132, }, + [13] = { 53, 2, 1.14, 1.144, }, + [14] = { 56, 2, 1.16, 1.156, }, + [15] = { 59, 2, 1.17, 1.168, }, + [16] = { 62, 3, 1.18, 1.18, }, + [17] = { 64, 3, 1.19, 1.192, }, + [18] = { 66, 3, 1.2, 1.204, }, + [19] = { 68, 3, 1.22, 1.216, }, + [20] = { 70, 3, 1.23, 1.228, }, + [21] = { 72, 4, 1.24, 1.24, }, + [22] = { 74, 4, 1.25, 1.252, }, + [23] = { 76, 4, 1.26, 1.264, }, + [24] = { 78, 4, 1.28, 1.276, }, + [25] = { 80, 4, 1.29, 1.288, }, + [26] = { 82, 5, 1.3, 1.3, }, + [27] = { 84, 5, 1.31, 1.312, }, + [28] = { 86, 5, 1.32, 1.324, }, + [29] = { 88, 5, 1.34, 1.336, }, + [30] = { 90, 5, 1.35, 1.348, }, + [31] = { 91, 5, 1.35, 1.354, }, + [32] = { 92, 6, 1.36, 1.36, }, + [33] = { 93, 6, 1.37, 1.366, }, + [34] = { 94, 6, 1.37, 1.372, }, + [35] = { 95, 6, 1.38, 1.378, }, + [36] = { 96, 6, 1.38, 1.384, }, + [37] = { 97, 6, 1.39, 1.39, }, + [38] = { 98, 6, 1.4, 1.396, }, + [39] = { 99, 6, 1.4, 1.402, }, + [40] = { 100, 6, 1.41, 1.408, }, }, } skills["LeapSlam"] = { name = "Leap Slam", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, AoE, Movement, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Jump into the air, damaging enemies (and knocking back some) with your main hand 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, [7] = true, [11] = true, [24] = true, [38] = true, }, @@ -1908,22 +1864,20 @@ skills["LeapSlam"] = { [28] = { 86, 1.32, 1.324, }, [29] = { 88, 1.34, 1.336, }, [30] = { 90, 1.35, 1.348, }, + [31] = { 91, 1.35, 1.354, }, + [32] = { 92, 1.36, 1.36, }, + [33] = { 93, 1.37, 1.366, }, + [34] = { 94, 1.37, 1.372, }, + [35] = { 95, 1.38, 1.378, }, + [36] = { 96, 1.38, 1.384, }, + [37] = { 97, 1.39, 1.39, }, + [38] = { 98, 1.4, 1.396, }, + [39] = { 99, 1.4, 1.402, }, + [40] = { 100, 1.41, 1.408, }, }, } skills["MoltenShell"] = { name = "Molten Shell", - gemTags = { - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Spell, AoE, Duration, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, 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, [26] = true, [33] = true, }, @@ -1984,24 +1938,21 @@ skills["MoltenShell"] = { [27] = { 84, 31, 4566, 6849, 2977, 1861, }, [28] = { 86, 31, 5141, 7712, 3275, 2047, }, [29] = { 88, 32, 5787, 8680, 3601, 2251, }, - [30] = { 90, 32, 6510, 9766, 3958, 2474, }, + [30] = { 90, 32, 6510, 9765, 3958, 2474, }, + [31] = { 91, 34, 6904, 10356, 4140, 2596, }, + [32] = { 92, 34, 7321, 10982, 4517, 2719, }, + [33] = { 93, 34, 7763, 11645, 4699, 2854, }, + [34] = { 94, 35, 8230, 12346, 5094, 2988, }, + [35] = { 95, 35, 8725, 13088, 5276, 3136, }, + [36] = { 96, 35, 9249, 13873, 5681, 3283, }, + [37] = { 97, 36, 9803, 14705, 5863, 3446, }, + [38] = { 98, 36, 10390, 15585, 6290, 3608, }, + [39] = { 99, 36, 11010, 16516, 6472, 3786, }, + [40] = { 100, 36, 11667, 17501, 6923, 3963, }, }, } skills["VaalMoltenShell"] = { name = "Vaal Molten Shell", - gemTags = { - strength = true, - active_skill = true, - vaal = true, - spell = true, - area = true, - duration = true, - fire = true, - }, - gemTagString = "Vaal, Spell, AoE, Duration, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, 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, }, @@ -2061,23 +2012,20 @@ skills["VaalMoltenShell"] = { [28] = { 86, 1557, 2335, 2047, }, [29] = { 88, 1718, 2577, 2251, }, [30] = { 90, 1895, 2843, 2474, }, + [31] = { 91, 1990, 2985, 2596, }, + [32] = { 92, 2090, 3135, 2717, }, + [33] = { 93, 2194, 3291, 2849, }, + [34] = { 94, 2303, 3455, 2981, }, + [35] = { 95, 2418, 3627, 3124, }, + [36] = { 96, 2538, 3807, 3267, }, + [37] = { 97, 2664, 3995, 3422, }, + [38] = { 98, 2795, 4193, 3576, }, + [39] = { 99, 2933, 4400, 3742, }, + [40] = { 100, 3078, 4617, 3909, }, }, } skills["MoltenStrike"] = { name = "Molten Strike", - gemTags = { - projectile = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - fire = true, - }, - gemTagString = "Projectile, Attack, AoE, Melee, Fire", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -2162,22 +2110,20 @@ skills["MoltenStrike"] = { [28] = { 86, 1.58, 1.578, }, [29] = { 88, 1.59, 1.592, }, [30] = { 90, 1.61, 1.606, }, + [31] = { 91, 1.61, 1.613, }, + [32] = { 92, 1.62, 1.62, }, + [33] = { 93, 1.63, 1.627, }, + [34] = { 94, 1.63, 1.634, }, + [35] = { 95, 1.64, 1.641, }, + [36] = { 96, 1.65, 1.648, }, + [37] = { 97, 1.66, 1.655, }, + [38] = { 98, 1.66, 1.662, }, + [39] = { 99, 1.67, 1.669, }, + [40] = { 100, 1.68, 1.676, }, }, } skills["Punishment"] = { name = "Punishment", - gemTags = { - curse = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -2235,22 +2181,20 @@ skills["Punishment"] = { [28] = { 86, 59, 11.7, 39, 23, 14, }, [29] = { 88, 60, 11.8, 39, 24, 14, }, [30] = { 90, 61, 11.9, 40, 24, 15, }, + [31] = { 91, 63, 11.95, 40, 24, 15, }, + [32] = { 92, 65, 12, 40, 25, 15, }, + [33] = { 93, 66, 12.05, 40, 25, 15, }, + [34] = { 94, 67, 12.1, 41, 25, 16, }, + [35] = { 95, 68, 12.15, 41, 25, 16, }, + [36] = { 96, 70, 12.2, 41, 26, 16, }, + [37] = { 97, 71, 12.25, 41, 26, 16, }, + [38] = { 98, 72, 12.3, 42, 26, 17, }, + [39] = { 99, 73, 12.35, 42, 26, 17, }, + [40] = { 100, 75, 12.4, 42, 27, 17, }, }, } skills["FireResistAura"] = { name = "Purity of Fire", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - fire = true, - }, - gemTagString = "Aura, Spell, AoE, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -2306,21 +2250,20 @@ skills["FireResistAura"] = { [28] = { 86, 49, 5, 27, }, [29] = { 88, 50, 5, 28, }, [30] = { 90, 51, 5, 29, }, + [31] = { 91, 51, 5, 29, }, + [32] = { 92, 52, 5, 30, }, + [33] = { 93, 52, 5, 30, }, + [34] = { 94, 53, 5, 31, }, + [35] = { 95, 53, 5, 31, }, + [36] = { 96, 54, 5, 32, }, + [37] = { 97, 54, 5, 32, }, + [38] = { 98, 55, 5, 33, }, + [39] = { 99, 55, 5, 33, }, + [40] = { 100, 56, 5, 34, }, }, } skills["RallyingCry"] = { name = "Rallying Cry", - gemTags = { - warcry = true, - strength = true, - active_skill = true, - area = true, - duration = true, - }, - gemTagString = "Warcry, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -2378,22 +2321,20 @@ skills["RallyingCry"] = { [28] = { 86, 30, 194, 19, 20.5, }, [29] = { 88, 31, 196, 19, 21.3, }, [30] = { 90, 31, 198, 20, 22, }, + [31] = { 91, 32, 199, 20, 22.35, }, + [32] = { 92, 32, 200, 20, 22.7, }, + [33] = { 93, 33, 201, 20, 23.05, }, + [34] = { 94, 33, 202, 20, 23.4, }, + [35] = { 95, 34, 203, 20, 23.75, }, + [36] = { 96, 34, 204, 21, 24.1, }, + [37] = { 97, 35, 205, 21, 24.5, }, + [38] = { 98, 35, 206, 21, 24.9, }, + [39] = { 99, 36, 207, 21, 25.25, }, + [40] = { 100, 36, 208, 21, 25.6, }, }, } skills["Reckoning"] = { name = "Reckoning", - gemTags = { - trigger = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Trigger, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Perform a swift counter-attack against enemies in a cone shape when you block with your shield.", skillTypes = { [1] = true, [7] = true, [13] = true, [24] = true, [11] = true, [47] = true, [57] = true, }, @@ -2460,26 +2401,23 @@ skills["Reckoning"] = { [28] = { 86, 1.24, 1.24, }, [29] = { 88, 1.26, 1.26, }, [30] = { 90, 1.28, 1.28, }, + [31] = { 91, 1.29, 1.29, }, + [32] = { 92, 1.3, 1.3, }, + [33] = { 93, 1.31, 1.31, }, + [34] = { 94, 1.32, 1.32, }, + [35] = { 95, 1.33, 1.33, }, + [36] = { 96, 1.34, 1.34, }, + [37] = { 97, 1.35, 1.35, }, + [38] = { 98, 1.36, 1.36, }, + [39] = { 99, 1.37, 1.37, }, + [40] = { 100, 1.38, 1.38, }, }, } skills["RejuvenationTotem"] = { name = "Rejuvenation Totem", - gemTags = { - totem = true, - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Totem, Aura, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [12] = true, [15] = true, [27] = true, [17] = true, [19] = true, [30] = true, [44] = true, }, + skillTypes = { [2] = true, [5] = true, [11] = true, [15] = true, [27] = true, [17] = true, [19] = true, [30] = true, [44] = true, }, skillTotemId = 4, baseFlags = { spell = true, @@ -2536,26 +2474,24 @@ skills["RejuvenationTotem"] = { [27] = { 84, 38, 217.43333333333, 84, }, [28] = { 86, 38, 227.95, 86, }, [29] = { 88, 39, 241.21666666667, 88, }, - [30] = { 90, 40, 243.65, 90, }, + [30] = { 90, 40, 253.38333333333, 90, }, + [31] = { 91, 40, 260.06666666667, 100, }, + [32] = { 92, 40, 266.76666666667, 103, }, + [33] = { 93, 40, 273.46666666667, 106, }, + [34] = { 94, 40, 280.15, 109, }, + [35] = { 95, 41, 286.83333333333, 112, }, + [36] = { 96, 41, 293.53333333333, 115, }, + [37] = { 97, 41, 300.23333333333, 119, }, + [38] = { 98, 42, 306.91666666667, 122, }, + [39] = { 99, 42, 313.58333333333, 125, }, + [40] = { 100, 42, 320.25, 128, }, }, } skills["SearingBond"] = { name = "Searing Bond", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - duration = true, - fire = true, - }, - gemTagString = "Totem, Spell, Duration, Fire", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, 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, [12] = true, [17] = true, [19] = true, [27] = true, [29] = true, [30] = true, [36] = true, [33] = true, }, + skillTypes = { [2] = true, [40] = true, [17] = true, [19] = true, [27] = true, [29] = true, [30] = true, [36] = true, [33] = true, }, skillTotemId = 9, baseFlags = { spell = true, @@ -2601,31 +2537,29 @@ skills["SearingBond"] = { [19] = { 68, 50, 68, 1542.7666666667, }, [20] = { 70, 51, 70, 1755.6166666667, }, [21] = { 72, 53, 72, 1996.5833333333, }, - [22] = { 74, 53, 74, 2269.2666666667, }, - [23] = { 76, 54, 76, 2577.7166666667, }, + [22] = { 74, 53, 74, 2269.25, }, + [23] = { 76, 54, 76, 2577.7, }, [24] = { 78, 56, 78, 2926.4833333333, }, [25] = { 80, 58, 80, 3320.7333333333, }, - [26] = { 82, 59, 82, 3766.2333333333, }, + [26] = { 82, 59, 82, 3766.2166666667, }, [27] = { 84, 59, 84, 4269.45, }, [28] = { 86, 61, 86, 4837.7166666667, }, - [29] = { 88, 62, 88, 5479.2333333333, }, - [30] = { 90, 64, 90, 6203.2166666667, }, + [29] = { 88, 62, 88, 5479.2166666667, }, + [30] = { 90, 62, 90, 6203.2, }, + [31] = { 91, 63, 91, 6599.3166666667, }, + [32] = { 92, 64, 92, 7020.0333333333, }, + [33] = { 93, 65, 93, 7466.85, }, + [34] = { 94, 65, 94, 7941.35, }, + [35] = { 95, 66, 95, 8445.2166666667, }, + [36] = { 96, 67, 96, 8980.2333333333, }, + [37] = { 97, 67, 97, 9548.3, }, + [38] = { 98, 68, 98, 10151.4, }, + [39] = { 99, 69, 99, 10791.666666667, }, + [40] = { 100, 70, 100, 11471.366666667, }, }, } skills["NewShieldCharge"] = { name = "Shield Charge", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - movement = true, - melee = true, - }, - gemTagString = "Attack, AoE, Movement, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, [7] = true, [13] = true, [24] = true, [11] = true, [38] = true, }, @@ -2693,25 +2627,23 @@ skills["NewShieldCharge"] = { [28] = { 86, 0.66, 0.662, }, [29] = { 88, 0.67, 0.668, }, [30] = { 90, 0.67, 0.674, }, + [31] = { 91, 0.68, 0.677, }, + [32] = { 92, 0.68, 0.68, }, + [33] = { 93, 0.68, 0.683, }, + [34] = { 94, 0.69, 0.686, }, + [35] = { 95, 0.69, 0.689, }, + [36] = { 96, 0.69, 0.692, }, + [37] = { 97, 0.69, 0.695, }, + [38] = { 98, 0.7, 0.698, }, + [39] = { 99, 0.7, 0.701, }, + [40] = { 100, 0.7, 0.704, }, }, } skills["ShockwaveTotem"] = { name = "Shockwave Totem", - gemTags = { - totem = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Totem, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Summons a totem that shakes the earth around it, knocking back and damaging nearby enemies", - skillTypes = { [2] = true, [10] = true, [11] = true, [12] = true, [17] = true, [19] = true, [30] = true, [26] = true, }, + skillTypes = { [2] = true, [10] = true, [11] = true, [17] = true, [19] = true, [30] = true, [26] = true, }, skillTotemId = 5, baseFlags = { spell = true, @@ -2772,25 +2704,22 @@ skills["ShockwaveTotem"] = { [28] = { 86, 65, 504, 936, 86, }, [29] = { 88, 66, 555, 1030, 88, }, [30] = { 90, 66, 610, 1132, 90, }, + [31] = { 91, 67, 639, 1187, 91, }, + [32] = { 92, 67, 670, 1245, 92, }, + [33] = { 93, 67, 702, 1305, 93, }, + [34] = { 94, 68, 736, 1367, 94, }, + [35] = { 95, 69, 772, 1433, 95, }, + [36] = { 96, 70, 809, 1502, 96, }, + [37] = { 97, 71, 847, 1573, 97, }, + [38] = { 98, 72, 888, 1649, 98, }, + [39] = { 99, 73, 930, 1727, 99, }, + [40] = { 100, 74, 974, 1809, 100, }, }, } skills["StaticStrike"] = { name = "Static Strike", - gemTags = { - strength = true, - active_skill = true, - attack = true, - melee = true, - area = true, - duration = true, - lightning = true, - }, - gemTagString = "Attack, Melee, AoE, Duration, Lightning", - gemStr = 60, - gemDex = 0, - gemInt = 40, color = 1, - description = "Strike your enemies with a melee weapon, building up static energy on you. This energy damages enemies around you when it expires. ", + description = "Strike your enemies with a melee weapon, building up static energy on you. This energy damages enemies around you when it expires, dealing damage that cannot be evaded or dodged. ", skillTypes = { [1] = true, [25] = true, [28] = true, [24] = true, [11] = true, [12] = true, [35] = true, }, weaponTypes = { ["One Handed Mace"] = true, @@ -2871,22 +2800,20 @@ skills["StaticStrike"] = { [28] = { 86, 1.8, 1.802, 5, 27, }, [29] = { 88, 1.83, 1.828, 5, 28, }, [30] = { 90, 1.85, 1.854, 6, 29, }, + [31] = { 91, 1.87, 1.867, 6, 29, }, + [32] = { 92, 1.88, 1.88, 6, 30, }, + [33] = { 93, 1.89, 1.893, 6, 30, }, + [34] = { 94, 1.91, 1.906, 6, 31, }, + [35] = { 95, 1.92, 1.919, 6, 31, }, + [36] = { 96, 1.93, 1.932, 6, 32, }, + [37] = { 97, 1.95, 1.945, 6, 32, }, + [38] = { 98, 1.96, 1.958, 6, 33, }, + [39] = { 99, 1.97, 1.971, 6, 33, }, + [40] = { 100, 1.98, 1.984, 7, 34, }, }, } skills["SummonFireGolem"] = { name = "Summon Flame Golem", - gemTags = { - strength = true, - active_skill = true, - fire = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Fire, Minion, Spell, Golem", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -2950,21 +2877,20 @@ skills["SummonFireGolem"] = { [28] = { 86, 60, 14, 22, 84, 86, }, [29] = { 88, 62, 14, 22, 86, 88, }, [30] = { 90, 62, 15, 22, 88, 90, }, + [31] = { 91, 62, 15, 22, 89, 91, }, + [32] = { 92, 63, 15, 23, 90, 92, }, + [33] = { 93, 63, 15, 23, 91, 93, }, + [34] = { 94, 63, 16, 23, 92, 94, }, + [35] = { 95, 63, 16, 23, 93, 95, }, + [36] = { 96, 64, 16, 23, 94, 96, }, + [37] = { 97, 64, 16, 23, 95, 97, }, + [38] = { 98, 64, 17, 23, 96, 98, }, + [39] = { 99, 64, 17, 23, 97, 99, }, + [40] = { 100, 64, 17, 24, 98, 100, }, }, } skills["SummonRockGolem"] = { name = "Summon Stone Golem", - gemTags = { - strength = true, - active_skill = true, - minion = true, - spell = true, - golem = true, - }, - gemTagString = "Minion, Spell, Golem", - gemStr = 60, - gemDex = 40, - gemInt = 0, 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, }, @@ -3028,21 +2954,20 @@ skills["SummonRockGolem"] = { [28] = { 86, 60, 14, 84, 151, 86, }, [29] = { 88, 62, 14, 86, 157, 88, }, [30] = { 90, 62, 15, 88, 164, 90, }, + [31] = { 91, 62, 15, 89, 167, 91, }, + [32] = { 92, 63, 15, 90, 170, 92, }, + [33] = { 93, 63, 15, 91, 173, 93, }, + [34] = { 94, 63, 16, 92, 176, 94, }, + [35] = { 95, 63, 16, 93, 179, 95, }, + [36] = { 96, 64, 16, 94, 182, 96, }, + [37] = { 97, 64, 16, 95, 185, 97, }, + [38] = { 98, 64, 17, 96, 188, 98, }, + [39] = { 99, 64, 17, 97, 191, 99, }, + [40] = { 100, 64, 17, 98, 194, 100, }, }, } skills["Sunder"] = { name = "Sunder", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Slams the ground with your main hand weapon, 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. Requires a Mace, Axe, or Staff.", skillTypes = { [1] = true, [7] = true, [11] = true, [28] = true, [24] = true, }, @@ -3114,21 +3039,20 @@ skills["Sunder"] = { [28] = { 86, 1.99, 1.994, 9, }, [29] = { 88, 2.02, 2.016, 9, }, [30] = { 90, 2.04, 2.038, 10, }, + [31] = { 91, 2.05, 2.049, 10, }, + [32] = { 92, 2.06, 2.06, 10, }, + [33] = { 93, 2.07, 2.071, 10, }, + [34] = { 94, 2.08, 2.082, 10, }, + [35] = { 95, 2.09, 2.093, 10, }, + [36] = { 96, 2.1, 2.104, 11, }, + [37] = { 97, 2.12, 2.115, 11, }, + [38] = { 98, 2.13, 2.126, 11, }, + [39] = { 99, 2.14, 2.137, 11, }, + [40] = { 100, 2.15, 2.148, 11, }, }, } skills["Sweep"] = { name = "Sweep", - gemTags = { - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3191,22 +3115,20 @@ skills["Sweep"] = { [28] = { 86, 43, 5, 1.54, 1.54, }, [29] = { 88, 44, 5, 1.56, 1.56, }, [30] = { 90, 44, 6, 1.58, 1.58, }, + [31] = { 91, 44, 6, 1.59, 1.59, }, + [32] = { 92, 45, 6, 1.6, 1.6, }, + [33] = { 93, 45, 6, 1.61, 1.61, }, + [34] = { 94, 45, 6, 1.62, 1.62, }, + [35] = { 95, 45, 6, 1.63, 1.63, }, + [36] = { 96, 46, 6, 1.64, 1.64, }, + [37] = { 97, 46, 6, 1.65, 1.65, }, + [38] = { 98, 46, 6, 1.66, 1.66, }, + [39] = { 99, 46, 6, 1.67, 1.67, }, + [40] = { 100, 47, 7, 1.68, 1.68, }, }, } skills["EnduranceChargeSlam"] = { name = "Tectonic Slam", - gemTags = { - fire = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Fire, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, color = 1, description = "Slam the ground with your main hand weapon, unleashing a fiery fissure in front of you, dealing area damage and releasing a random number of smaller fissures branching off from it. If you have Endurance Charges, the number of fissures will be maximised, and one Endurance Charge will be consumed. Requires a Mace, Sword, Axe, Staff, or Unarmed.", skillTypes = { [1] = true, [7] = true, [11] = true, [28] = true, [24] = true, [33] = true, }, @@ -3274,22 +3196,20 @@ skills["EnduranceChargeSlam"] = { [28] = { 86, 1.73, 1.732, }, [29] = { 88, 1.75, 1.748, }, [30] = { 90, 1.76, 1.764, }, + [31] = { 91, 1.77, 1.772, }, + [32] = { 92, 1.78, 1.78, }, + [33] = { 93, 1.79, 1.788, }, + [34] = { 94, 1.8, 1.796, }, + [35] = { 95, 1.8, 1.804, }, + [36] = { 96, 1.81, 1.812, }, + [37] = { 97, 1.82, 1.82, }, + [38] = { 98, 1.83, 1.828, }, + [39] = { 99, 1.84, 1.836, }, + [40] = { 100, 1.84, 1.844, }, }, } skills["Vengeance"] = { name = "Vengeance", - gemTags = { - trigger = true, - strength = true, - active_skill = true, - attack = true, - area = true, - melee = true, - }, - gemTagString = "Trigger, Attack, AoE, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3358,20 +3278,20 @@ skills["Vengeance"] = { [28] = { 86, 1.29, 1.29, }, [29] = { 88, 1.31, 1.31, }, [30] = { 90, 1.33, 1.33, }, + [31] = { 91, 1.34, 1.34, }, + [32] = { 92, 1.35, 1.35, }, + [33] = { 93, 1.36, 1.36, }, + [34] = { 94, 1.37, 1.37, }, + [35] = { 95, 1.38, 1.38, }, + [36] = { 96, 1.39, 1.39, }, + [37] = { 97, 1.4, 1.4, }, + [38] = { 98, 1.41, 1.41, }, + [39] = { 99, 1.42, 1.42, }, + [40] = { 100, 1.43, 1.43, }, }, } skills["VigilantStrike"] = { name = "Vigilant Strike", - gemTags = { - attack = true, - strength = true, - active_skill = true, - melee = true, - }, - gemTagString = "Attack, Melee", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, }, @@ -3439,21 +3359,20 @@ skills["VigilantStrike"] = { [28] = { 86, 2.19, 2.19, 210, }, [29] = { 88, 2.21, 2.21, 215, }, [30] = { 90, 2.23, 2.23, 220, }, + [31] = { 91, 2.24, 2.24, 222, }, + [32] = { 92, 2.25, 2.25, 225, }, + [33] = { 93, 2.26, 2.26, 228, }, + [34] = { 94, 2.27, 2.27, 230, }, + [35] = { 95, 2.28, 2.28, 232, }, + [36] = { 96, 2.29, 2.29, 235, }, + [37] = { 97, 2.3, 2.3, 238, }, + [38] = { 98, 2.31, 2.31, 240, }, + [39] = { 99, 2.32, 2.32, 242, }, + [40] = { 100, 2.33, 2.33, 245, }, }, } skills["Vitality"] = { name = "Vitality", - gemTags = { - aura = true, - strength = true, - active_skill = true, - spell = true, - area = true, - }, - gemTagString = "Aura, Spell, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3508,22 +3427,20 @@ skills["Vitality"] = { [28] = { 86, 2.05, 27, }, [29] = { 88, 2.1, 28, }, [30] = { 90, 2.15, 29, }, + [31] = { 91, 2.1666666666667, 29, }, + [32] = { 92, 2.2, 30, }, + [33] = { 93, 2.2333333333333, 30, }, + [34] = { 94, 2.25, 31, }, + [35] = { 95, 2.2666666666667, 31, }, + [36] = { 96, 2.3, 32, }, + [37] = { 97, 2.3333333333333, 32, }, + [38] = { 98, 2.35, 33, }, + [39] = { 99, 2.3666666666667, 33, }, + [40] = { 100, 2.4, 34, }, }, } skills["Vulnerability"] = { name = "Vulnerability", - gemTags = { - curse = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3535,7 +3452,6 @@ skills["Vulnerability"] = { }, baseMods = { skill("castTime", 0.5), - skill("duration", 9), --"base_skill_effect_duration" = 9000 mod("SelfBleedChance", "BASE", 20, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), --"receive_bleeding_chance_%_when_hit_by_attack" = 20 --"chance_to_be_maimed_when_hit_%" = 20 mod("PhysicalDamageTakenOverTime", "INC", 30, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), --"base_physical_damage_over_time_taken_+%" = 30 @@ -3549,56 +3465,55 @@ skills["Vulnerability"] = { levelMods = { [1] = skill("levelRequirement", nil), [2] = skill("manaCost", nil), - [3] = skill("radiusExtra", nil), --"active_skill_base_radius_+" - [4] = mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), --"physical_damage_taken_+%" + [3] = skill("duration", nil), --"base_skill_effect_duration" + [4] = skill("radiusExtra", nil), --"active_skill_base_radius_+" + [5] = mod("PhysicalDamageTaken", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), --"physical_damage_taken_+%" }, levels = { - [1] = { 24, 24, 0, 30, }, - [2] = { 27, 26, 1, 30, }, - [3] = { 30, 27, 1, 31, }, - [4] = { 33, 29, 2, 31, }, - [5] = { 36, 30, 2, 32, }, - [6] = { 39, 32, 3, 32, }, - [7] = { 42, 34, 3, 33, }, - [8] = { 45, 35, 4, 33, }, - [9] = { 48, 37, 4, 34, }, - [10] = { 50, 38, 5, 34, }, - [11] = { 52, 39, 5, 35, }, - [12] = { 54, 40, 6, 35, }, - [13] = { 56, 42, 6, 36, }, - [14] = { 58, 43, 7, 36, }, - [15] = { 60, 44, 7, 37, }, - [16] = { 62, 45, 8, 37, }, - [17] = { 64, 46, 8, 38, }, - [18] = { 66, 47, 9, 38, }, - [19] = { 68, 48, 9, 39, }, - [20] = { 70, 50, 10, 39, }, - [21] = { 72, 51, 10, 40, }, - [22] = { 74, 52, 11, 40, }, - [23] = { 76, 53, 11, 41, }, - [24] = { 78, 54, 12, 41, }, - [25] = { 80, 56, 12, 42, }, - [26] = { 82, 57, 13, 42, }, - [27] = { 84, 58, 13, 43, }, - [28] = { 86, 59, 14, 43, }, - [29] = { 88, 60, 14, 44, }, - [30] = { 90, 61, 15, 44, }, + [1] = { 24, 24, 9, 0, 30, }, + [2] = { 27, 26, 9.1, 1, 30, }, + [3] = { 30, 27, 9.2, 1, 31, }, + [4] = { 33, 29, 9.3, 2, 31, }, + [5] = { 36, 30, 9.4, 2, 32, }, + [6] = { 39, 32, 9.5, 3, 32, }, + [7] = { 42, 34, 9.6, 3, 33, }, + [8] = { 45, 35, 9.7, 4, 33, }, + [9] = { 48, 37, 9.8, 4, 34, }, + [10] = { 50, 38, 9.9, 5, 34, }, + [11] = { 52, 39, 10, 5, 35, }, + [12] = { 54, 40, 10.1, 6, 35, }, + [13] = { 56, 42, 10.2, 6, 36, }, + [14] = { 58, 43, 10.3, 7, 36, }, + [15] = { 60, 44, 10.4, 7, 37, }, + [16] = { 62, 45, 10.5, 8, 37, }, + [17] = { 64, 46, 10.6, 8, 38, }, + [18] = { 66, 47, 10.7, 9, 38, }, + [19] = { 68, 48, 10.8, 9, 39, }, + [20] = { 70, 50, 10.9, 10, 39, }, + [21] = { 72, 51, 11, 10, 40, }, + [22] = { 74, 52, 11.1, 11, 40, }, + [23] = { 76, 53, 11.2, 11, 41, }, + [24] = { 78, 54, 11.3, 12, 41, }, + [25] = { 80, 56, 11.4, 12, 42, }, + [26] = { 82, 57, 11.5, 13, 42, }, + [27] = { 84, 58, 11.6, 13, 43, }, + [28] = { 86, 59, 11.7, 14, 43, }, + [29] = { 88, 60, 11.8, 14, 44, }, + [30] = { 90, 61, 11.9, 15, 44, }, + [31] = { 91, 63, 11.95, 15, 44, }, + [32] = { 92, 65, 12, 15, 45, }, + [33] = { 93, 66, 12.05, 15, 45, }, + [34] = { 94, 67, 12.1, 16, 45, }, + [35] = { 95, 68, 12.15, 16, 45, }, + [36] = { 96, 70, 12.2, 16, 46, }, + [37] = { 97, 71, 12.25, 16, 46, }, + [38] = { 98, 72, 12.3, 17, 46, }, + [39] = { 99, 73, 12.35, 17, 46, }, + [40] = { 100, 75, 12.4, 17, 47, }, }, } skills["WarlordsMark"] = { name = "Warlord's Mark", - gemTags = { - curse = true, - strength = true, - active_skill = true, - spell = true, - area = true, - duration = true, - }, - gemTagString = "Curse, Spell, AoE, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, }, @@ -3659,5 +3574,15 @@ skills["WarlordsMark"] = { [28] = { 86, 59, 11.4, 14, -34, 34, }, [29] = { 88, 60, 11.6, 14, -35, 35, }, [30] = { 90, 61, 11.8, 15, -35, 35, }, + [31] = { 91, 63, 11.9, 15, -35, 35, }, + [32] = { 92, 65, 12, 15, -36, 35, }, + [33] = { 93, 66, 12.1, 15, -36, 36, }, + [34] = { 94, 67, 12.2, 16, -36, 36, }, + [35] = { 95, 68, 12.3, 16, -36, 36, }, + [36] = { 96, 70, 12.4, 16, -37, 36, }, + [37] = { 97, 71, 12.5, 16, -37, 37, }, + [38] = { 98, 72, 12.6, 17, -37, 37, }, + [39] = { 99, 73, 12.7, 17, -37, 37, }, + [40] = { 100, 75, 12.8, 17, -38, 37, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/other.lua b/Data/3_0/Skills/other.lua index e743840d..9c78d3ef 100644 --- a/Data/3_0/Skills/other.lua +++ b/Data/3_0/Skills/other.lua @@ -33,15 +33,6 @@ skills["Melee"] = { } skills["GemDetonateMines"] = { name = "Detonate Mines", - gemTags = { - low_max_level = true, - active_skill = true, - spell = true, - }, - gemTagString = "Spell", - gemStr = 33, - gemDex = 33, - gemInt = 34, color = 4, description = "Detonates all the Remote Mines you have placed.", skillTypes = { [2] = true, [17] = true, [18] = true, [36] = true, }, @@ -73,15 +64,6 @@ skills["GemDetonateMines"] = { } skills["Portal"] = { name = "Portal", - gemTags = { - low_max_level = true, - active_skill = true, - spell = true, - }, - gemTagString = "Spell", - gemStr = 33, - gemDex = 33, - gemInt = 34, 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, }, @@ -113,16 +95,6 @@ skills["Portal"] = { } skills["VaalBreach"] = { name = "Vaal Breach", - gemTags = { - low_max_level = true, - active_skill = true, - vaal = true, - spell = true, - }, - gemTagString = "Vaal, Spell", - gemStr = 33, - gemDex = 33, - gemInt = 34, 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, }, @@ -562,8 +534,8 @@ skills["TouchOfGod"] = { name = "Doryani's Touch", 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 supported by Multistrike.", - skillTypes = { [1] = true, [11] = true, [35] = true, [24] = true, }, + 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.", + skillTypes = { [1] = true, [11] = true, [35] = true, [24] = true, [28] = true, }, weaponTypes = { ["None"] = true, }, @@ -619,6 +591,16 @@ skills["TouchOfGod"] = { [28] = { 86, 31, }, [29] = { 88, 31, }, [30] = { 90, 31, }, + [31] = { 91, 32, }, + [32] = { 92, 32, }, + [33] = { 93, 32, }, + [34] = { 94, 33, }, + [35] = { 95, 33, }, + [36] = { 96, 33, }, + [37] = { 97, 34, }, + [38] = { 98, 34, }, + [39] = { 99, 34, }, + [40] = { 100, 35, }, }, } skills["ElementalAegis"] = { @@ -827,7 +809,7 @@ skills["FireBurstOnHit"] = { [19] = { 67, 605, 908, }, [20] = { 70, 703, 1055, }, [21] = { 72, 777, 1165, }, - [22] = { 74, 858, 1286, }, + [22] = { 74, 857, 1286, }, [23] = { 76, 946, 1419, }, [24] = { 78, 1043, 1564, }, [25] = { 80, 1149, 1724, }, @@ -852,8 +834,8 @@ skills["VaalAuraElementalDamageHealing"] = { duration = true, }, baseMods = { - skill("castTime", 1), - skill("duration", 6), --"base_skill_effect_duration" = 6000 + skill("castTime", 0.5), + skill("duration", 5), --"base_skill_effect_duration" = 5000 --"base_elemental_damage_heals" = ? skill("radius", 36), }, @@ -1662,7 +1644,7 @@ skills["SummonVoidSphere"] = { --"chilled_ground_base_magnitude_override" = 10 skill("ColdMin", 895), --"spell_minimum_base_cold_damage" = 895 skill("ColdMax", 1342), --"spell_maximum_base_cold_damage" = 1342 - skill("ColdDot", 1553.2666666667), --"base_cold_damage_to_deal_per_minute" = 93196 + skill("ColdDot", 1553.25), --"base_cold_damage_to_deal_per_minute" = 93195 --"is_area_damage" = ? skill("showAverage", true), --"base_skill_show_average_damage_instead_of_dps" = ? skill("dotIsSpell", true), --"spell_damage_modifiers_apply_to_skill_dot" = ? diff --git a/Data/3_0/Skills/sup_dex.lua b/Data/3_0/Skills/sup_dex.lua index f2a21111..2926b2cc 100644 --- a/Data/3_0/Skills/sup_dex.lua +++ b/Data/3_0/Skills/sup_dex.lua @@ -8,15 +8,6 @@ local skills, mod, flag, skill = ... skills["SupportAddedColdDamage"] = { name = "Added Cold Damage", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -65,19 +56,20 @@ skills["SupportAddedColdDamage"] = { [28] = { 86, 367, 551, }, [29] = { 88, 404, 606, }, [30] = { 90, 444, 666, }, + [31] = { 91, 465, 698, }, + [32] = { 92, 487, 731, }, + [33] = { 93, 511, 766, }, + [34] = { 94, 535, 803, }, + [35] = { 95, 561, 841, }, + [36] = { 96, 587, 881, }, + [37] = { 97, 615, 923, }, + [38] = { 98, 644, 967, }, + [39] = { 99, 675, 1012, }, + [40] = { 100, 707, 1060, }, }, } skills["SupportAdditionalAccuracy"] = { name = "Additional Accuracy", - gemTags = { - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 40, - gemDex = 60, - gemInt = 0, description = "Supports attack skills.", color = 2, support = true, @@ -124,18 +116,20 @@ skills["SupportAdditionalAccuracy"] = { [28] = { 86, 1474, }, [29] = { 88, 1533, }, [30] = { 90, 1594, }, + [31] = { 91, 1624, }, + [32] = { 92, 1655, }, + [33] = { 93, 1686, }, + [34] = { 94, 1718, }, + [35] = { 95, 1750, }, + [36] = { 96, 1781, }, + [37] = { 97, 1814, }, + [38] = { 98, 1846, }, + [39] = { 99, 1878, }, + [40] = { 100, 1911, }, }, } skills["SupportBlind"] = { name = "Blind", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -183,18 +177,20 @@ skills["SupportBlind"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportBlockReduction"] = { name = "Block Chance Reduction", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -242,20 +238,20 @@ skills["SupportBlockReduction"] = { [28] = { 86, 34, 33, }, [29] = { 88, 34, 34, }, [30] = { 90, 35, 34, }, + [31] = { 91, 35, 34, }, + [32] = { 92, 35, 35, }, + [33] = { 93, 35, 35, }, + [34] = { 94, 36, 35, }, + [35] = { 95, 36, 35, }, + [36] = { 96, 36, 36, }, + [37] = { 97, 36, 36, }, + [38] = { 98, 37, 36, }, + [39] = { 99, 37, 36, }, + [40] = { 100, 37, 37, }, }, } skills["SupportCastOnCrit"] = { name = "Cast On Critical Strike", - gemTags = { - dexterity = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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 and skills that reserve mana cannot be triggered.", color = 2, support = true, @@ -307,20 +303,20 @@ skills["SupportCastOnCrit"] = { [28] = { 86, 47, }, [29] = { 88, 48, }, [30] = { 90, 49, }, + [31] = { 91, 49, }, + [32] = { 92, 50, }, + [33] = { 93, 50, }, + [34] = { 94, 51, }, + [35] = { 95, 51, }, + [36] = { 96, 52, }, + [37] = { 97, 52, }, + [38] = { 98, 53, }, + [39] = { 99, 53, }, + [40] = { 100, 54, }, }, } skills["SupportCastOnDeath"] = { name = "Cast on Death", - gemTags = { - dexterity = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Each supported spell skill will be triggered when you die. Cannot support skills used by totems, traps, or mines. Vaal skills and skills that reserve mana cannot be triggered.", color = 2, support = true, @@ -371,20 +367,20 @@ skills["SupportCastOnDeath"] = { [28] = { 86, 432, }, [29] = { 88, 448, }, [30] = { 90, 464, }, + [31] = { 91, 472, }, + [32] = { 92, 480, }, + [33] = { 93, 488, }, + [34] = { 94, 496, }, + [35] = { 95, 504, }, + [36] = { 96, 512, }, + [37] = { 97, 520, }, + [38] = { 98, 528, }, + [39] = { 99, 536, }, + [40] = { 100, 544, }, }, } skills["SupportChain"] = { name = "Chain", - gemTags = { - dexterity = true, - support = true, - chaining = true, - projectile = true, - }, - gemTagString = "Support, Chaining, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills, and any other skills that chain.", color = 2, support = true, @@ -433,18 +429,20 @@ skills["SupportChain"] = { [28] = { 86, -23, }, [29] = { 88, -22, }, [30] = { 90, -21, }, + [31] = { 91, -21, }, + [32] = { 92, -20, }, + [33] = { 93, -20, }, + [34] = { 94, -19, }, + [35] = { 95, -19, }, + [36] = { 96, -18, }, + [37] = { 97, -18, }, + [38] = { 98, -17, }, + [39] = { 99, -17, }, + [40] = { 100, -16, }, }, } skills["SupportChanceToFlee"] = { name = "Chance to Flee", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -491,19 +489,20 @@ skills["SupportChanceToFlee"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportClusterTrap"] = { name = "Cluster Traps", - gemTags = { - trap = true, - dexterity = true, - support = true, - }, - gemTagString = "Trap, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports traps skills, making them throw extra traps randomly around the targeted location.", color = 2, support = true, @@ -554,19 +553,20 @@ skills["SupportClusterTrap"] = { [28] = { 86, -28, }, [29] = { 88, -27, }, [30] = { 90, -26, }, + [31] = { 91, -26, }, + [32] = { 92, -25, }, + [33] = { 93, -25, }, + [34] = { 94, -24, }, + [35] = { 95, -24, }, + [36] = { 96, -23, }, + [37] = { 97, -23, }, + [38] = { 98, -22, }, + [39] = { 99, -22, }, + [40] = { 100, -21, }, }, } skills["SupportColdPenetration"] = { name = "Cold Penetration", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies, making those hits penetrate enemy cold resistance.", color = 2, support = true, @@ -614,18 +614,20 @@ skills["SupportColdPenetration"] = { [28] = { 86, 45, }, [29] = { 88, 46, }, [30] = { 90, 47, }, + [31] = { 91, 47, }, + [32] = { 92, 48, }, + [33] = { 93, 48, }, + [34] = { 94, 49, }, + [35] = { 95, 49, }, + [36] = { 96, 50, }, + [37] = { 97, 50, }, + [38] = { 98, 51, }, + [39] = { 99, 51, }, + [40] = { 100, 52, }, }, } skills["SupportCullingStrike"] = { name = "Culling Strike", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, @@ -677,18 +679,20 @@ skills["SupportCullingStrike"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportDeadlyAilments"] = { name = "Deadly Ailments", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -697,7 +701,7 @@ skills["SupportDeadlyAilments"] = { excludeSkillTypes = { }, baseMods = { mod("ManaCost", "MORE", 30), - mod("Damage", "MORE", -20, ModFlag.Hit), --"support_better_ailments_hit_damage_+%_final" = -20 + mod("Damage", "MORE", -10, ModFlag.Hit), --"support_better_ailments_hit_damage_+%_final" = -10 }, qualityMods = { mod("Damage", "INC", 0.5, ModFlag.Dot), --"damage_over_time_+%" = 0.5 @@ -707,49 +711,50 @@ skills["SupportDeadlyAilments"] = { [2] = mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Bleed, KeywordFlag.Poison, KeywordFlag.Ignite)), --"support_better_ailments_ailment_damage_+%_final" }, levels = { - [1] = { 18, 40, }, - [2] = { 22, 41, }, - [3] = { 26, 42, }, - [4] = { 29, 43, }, - [5] = { 32, 44, }, - [6] = { 35, 45, }, - [7] = { 38, 46, }, - [8] = { 41, 47, }, - [9] = { 44, 48, }, - [10] = { 47, 49, }, - [11] = { 50, 50, }, - [12] = { 53, 51, }, - [13] = { 56, 52, }, - [14] = { 58, 53, }, - [15] = { 60, 54, }, - [16] = { 62, 55, }, - [17] = { 64, 56, }, - [18] = { 66, 57, }, - [19] = { 68, 58, }, - [20] = { 70, 59, }, - [21] = { 72, 60, }, - [22] = { 74, 61, }, - [23] = { 76, 62, }, - [24] = { 78, 63, }, - [25] = { 80, 64, }, - [26] = { 82, 65, }, - [27] = { 84, 66, }, - [28] = { 86, 67, }, - [29] = { 88, 68, }, - [30] = { 90, 69, }, + [1] = { 18, 45, }, + [2] = { 22, 46, }, + [3] = { 26, 47, }, + [4] = { 29, 48, }, + [5] = { 32, 49, }, + [6] = { 35, 50, }, + [7] = { 38, 51, }, + [8] = { 41, 52, }, + [9] = { 44, 53, }, + [10] = { 47, 54, }, + [11] = { 50, 55, }, + [12] = { 53, 56, }, + [13] = { 56, 57, }, + [14] = { 58, 58, }, + [15] = { 60, 59, }, + [16] = { 62, 60, }, + [17] = { 64, 61, }, + [18] = { 66, 62, }, + [19] = { 68, 63, }, + [20] = { 70, 64, }, + [21] = { 72, 65, }, + [22] = { 74, 66, }, + [23] = { 76, 67, }, + [24] = { 78, 68, }, + [25] = { 80, 69, }, + [26] = { 82, 70, }, + [27] = { 84, 71, }, + [28] = { 86, 72, }, + [29] = { 88, 73, }, + [30] = { 90, 74, }, + [31] = { 91, 74, }, + [32] = { 92, 75, }, + [33] = { 93, 75, }, + [34] = { 94, 76, }, + [35] = { 95, 76, }, + [36] = { 96, 77, }, + [37] = { 97, 77, }, + [38] = { 98, 78, }, + [39] = { 99, 78, }, + [40] = { 100, 79, }, }, } skills["SupportAdditionalQuality"] = { name = "Enhance", - gemTags = { - low_max_level = true, - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill gem. Once this gem reaches level 2 or above, will raise the quality of supported gems. Cannot support skills that don't come from gems.", color = 2, support = true, @@ -782,15 +787,6 @@ skills["SupportAdditionalQuality"] = { } skills["SupportFasterAttack"] = { name = "Faster Attacks", - gemTags = { - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports attack skills.", color = 2, support = true, @@ -838,19 +834,20 @@ skills["SupportFasterAttack"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportFasterProjectiles"] = { name = "Faster Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills.", color = 2, support = true, @@ -900,19 +897,20 @@ skills["SupportFasterProjectiles"] = { [28] = { 86, 77, 33, }, [29] = { 88, 78, 34, }, [30] = { 90, 79, 34, }, + [31] = { 91, 79, 34, }, + [32] = { 92, 80, 35, }, + [33] = { 93, 80, 35, }, + [34] = { 94, 81, 35, }, + [35] = { 95, 81, 35, }, + [36] = { 96, 82, 36, }, + [37] = { 97, 82, 36, }, + [38] = { 98, 83, 36, }, + [39] = { 99, 83, 36, }, + [40] = { 100, 84, 37, }, }, } skills["SupportFork"] = { name = "Fork", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, @@ -961,23 +959,24 @@ skills["SupportFork"] = { [28] = { 86, -3, }, [29] = { 88, -2, }, [30] = { 90, -1, }, + [31] = { 91, -1, }, + [32] = { 92, 0, }, + [33] = { 93, 0, }, + [34] = { 94, 1, }, + [35] = { 95, 1, }, + [36] = { 96, 2, }, + [37] = { 97, 2, }, + [38] = { 98, 3, }, + [39] = { 99, 3, }, + [40] = { 100, 4, }, }, } skills["SupportGreaterMultipleProjectiles"] = { name = "Greater Multiple Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 54, 56, }, + requireSkillTypes = { 3, 54, 56, 73, }, addSkillTypes = { }, excludeSkillTypes = { }, baseMods = { @@ -1024,23 +1023,24 @@ skills["SupportGreaterMultipleProjectiles"] = { [28] = { 86, -22, }, [29] = { 88, -21, }, [30] = { 90, -21, }, + [31] = { 91, -21, }, + [32] = { 92, -20, }, + [33] = { 93, -20, }, + [34] = { 94, -20, }, + [35] = { 95, -20, }, + [36] = { 96, -19, }, + [37] = { 97, -19, }, + [38] = { 98, -19, }, + [39] = { 99, -19, }, + [40] = { 100, -18, }, }, } skills["SupportDamageAgainstChilled"] = { name = "Hypothermia", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, - description = "Supports any skill that hits enemies.", + description = "Supports any skill that deals damage.", color = 2, support = true, - requireSkillTypes = { 10, 1, }, + requireSkillTypes = { 10, 1, 40, }, addSkillTypes = { }, excludeSkillTypes = { }, baseMods = { @@ -1054,51 +1054,53 @@ skills["SupportDamageAgainstChilled"] = { levelMods = { [1] = nil, [2] = mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "ActorCondition", actor = "enemy", var = "Chilled" }), --"support_hypothermia_damage_+%_vs_chilled_enemies_final" + --[3] = "support_hypothermia_cold_damage_over_time_+%_final" }, levels = { - [1] = { 31, 20, }, - [2] = { 34, 21, }, - [3] = { 36, 22, }, - [4] = { 38, 23, }, - [5] = { 40, 24, }, - [6] = { 42, 25, }, - [7] = { 44, 26, }, - [8] = { 46, 27, }, - [9] = { 48, 28, }, - [10] = { 50, 29, }, - [11] = { 52, 30, }, - [12] = { 54, 31, }, - [13] = { 56, 32, }, - [14] = { 58, 33, }, - [15] = { 60, 34, }, - [16] = { 62, 35, }, - [17] = { 64, 36, }, - [18] = { 66, 37, }, - [19] = { 68, 38, }, - [20] = { 70, 39, }, - [21] = { 72, 40, }, - [22] = { 74, 41, }, - [23] = { 76, 42, }, - [24] = { 78, 43, }, - [25] = { 80, 44, }, - [26] = { 82, 45, }, - [27] = { 84, 46, }, - [28] = { 86, 47, }, - [29] = { 88, 48, }, - [30] = { 90, 49, }, + [1] = { 31, 20, 20, }, + [2] = { 34, 21, 21, }, + [3] = { 36, 22, 22, }, + [4] = { 38, 23, 23, }, + [5] = { 40, 24, 24, }, + [6] = { 42, 25, 25, }, + [7] = { 44, 26, 26, }, + [8] = { 46, 27, 27, }, + [9] = { 48, 28, 28, }, + [10] = { 50, 29, 29, }, + [11] = { 52, 30, 30, }, + [12] = { 54, 31, 31, }, + [13] = { 56, 32, 32, }, + [14] = { 58, 33, 33, }, + [15] = { 60, 34, 34, }, + [16] = { 62, 35, 35, }, + [17] = { 64, 36, 36, }, + [18] = { 66, 37, 37, }, + [19] = { 68, 38, 38, }, + [20] = { 70, 39, 39, }, + [21] = { 72, 40, 40, }, + [22] = { 74, 41, 41, }, + [23] = { 76, 42, 42, }, + [24] = { 78, 43, 43, }, + [25] = { 80, 44, 44, }, + [26] = { 82, 45, 45, }, + [27] = { 84, 46, 46, }, + [28] = { 86, 47, 47, }, + [29] = { 88, 48, 48, }, + [30] = { 90, 49, 49, }, + [31] = { 91, 49, 49, }, + [32] = { 92, 50, 50, }, + [33] = { 93, 50, 50, }, + [34] = { 94, 51, 51, }, + [35] = { 95, 51, 51, }, + [36] = { 96, 52, 52, }, + [37] = { 97, 52, 52, }, + [38] = { 98, 53, 53, }, + [39] = { 99, 53, 53, }, + [40] = { 100, 54, 54, }, }, } skills["SupportFrenzyChargeOnSlayingFrozenEnemy"] = { name = "Ice Bite", - gemTags = { - cold = true, - dexterity = true, - support = true, - }, - gemTagString = "Cold, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill you use to hit enemies yourself. Cannot support skills used by totems, traps, or mines.", color = 2, support = true, @@ -1151,23 +1153,24 @@ skills["SupportFrenzyChargeOnSlayingFrozenEnemy"] = { [28] = { 86, 77, 33, 50, 150, 224, }, [29] = { 88, 78, 37, 55, 164, 247, }, [30] = { 90, 79, 40, 60, 181, 271, }, + [31] = { 91, 79, 42, 63, 189, 284, }, + [32] = { 92, 80, 44, 66, 198, 298, }, + [33] = { 93, 80, 46, 69, 208, 312, }, + [34] = { 94, 81, 48, 73, 218, 327, }, + [35] = { 95, 81, 51, 76, 228, 342, }, + [36] = { 96, 82, 53, 80, 239, 359, }, + [37] = { 97, 82, 56, 83, 250, 376, }, + [38] = { 98, 83, 58, 87, 262, 394, }, + [39] = { 99, 83, 61, 92, 275, 412, }, + [40] = { 100, 84, 64, 96, 288, 432, }, }, } skills["SupportLesserMultipleProjectiles"] = { name = "Lesser Multiple Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills.", color = 2, support = true, - requireSkillTypes = { 3, 54, 56, }, + requireSkillTypes = { 3, 54, 56, 73, }, addSkillTypes = { }, excludeSkillTypes = { }, baseMods = { @@ -1214,19 +1217,20 @@ skills["SupportLesserMultipleProjectiles"] = { [28] = { 86, -12, }, [29] = { 88, -11, }, [30] = { 90, -11, }, + [31] = { 91, -11, }, + [32] = { 92, -10, }, + [33] = { 93, -10, }, + [34] = { 94, -10, }, + [35] = { 95, -10, }, + [36] = { 96, -9, }, + [37] = { 97, -9, }, + [38] = { 98, -9, }, + [39] = { 99, -9, }, + [40] = { 100, -8, }, }, } skills["SupportLesserPoison"] = { name = "Lesser Poison", - gemTags = { - chaos = true, - dexterity = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -1276,18 +1280,20 @@ skills["SupportLesserPoison"] = { [28] = { 86, 82, 123, }, [29] = { 88, 89, 133, }, [30] = { 90, 96, 144, }, + [31] = { 91, 100, 149, }, + [32] = { 92, 103, 155, }, + [33] = { 93, 107, 161, }, + [34] = { 94, 112, 167, }, + [35] = { 95, 116, 174, }, + [36] = { 96, 120, 180, }, + [37] = { 97, 125, 187, }, + [38] = { 98, 130, 194, }, + [39] = { 99, 135, 202, }, + [40] = { 100, 140, 210, }, }, } skills["SupportManaLeech"] = { name = "Mana Leech", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies, causing those hits to leech mana based on damage dealt.", color = 2, support = true, @@ -1335,21 +1341,20 @@ skills["SupportManaLeech"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportGemMirageArcher"] = { name = "Mirage Archer", - gemTags = { - bow = true, - attack = true, - dexterity = true, - support = true, - duration = true, - }, - gemTagString = "Bow, Attack, Support, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, 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, @@ -1403,19 +1408,20 @@ skills["SupportGemMirageArcher"] = { [28] = { 86, -3, }, [29] = { 88, -2, }, [30] = { 90, -1, }, + [31] = { 91, -1, }, + [32] = { 92, 0, }, + [33] = { 93, 0, }, + [34] = { 94, 1, }, + [35] = { 95, 1, }, + [36] = { 96, 2, }, + [37] = { 97, 2, }, + [38] = { 98, 3, }, + [39] = { 99, 3, }, + [40] = { 100, 4, }, }, } skills["SupportMultiTrap"] = { name = "Multiple Traps", - gemTags = { - dexterity = true, - support = true, - trap = true, - }, - gemTagString = "Support, Trap", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Supports traps skills, making them throw extra traps in a line.", color = 2, support = true, @@ -1423,7 +1429,7 @@ skills["SupportMultiTrap"] = { addSkillTypes = { }, excludeSkillTypes = { }, baseMods = { - mod("ManaCost", "MORE", 60), + mod("ManaCost", "MORE", 40), --"number_of_additional_traps_to_throw" = 2 mod("ActiveTrapLimit", "BASE", 3), --"number_of_additional_traps_allowed" = 3 }, @@ -1465,18 +1471,20 @@ skills["SupportMultiTrap"] = { [28] = { 86, -13, }, [29] = { 88, -12, }, [30] = { 90, -11, }, + [31] = { 91, -11, }, + [32] = { 92, -10, }, + [33] = { 93, -10, }, + [34] = { 94, -9, }, + [35] = { 95, -9, }, + [36] = { 96, -8, }, + [37] = { 97, -8, }, + [38] = { 98, -7, }, + [39] = { 99, -7, }, + [40] = { 100, -6, }, }, } skills["SupportOnslaught"] = { name = "Onslaught", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 40, - gemDex = 60, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -1525,20 +1533,20 @@ skills["SupportOnslaught"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportPhysicalProjectileAttackDamage"] = { name = "Physical Projectile Attack Damage", - gemTags = { - projectile = true, - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Projectile, Attack, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile attack skills.", color = 2, support = true, @@ -1588,19 +1596,20 @@ skills["SupportPhysicalProjectileAttackDamage"] = { [28] = { 86, 57, 57, }, [29] = { 88, 58, 58, }, [30] = { 90, 59, 59, }, + [31] = { 91, 59, 59, }, + [32] = { 92, 60, 60, }, + [33] = { 93, 60, 60, }, + [34] = { 94, 61, 61, }, + [35] = { 95, 61, 61, }, + [36] = { 96, 62, 62, }, + [37] = { 97, 62, 62, }, + [38] = { 98, 63, 63, }, + [39] = { 99, 63, 63, }, + [40] = { 100, 64, 64, }, }, } skills["SupportPierce"] = { name = "Pierce", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills.", color = 2, support = true, @@ -1649,20 +1658,20 @@ skills["SupportPierce"] = { [28] = { 86, 5, 27, }, [29] = { 88, 5, 28, }, [30] = { 90, 5, 29, }, + [31] = { 91, 5, 29, }, + [32] = { 92, 5, 30, }, + [33] = { 93, 5, 30, }, + [34] = { 94, 5, 31, }, + [35] = { 95, 5, 31, }, + [36] = { 96, 5, 32, }, + [37] = { 97, 5, 32, }, + [38] = { 98, 5, 33, }, + [39] = { 99, 5, 33, }, + [40] = { 100, 6, 34, }, }, } skills["SupportPointBlank"] = { name = "Point Blank", - gemTags = { - projectile = true, - attack = true, - dexterity = true, - support = true, - }, - gemTagString = "Projectile, Attack, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills.", color = 2, support = true, @@ -1711,19 +1720,20 @@ skills["SupportPointBlank"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportPoison"] = { name = "Poison", - gemTags = { - chaos = true, - dexterity = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -1772,19 +1782,20 @@ skills["SupportPoison"] = { [28] = { 86, 27, }, [29] = { 88, 28, }, [30] = { 90, 29, }, + [31] = { 91, 29, }, + [32] = { 92, 30, }, + [33] = { 93, 30, }, + [34] = { 94, 31, }, + [35] = { 95, 31, }, + [36] = { 96, 32, }, + [37] = { 97, 32, }, + [38] = { 98, 33, }, + [39] = { 99, 33, }, + [40] = { 100, 34, }, }, } skills["SupportRapidDecay"] = { name = "Swift Affliction", - gemTags = { - dexterity = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that has a duration, or can hit enemies to inflict ailments on them.", color = 2, support = true, @@ -1833,19 +1844,20 @@ skills["SupportRapidDecay"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportSlowerProjectiles"] = { name = "Slower Projectiles", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports projectile skills.", color = 2, support = true, @@ -1894,36 +1906,34 @@ skills["SupportSlowerProjectiles"] = { [28] = { 86, -57, 33, }, [29] = { 88, -58, 34, }, [30] = { 90, -59, 34, }, + [31] = { 91, -59, 34, }, + [32] = { 92, -60, 35, }, + [33] = { 93, -60, 35, }, + [34] = { 94, -61, 35, }, + [35] = { 95, -61, 35, }, + [36] = { 96, -62, 36, }, + [37] = { 97, -62, 36, }, + [38] = { 98, -63, 36, }, + [39] = { 99, -63, 36, }, + [40] = { 100, -64, 37, }, }, } skills["SupportTrap"] = { name = "Trap", - gemTags = { - dexterity = true, - support = true, - trap = true, - duration = true, - }, - gemTagString = "Support, Trap, Duration", - gemStr = 0, - gemDex = 60, - gemInt = 40, 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.", color = 2, support = true, requireSkillTypes = { 17, }, - addSkillTypes = { 12, 37, }, + addSkillTypes = { 37, }, excludeSkillTypes = { 61, }, addFlags = { trap = true, duration = true, }, baseMods = { - mod("ManaCost", "MORE", 40), - skill("cooldown", 4), + mod("ManaCost", "MORE", 10), --"is_trap" = 1 --"base_trap_duration" = 4000 - --"trap_override_pvp_scaling_time_ms" = 900 --"base_skill_is_trapped" = ? --"disable_skill_if_melee_attack" = ? skill("showAverage", true, { type = "SkillType", skillType = SkillType.SkillCanTrap }), --"base_skill_show_average_damage_instead_of_dps" = ? @@ -1934,60 +1944,61 @@ skills["SupportTrap"] = { }, levelMods = { [1] = nil, - [2] = mod("Damage", "MORE", nil, 0, KeywordFlag.Trap), --"support_trap_damage_+%_final" + [2] = mod("TrapThrowingSpeed", "INC", nil), --"trap_throwing_speed_+%" }, levels = { - [1] = { 8, 20, }, - [2] = { 10, 21, }, - [3] = { 13, 22, }, - [4] = { 17, 23, }, - [5] = { 21, 24, }, - [6] = { 25, 25, }, - [7] = { 29, 26, }, - [8] = { 33, 27, }, - [9] = { 37, 28, }, - [10] = { 40, 29, }, - [11] = { 43, 30, }, - [12] = { 46, 31, }, - [13] = { 49, 32, }, - [14] = { 52, 33, }, - [15] = { 55, 34, }, - [16] = { 58, 35, }, - [17] = { 61, 36, }, - [18] = { 64, 37, }, - [19] = { 67, 38, }, - [20] = { 70, 39, }, - [21] = { 72, 40, }, - [22] = { 74, 41, }, - [23] = { 76, 42, }, - [24] = { 78, 43, }, - [25] = { 80, 44, }, - [26] = { 82, 45, }, - [27] = { 84, 46, }, - [28] = { 86, 47, }, - [29] = { 88, 48, }, - [30] = { 90, 49, }, + [1] = { 8, 0, }, + [2] = { 10, 1, }, + [3] = { 13, 1, }, + [4] = { 17, 2, }, + [5] = { 21, 2, }, + [6] = { 25, 3, }, + [7] = { 29, 3, }, + [8] = { 33, 4, }, + [9] = { 37, 4, }, + [10] = { 40, 5, }, + [11] = { 43, 5, }, + [12] = { 46, 6, }, + [13] = { 49, 6, }, + [14] = { 52, 7, }, + [15] = { 55, 7, }, + [16] = { 58, 8, }, + [17] = { 61, 8, }, + [18] = { 64, 9, }, + [19] = { 67, 9, }, + [20] = { 70, 10, }, + [21] = { 72, 10, }, + [22] = { 74, 11, }, + [23] = { 76, 11, }, + [24] = { 78, 12, }, + [25] = { 80, 12, }, + [26] = { 82, 13, }, + [27] = { 84, 13, }, + [28] = { 86, 14, }, + [29] = { 88, 14, }, + [30] = { 90, 15, }, + [31] = { 91, 15, }, + [32] = { 92, 15, }, + [33] = { 93, 15, }, + [34] = { 94, 16, }, + [35] = { 95, 16, }, + [36] = { 96, 16, }, + [37] = { 97, 16, }, + [38] = { 98, 17, }, + [39] = { 99, 17, }, + [40] = { 100, 17, }, }, } skills["SupportTrapCooldown"] = { - name = "Trap Cooldown", - gemTags = { - trap = true, - dexterity = true, - support = true, - }, - gemTagString = "Trap, Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, - description = "Supports trap skills.", + name = "Advanced Traps", + description = "Supports skills which throw traps.", color = 2, support = true, requireSkillTypes = { 37, }, addSkillTypes = { }, excludeSkillTypes = { }, baseMods = { - mod("ManaCost", "MORE", 10), + mod("ManaCost", "MORE", 20), }, qualityMods = { mod("Damage", "INC", 0.5, 0, KeywordFlag.Trap), --"trap_damage_+%" = 0.5 @@ -1995,52 +2006,54 @@ skills["SupportTrapCooldown"] = { levelMods = { [1] = nil, [2] = mod("CooldownRecovery", "INC", nil, 0, KeywordFlag.Trap), --"placing_traps_cooldown_recovery_+%" + [3] = mod("Duration", "INC", nil), --"skill_effect_duration_+%" + [4] = mod("TrapThrowingSpeed", "INC", nil), --"trap_throwing_speed_+%" }, levels = { - [1] = { 31, 30, }, - [2] = { 34, 31, }, - [3] = { 36, 32, }, - [4] = { 38, 33, }, - [5] = { 40, 34, }, - [6] = { 42, 35, }, - [7] = { 44, 36, }, - [8] = { 46, 37, }, - [9] = { 48, 38, }, - [10] = { 50, 39, }, - [11] = { 52, 40, }, - [12] = { 54, 41, }, - [13] = { 56, 42, }, - [14] = { 58, 43, }, - [15] = { 60, 44, }, - [16] = { 62, 45, }, - [17] = { 64, 46, }, - [18] = { 66, 47, }, - [19] = { 68, 48, }, - [20] = { 70, 49, }, - [21] = { 72, 50, }, - [22] = { 74, 51, }, - [23] = { 76, 52, }, - [24] = { 78, 53, }, - [25] = { 80, 54, }, - [26] = { 82, 55, }, - [27] = { 84, 56, }, - [28] = { 86, 57, }, - [29] = { 88, 58, }, - [30] = { 90, 59, }, + [1] = { 31, 15, 10, 15, }, + [2] = { 34, 16, 11, 16, }, + [3] = { 36, 16, 12, 17, }, + [4] = { 38, 17, 13, 18, }, + [5] = { 40, 17, 14, 19, }, + [6] = { 42, 18, 15, 20, }, + [7] = { 44, 18, 16, 21, }, + [8] = { 46, 19, 17, 22, }, + [9] = { 48, 19, 18, 23, }, + [10] = { 50, 20, 19, 24, }, + [11] = { 52, 20, 20, 25, }, + [12] = { 54, 21, 21, 26, }, + [13] = { 56, 21, 22, 27, }, + [14] = { 58, 22, 23, 28, }, + [15] = { 60, 22, 24, 29, }, + [16] = { 62, 23, 25, 30, }, + [17] = { 64, 23, 26, 31, }, + [18] = { 66, 24, 27, 32, }, + [19] = { 68, 24, 28, 33, }, + [20] = { 70, 25, 29, 34, }, + [21] = { 72, 25, 30, 35, }, + [22] = { 74, 26, 31, 36, }, + [23] = { 76, 26, 32, 37, }, + [24] = { 78, 27, 33, 38, }, + [25] = { 80, 27, 34, 39, }, + [26] = { 82, 28, 35, 40, }, + [27] = { 84, 28, 36, 41, }, + [28] = { 86, 29, 37, 42, }, + [29] = { 88, 29, 38, 43, }, + [30] = { 90, 30, 39, 44, }, + [31] = { 91, 30, 39, 44, }, + [32] = { 92, 30, 40, 45, }, + [33] = { 93, 30, 40, 45, }, + [34] = { 94, 31, 41, 46, }, + [35] = { 95, 31, 41, 46, }, + [36] = { 96, 31, 42, 47, }, + [37] = { 97, 31, 42, 47, }, + [38] = { 98, 32, 43, 48, }, + [39] = { 99, 32, 43, 48, }, + [40] = { 100, 32, 44, 49, }, }, } skills["SupportTrapAndMineDamage"] = { name = "Trap and Mine Damage", - gemTags = { - dexterity = true, - support = true, - trap = true, - mine = true, - }, - gemTagString = "Support, Trap, Mine", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Supports trap or mine skills.", color = 2, support = true, @@ -2060,48 +2073,50 @@ skills["SupportTrapAndMineDamage"] = { [2] = mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Trap, KeywordFlag.Mine)), --"support_trap_and_mine_damage_+%_final" }, levels = { - [1] = { 18, 20, }, - [2] = { 22, 21, }, - [3] = { 26, 22, }, - [4] = { 29, 23, }, - [5] = { 32, 24, }, - [6] = { 35, 25, }, - [7] = { 38, 26, }, - [8] = { 41, 27, }, - [9] = { 44, 28, }, - [10] = { 47, 29, }, - [11] = { 50, 30, }, - [12] = { 53, 31, }, - [13] = { 56, 32, }, - [14] = { 58, 33, }, - [15] = { 60, 34, }, - [16] = { 62, 35, }, - [17] = { 64, 36, }, - [18] = { 66, 37, }, - [19] = { 68, 38, }, - [20] = { 70, 39, }, - [21] = { 72, 40, }, - [22] = { 74, 41, }, - [23] = { 76, 42, }, - [24] = { 78, 43, }, - [25] = { 80, 44, }, - [26] = { 82, 45, }, - [27] = { 84, 46, }, - [28] = { 86, 47, }, - [29] = { 88, 48, }, - [30] = { 90, 49, }, + [1] = { 18, 30, }, + [2] = { 22, 31, }, + [3] = { 26, 32, }, + [4] = { 29, 33, }, + [5] = { 32, 34, }, + [6] = { 35, 35, }, + [7] = { 38, 36, }, + [8] = { 41, 37, }, + [9] = { 44, 38, }, + [10] = { 47, 39, }, + [11] = { 50, 40, }, + [12] = { 53, 41, }, + [13] = { 56, 42, }, + [14] = { 58, 43, }, + [15] = { 60, 44, }, + [16] = { 62, 45, }, + [17] = { 64, 46, }, + [18] = { 66, 47, }, + [19] = { 68, 48, }, + [20] = { 70, 49, }, + [21] = { 72, 50, }, + [22] = { 74, 51, }, + [23] = { 76, 52, }, + [24] = { 78, 53, }, + [25] = { 80, 54, }, + [26] = { 82, 55, }, + [27] = { 84, 56, }, + [28] = { 86, 57, }, + [29] = { 88, 58, }, + [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportDebilitate"] = { name = "Vile Toxins", - gemTags = { - dexterity = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 2, support = true, @@ -2151,19 +2166,20 @@ skills["SupportDebilitate"] = { [28] = { 86, 57, 11, }, [29] = { 88, 58, 11, }, [30] = { 90, 59, 11, }, + [31] = { 91, 59, 11, }, + [32] = { 92, 60, 12, }, + [33] = { 93, 60, 12, }, + [34] = { 94, 61, 12, }, + [35] = { 95, 61, 12, }, + [36] = { 96, 62, 12, }, + [37] = { 97, 62, 12, }, + [38] = { 98, 63, 12, }, + [39] = { 99, 63, 12, }, + [40] = { 100, 64, 12, }, }, } skills["SupportVoidManipulation"] = { name = "Void Manipulation", - gemTags = { - chaos = true, - dexterity = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 60, - gemInt = 40, description = "Supports any skill that deals damage.", color = 2, support = true, @@ -2212,19 +2228,20 @@ skills["SupportVoidManipulation"] = { [28] = { 86, 47, }, [29] = { 88, 48, }, [30] = { 90, 49, }, + [31] = { 91, 49, }, + [32] = { 92, 50, }, + [33] = { 93, 50, }, + [34] = { 94, 51, }, + [35] = { 95, 51, }, + [36] = { 96, 52, }, + [37] = { 97, 52, }, + [38] = { 98, 53, }, + [39] = { 99, 53, }, + [40] = { 100, 54, }, }, } skills["SupportParallelProjectiles"] = { name = "Volley", - gemTags = { - dexterity = true, - support = true, - projectile = true, - }, - gemTagString = "Support, Projectile", - gemStr = 0, - gemDex = 100, - gemInt = 0, description = "Supports skills that fire projectiles from the user. Does not affect projectiles fired from other locations as secondary effects.", color = 2, support = true, @@ -2275,5 +2292,15 @@ skills["SupportParallelProjectiles"] = { [28] = { 86, -12, }, [29] = { 88, -11, }, [30] = { 90, -11, }, + [31] = { 91, -11, }, + [32] = { 92, -10, }, + [33] = { 93, -10, }, + [34] = { 94, -10, }, + [35] = { 95, -10, }, + [36] = { 96, -9, }, + [37] = { 97, -9, }, + [38] = { 98, -9, }, + [39] = { 99, -9, }, + [40] = { 100, -8, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/sup_int.lua b/Data/3_0/Skills/sup_int.lua index cd4f7ec5..6c73108c 100644 --- a/Data/3_0/Skills/sup_int.lua +++ b/Data/3_0/Skills/sup_int.lua @@ -8,15 +8,6 @@ local skills, mod, flag, skill = ... skills["SupportAddedChaosDamage"] = { name = "Added Chaos Damage", - gemTags = { - chaos = true, - intelligence = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -35,7 +26,7 @@ skills["SupportAddedChaosDamage"] = { [3] = mod("ChaosMax", "BASE", nil), --"global_maximum_added_chaos_damage" }, levels = { - [1] = { 31, 18, 26, }, + [1] = { 31, 17, 26, }, [2] = { 34, 21, 32, }, [3] = { 36, 24, 36, }, [4] = { 38, 27, 41, }, @@ -46,7 +37,7 @@ skills["SupportAddedChaosDamage"] = { [9] = { 48, 50, 75, }, [10] = { 50, 56, 84, }, [11] = { 52, 63, 94, }, - [12] = { 54, 71, 106, }, + [12] = { 54, 70, 106, }, [13] = { 56, 79, 118, }, [14] = { 58, 88, 132, }, [15] = { 60, 99, 148, }, @@ -54,7 +45,7 @@ skills["SupportAddedChaosDamage"] = { [17] = { 64, 123, 185, }, [18] = { 66, 137, 206, }, [19] = { 68, 153, 229, }, - [20] = { 70, 170, 256, }, + [20] = { 70, 170, 255, }, [21] = { 72, 190, 284, }, [22] = { 74, 211, 316, }, [23] = { 76, 234, 352, }, @@ -65,19 +56,20 @@ skills["SupportAddedChaosDamage"] = { [28] = { 86, 395, 592, }, [29] = { 88, 438, 657, }, [30] = { 90, 485, 728, }, + [31] = { 91, 510, 766, }, + [32] = { 92, 537, 806, }, + [33] = { 93, 565, 848, }, + [34] = { 94, 595, 892, }, + [35] = { 95, 626, 938, }, + [36] = { 96, 658, 987, }, + [37] = { 97, 692, 1038, }, + [38] = { 98, 728, 1092, }, + [39] = { 99, 766, 1149, }, + [40] = { 100, 805, 1208, }, }, } skills["SupportAddedLightningDamage"] = { name = "Added Lightning Damage", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -126,20 +118,20 @@ skills["SupportAddedLightningDamage"] = { [28] = { 86, 47, 889, }, [29] = { 88, 52, 980, }, [30] = { 90, 57, 1080, }, + [31] = { 91, 60, 1133, }, + [32] = { 92, 63, 1189, }, + [33] = { 93, 66, 1248, }, + [34] = { 94, 69, 1309, }, + [35] = { 95, 72, 1373, }, + [36] = { 96, 76, 1440, }, + [37] = { 97, 79, 1510, }, + [38] = { 98, 83, 1584, }, + [39] = { 99, 87, 1661, }, + [40] = { 100, 92, 1742, }, }, } skills["SupportArcaneSurge"] = { name = "Arcane Surge", - gemTags = { - intelligence = true, - support = true, - spell = true, - duration = true, - }, - gemTagString = "Support, Spell, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, @@ -191,20 +183,20 @@ skills["SupportArcaneSurge"] = { [28] = { 86, 24, 23, 1.2, 1070, }, [29] = { 88, 24, 24, 1.3, 1187, }, [30] = { 90, 25, 24, 1.3, 1312, }, + [31] = { 91, 25, 24, 1.3, 1379, }, + [32] = { 92, 25, 25, 1.3, 1446, }, + [33] = { 93, 25, 25, 1.35, 1518, }, + [34] = { 94, 26, 25, 1.4, 1590, }, + [35] = { 95, 26, 25, 1.4, 1666, }, + [36] = { 96, 26, 26, 1.4, 1743, }, + [37] = { 97, 26, 26, 1.4, 1824, }, + [38] = { 98, 27, 26, 1.4, 1906, }, + [39] = { 99, 27, 26, 1.45, 1992, }, + [40] = { 100, 27, 27, 1.5, 2078, }, }, } skills["SupportBlasphemy"] = { name = "Blasphemy", - gemTags = { - intelligence = true, - support = true, - curse = true, - aura = true, - }, - gemTagString = "Support, Curse, Aura", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, @@ -254,20 +246,20 @@ skills["SupportBlasphemy"] = { [28] = { 86, 108, }, [29] = { 88, 112, }, [30] = { 90, 116, }, + [31] = { 91, 118, }, + [32] = { 92, 120, }, + [33] = { 93, 122, }, + [34] = { 94, 124, }, + [35] = { 95, 126, }, + [36] = { 96, 128, }, + [37] = { 97, 130, }, + [38] = { 98, 132, }, + [39] = { 99, 134, }, + [40] = { 100, 136, }, }, } skills["SupportCastOnStunned"] = { name = "Cast when Stunned", - gemTags = { - intelligence = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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 and skills that reserve mana cannot be triggered.", color = 3, support = true, @@ -317,20 +309,20 @@ skills["SupportCastOnStunned"] = { [28] = { 86, 77, }, [29] = { 88, 78, }, [30] = { 90, 79, }, + [31] = { 91, 79, }, + [32] = { 92, 80, }, + [33] = { 93, 80, }, + [34] = { 94, 81, }, + [35] = { 95, 81, }, + [36] = { 96, 82, }, + [37] = { 97, 82, }, + [38] = { 98, 83, }, + [39] = { 99, 83, }, + [40] = { 100, 84, }, }, } skills["SupportCastWhileChannelling"] = { name = "Cast while Channelling", - gemTags = { - intelligence = true, - support = true, - channelling = true, - spell = true, - }, - gemTagString = "Support, Channelling, Spell", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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, @@ -380,19 +372,20 @@ skills["SupportCastWhileChannelling"] = { [28] = { 86, 0.31, 13, }, [29] = { 88, 0.31, 14, }, [30] = { 90, 0.3, 14, }, + [31] = { 91, 0.3, 14, }, + [32] = { 92, 0.3, 15, }, + [33] = { 93, 0.3, 15, }, + [34] = { 94, 0.29, 15, }, + [35] = { 95, 0.29, 15, }, + [36] = { 96, 0.29, 16, }, + [37] = { 97, 0.29, 16, }, + [38] = { 98, 0.28, 16, }, + [39] = { 99, 0.28, 16, }, + [40] = { 100, 0.28, 17, }, }, } skills["SupportChanceToIgnite"] = { - name = "Chance to Ignite", - gemTags = { - fire = true, - intelligence = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, + name = "Combustion", description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -409,51 +402,53 @@ skills["SupportChanceToIgnite"] = { [1] = nil, [2] = mod("EnemyIgniteChance", "BASE", nil), --"base_chance_to_ignite_%" [3] = mod("FireDamage", "MORE", nil), --"support_chance_to_ignite_fire_damage_+%_final" + --[4] = "ignites_apply_fire_resistance_+" }, levels = { - [1] = { 8, 30, 10, }, - [2] = { 10, 31, 11, }, - [3] = { 13, 32, 12, }, - [4] = { 17, 33, 13, }, - [5] = { 21, 34, 14, }, - [6] = { 25, 35, 15, }, - [7] = { 29, 36, 16, }, - [8] = { 33, 37, 17, }, - [9] = { 37, 38, 18, }, - [10] = { 40, 39, 19, }, - [11] = { 43, 40, 20, }, - [12] = { 46, 41, 21, }, - [13] = { 49, 42, 22, }, - [14] = { 52, 43, 23, }, - [15] = { 55, 44, 24, }, - [16] = { 58, 45, 25, }, - [17] = { 61, 46, 26, }, - [18] = { 64, 47, 27, }, - [19] = { 67, 48, 28, }, - [20] = { 70, 49, 29, }, - [21] = { 72, 50, 30, }, - [22] = { 74, 51, 31, }, - [23] = { 76, 52, 32, }, - [24] = { 78, 53, 33, }, - [25] = { 80, 54, 34, }, - [26] = { 82, 55, 35, }, - [27] = { 84, 56, 36, }, - [28] = { 86, 57, 37, }, - [29] = { 88, 58, 38, }, - [30] = { 90, 59, 39, }, + [1] = { 8, 30, 10, -10, }, + [2] = { 10, 31, 11, -10, }, + [3] = { 13, 32, 12, -11, }, + [4] = { 17, 33, 13, -11, }, + [5] = { 21, 34, 14, -12, }, + [6] = { 25, 35, 15, -12, }, + [7] = { 29, 36, 16, -13, }, + [8] = { 33, 37, 17, -13, }, + [9] = { 37, 38, 18, -14, }, + [10] = { 40, 39, 19, -14, }, + [11] = { 43, 40, 20, -15, }, + [12] = { 46, 41, 21, -15, }, + [13] = { 49, 42, 22, -16, }, + [14] = { 52, 43, 23, -16, }, + [15] = { 55, 44, 24, -17, }, + [16] = { 58, 45, 25, -17, }, + [17] = { 61, 46, 26, -18, }, + [18] = { 64, 47, 27, -18, }, + [19] = { 67, 48, 28, -19, }, + [20] = { 70, 49, 29, -19, }, + [21] = { 72, 50, 30, -20, }, + [22] = { 74, 51, 31, -20, }, + [23] = { 76, 52, 32, -21, }, + [24] = { 78, 53, 33, -21, }, + [25] = { 80, 54, 34, -22, }, + [26] = { 82, 55, 35, -22, }, + [27] = { 84, 56, 36, -23, }, + [28] = { 86, 57, 37, -23, }, + [29] = { 88, 58, 38, -24, }, + [30] = { 90, 59, 39, -24, }, + [31] = { 91, 59, 39, -24, }, + [32] = { 92, 60, 40, -25, }, + [33] = { 93, 60, 40, -25, }, + [34] = { 94, 61, 41, -25, }, + [35] = { 95, 61, 41, -25, }, + [36] = { 96, 62, 42, -26, }, + [37] = { 97, 62, 42, -26, }, + [38] = { 98, 63, 43, -26, }, + [39] = { 99, 63, 43, -26, }, + [40] = { 100, 64, 44, -27, }, }, } skills["SupportConcentratedEffect"] = { name = "Concentrated Effect", - gemTags = { - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Support, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill with an area of effect, regardless of whether that skill deals damage.", color = 3, support = true, @@ -502,19 +497,20 @@ skills["SupportConcentratedEffect"] = { [28] = { 86, 62, }, [29] = { 88, 63, }, [30] = { 90, 64, }, + [31] = { 91, 64, }, + [32] = { 92, 65, }, + [33] = { 93, 65, }, + [34] = { 94, 66, }, + [35] = { 95, 66, }, + [36] = { 96, 67, }, + [37] = { 97, 67, }, + [38] = { 98, 68, }, + [39] = { 99, 68, }, + [40] = { 100, 69, }, }, } skills["SupportControlledDestruction"] = { name = "Controlled Destruction", - gemTags = { - spell = true, - intelligence = true, - support = true, - }, - gemTagString = "Spell, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports attack skills, or spell skills that deal damage.", color = 3, support = true, @@ -563,20 +559,20 @@ skills["SupportControlledDestruction"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportCurseOnHit"] = { name = "Curse On Hit", - gemTags = { - curse = true, - trigger = true, - intelligence = true, - support = true, - }, - gemTagString = "Curse, Trigger, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, @@ -625,19 +621,20 @@ skills["SupportCurseOnHit"] = { [28] = { 86, 4, }, [29] = { 88, 6, }, [30] = { 90, 8, }, + [31] = { 91, 9, }, + [32] = { 92, 10, }, + [33] = { 93, 11, }, + [34] = { 94, 12, }, + [35] = { 95, 13, }, + [36] = { 96, 14, }, + [37] = { 97, 15, }, + [38] = { 98, 16, }, + [39] = { 99, 17, }, + [40] = { 100, 18, }, }, } skills["SupportDecay"] = { name = "Decay", - gemTags = { - chaos = true, - intelligence = true, - support = true, - }, - gemTagString = "Chaos, Support", - gemStr = 0, - gemDex = 40, - gemInt = 60, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -685,19 +682,20 @@ skills["SupportDecay"] = { [28] = { 86, 1658, }, [29] = { 88, 1851, }, [30] = { 90, 2066, }, + [31] = { 91, 2182, }, + [32] = { 92, 2305, }, + [33] = { 93, 2434, }, + [34] = { 94, 2571, }, + [35] = { 95, 2714, }, + [36] = { 96, 2866, }, + [37] = { 97, 3025, }, + [38] = { 98, 3193, }, + [39] = { 99, 3371, }, + [40] = { 100, 3557, }, }, } skills["SupportEfficacy"] = { name = "Efficacy", - gemTags = { - intelligence = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that deals damage or has a duration.", color = 3, support = true, @@ -746,19 +744,21 @@ skills["SupportEfficacy"] = { [27] = { 84, 23, 28, 18, }, [28] = { 86, 24, 28, 19, }, [29] = { 88, 24, 29, 19, }, - [30] = { 90, 30, 29, 19, }, + [30] = { 90, 25, 29, 19, }, + [31] = { 91, 25, 29, 19, }, + [32] = { 92, 25, 30, 20, }, + [33] = { 93, 25, 30, 20, }, + [34] = { 94, 26, 30, 20, }, + [35] = { 95, 26, 30, 20, }, + [36] = { 96, 26, 31, 20, }, + [37] = { 97, 26, 31, 20, }, + [38] = { 98, 27, 31, 21, }, + [39] = { 99, 27, 31, 21, }, + [40] = { 100, 27, 32, 21, }, }, } skills["SupportElementalFocus"] = { name = "Elemental Focus", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits or burns enemies.", color = 3, support = true, @@ -807,22 +807,20 @@ skills["SupportElementalFocus"] = { [28] = { 86, 57, }, [29] = { 88, 58, }, [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportElementalProliferation"] = { name = "Elemental Proliferation", - gemTags = { - cold = true, - fire = true, - lightning = true, - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Cold, Fire, Lightning, Support, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies, or could otherwise apply elemental ailments.", color = 3, support = true, @@ -831,7 +829,6 @@ skills["SupportElementalProliferation"] = { excludeSkillTypes = { }, baseMods = { mod("ManaCost", "MORE", 10), - --"elemental_status_effect_aura_radius" = 10 { mod("EnemyFreezeChance", "BASE", 20), mod("EnemyShockChance", "BASE", 20), mod("EnemyIgniteChance", "BASE", 20) }, --"chance_to_freeze_shock_ignite_%" = 20 --"display_what_elemental_proliferation_does" = ? }, @@ -840,52 +837,54 @@ skills["SupportElementalProliferation"] = { }, levelMods = { [1] = nil, - [2] = { mod("EnemyIgniteDuration", "INC", nil), mod("EnemyShockDuration", "INC", nil), mod("EnemyChillDuration", "INC", nil), mod("EnemyFreezeDuration", "INC", nil) }, --"base_elemental_status_ailment_duration_+%" + --[2] = "elemental_status_effect_aura_radius" + [3] = { mod("EnemyIgniteDuration", "INC", nil), mod("EnemyShockDuration", "INC", nil), mod("EnemyChillDuration", "INC", nil), mod("EnemyFreezeDuration", "INC", nil) }, --"base_elemental_status_ailment_duration_+%" }, levels = { - [1] = { 1, 0, }, - [2] = { 2, 1, }, - [3] = { 4, 2, }, - [4] = { 7, 3, }, - [5] = { 11, 4, }, - [6] = { 16, 5, }, - [7] = { 20, 6, }, - [8] = { 24, 7, }, - [9] = { 28, 8, }, - [10] = { 32, 9, }, - [11] = { 36, 10, }, - [12] = { 40, 11, }, - [13] = { 44, 12, }, - [14] = { 48, 13, }, - [15] = { 52, 14, }, - [16] = { 56, 15, }, - [17] = { 60, 16, }, - [18] = { 64, 17, }, - [19] = { 67, 18, }, - [20] = { 70, 19, }, - [21] = { 72, 20, }, - [22] = { 74, 21, }, - [23] = { 76, 22, }, - [24] = { 78, 23, }, - [25] = { 80, 24, }, - [26] = { 82, 25, }, - [27] = { 84, 26, }, - [28] = { 86, 27, }, - [29] = { 88, 28, }, - [30] = { 90, 29, }, + [1] = { 1, 12, 0, }, + [2] = { 2, 12, 1, }, + [3] = { 4, 12, 2, }, + [4] = { 7, 12, 3, }, + [5] = { 11, 12, 4, }, + [6] = { 16, 13, 5, }, + [7] = { 20, 13, 6, }, + [8] = { 24, 13, 7, }, + [9] = { 28, 13, 8, }, + [10] = { 32, 13, 9, }, + [11] = { 36, 14, 10, }, + [12] = { 40, 14, 11, }, + [13] = { 44, 14, 12, }, + [14] = { 48, 14, 13, }, + [15] = { 52, 14, 14, }, + [16] = { 56, 15, 15, }, + [17] = { 60, 15, 16, }, + [18] = { 64, 15, 17, }, + [19] = { 67, 15, 18, }, + [20] = { 70, 15, 19, }, + [21] = { 72, 16, 20, }, + [22] = { 74, 16, 21, }, + [23] = { 76, 16, 22, }, + [24] = { 78, 16, 23, }, + [25] = { 80, 16, 24, }, + [26] = { 82, 17, 25, }, + [27] = { 84, 17, 26, }, + [28] = { 86, 17, 27, }, + [29] = { 88, 17, 28, }, + [30] = { 90, 17, 29, }, + [31] = { 91, 17, 29, }, + [32] = { 92, 18, 30, }, + [33] = { 93, 18, 30, }, + [34] = { 94, 18, 31, }, + [35] = { 95, 18, 31, }, + [36] = { 96, 18, 32, }, + [37] = { 97, 18, 32, }, + [38] = { 98, 18, 33, }, + [39] = { 99, 18, 33, }, + [40] = { 100, 18, 34, }, }, } skills["SupportAdditionalXP"] = { name = "Enlighten", - gemTags = { - low_max_level = true, - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill gem. Once this gem reaches level 2 or above, will apply a mana multiplier to supported gems. Cannot support skills that don't come from gems.", color = 3, support = true, @@ -917,15 +916,6 @@ skills["SupportAdditionalXP"] = { } skills["SupportFasterCast"] = { name = "Faster Casting", - gemTags = { - intelligence = true, - support = true, - spell = true, - }, - gemTagString = "Support, Spell", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports spell skills.", color = 3, support = true, @@ -973,20 +963,20 @@ skills["SupportFasterCast"] = { [28] = { 86, 47, }, [29] = { 88, 48, }, [30] = { 90, 49, }, + [31] = { 91, 49, }, + [32] = { 92, 50, }, + [33] = { 93, 50, }, + [34] = { 94, 51, }, + [35] = { 95, 51, }, + [36] = { 96, 52, }, + [37] = { 97, 52, }, + [38] = { 98, 53, }, + [39] = { 99, 53, }, + [40] = { 100, 54, }, }, } skills["SupportIgniteProliferation"] = { name = "Ignite Proliferation", - gemTags = { - fire = true, - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Fire, Support, AoE", - gemStr = 40, - gemDex = 0, - gemInt = 60, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -1005,49 +995,50 @@ skills["SupportIgniteProliferation"] = { [3] = mod("Damage", "MORE", nil, 0, KeywordFlag.Ignite), --"support_ignite_prolif_ignite_damage_+%_final" }, levels = { - [1] = { 38, 14, 0, }, - [2] = { 40, 14, 1, }, - [3] = { 42, 14, 2, }, - [4] = { 44, 14, 3, }, - [5] = { 46, 14, 4, }, - [6] = { 48, 14, 5, }, - [7] = { 50, 14, 6, }, - [8] = { 52, 14, 7, }, - [9] = { 54, 14, 8, }, - [10] = { 56, 15, 9, }, - [11] = { 58, 15, 10, }, - [12] = { 60, 15, 11, }, - [13] = { 62, 15, 12, }, - [14] = { 64, 15, 13, }, - [15] = { 65, 15, 14, }, - [16] = { 66, 15, 15, }, - [17] = { 67, 15, 16, }, - [18] = { 68, 15, 17, }, - [19] = { 69, 15, 18, }, - [20] = { 70, 16, 19, }, - [21] = { 72, 16, 20, }, - [22] = { 74, 16, 21, }, - [23] = { 76, 16, 22, }, - [24] = { 78, 16, 23, }, - [25] = { 80, 16, 24, }, - [26] = { 82, 16, 25, }, - [27] = { 84, 16, 26, }, - [28] = { 86, 16, 27, }, - [29] = { 88, 16, 28, }, - [30] = { 90, 16, 29, }, + [1] = { 38, 14, 20, }, + [2] = { 40, 14, 21, }, + [3] = { 42, 14, 22, }, + [4] = { 44, 15, 23, }, + [5] = { 46, 15, 24, }, + [6] = { 48, 15, 25, }, + [7] = { 50, 16, 26, }, + [8] = { 52, 16, 27, }, + [9] = { 54, 16, 28, }, + [10] = { 56, 17, 29, }, + [11] = { 58, 17, 30, }, + [12] = { 60, 17, 31, }, + [13] = { 62, 18, 32, }, + [14] = { 64, 18, 33, }, + [15] = { 65, 18, 34, }, + [16] = { 66, 19, 35, }, + [17] = { 67, 19, 36, }, + [18] = { 68, 19, 37, }, + [19] = { 69, 20, 38, }, + [20] = { 70, 20, 39, }, + [21] = { 72, 20, 40, }, + [22] = { 74, 21, 41, }, + [23] = { 76, 21, 42, }, + [24] = { 78, 21, 43, }, + [25] = { 80, 22, 44, }, + [26] = { 82, 22, 45, }, + [27] = { 84, 22, 46, }, + [28] = { 86, 23, 47, }, + [29] = { 88, 23, 48, }, + [30] = { 90, 23, 49, }, + [31] = { 91, 23, 49, }, + [32] = { 92, 24, 50, }, + [33] = { 93, 24, 50, }, + [34] = { 94, 24, 51, }, + [35] = { 95, 24, 51, }, + [36] = { 96, 24, 52, }, + [37] = { 97, 24, 52, }, + [38] = { 98, 25, 53, }, + [39] = { 99, 25, 53, }, + [40] = { 100, 25, 54, }, }, } skills["SupportImmolation"] = { name = "Immolate", - gemTags = { - fire = true, - intelligence = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 40, - gemDex = 0, - gemInt = 60, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -1062,8 +1053,8 @@ skills["SupportImmolation"] = { }, levelMods = { [1] = nil, - [2] = mod("FireMin", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Burning" }), --"support_minimum_added_fire_damage_vs_burning_enemies" - [3] = mod("FireMax", "BASE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Burning" }), --"support_maximum_added_fire_damage_vs_burning_enemies" + --[2] = "global_minimum_added_fire_damage_vs_burning_enemies" + --[3] = "global_maximum_added_fire_damage_vs_burning_enemies" }, levels = { [1] = { 38, 42, 63, }, @@ -1096,19 +1087,20 @@ skills["SupportImmolation"] = { [28] = { 86, 421, 631, }, [29] = { 88, 459, 689, }, [30] = { 90, 501, 752, }, + [31] = { 91, 523, 785, }, + [32] = { 92, 547, 820, }, + [33] = { 93, 571, 856, }, + [34] = { 94, 596, 894, }, + [35] = { 95, 622, 933, }, + [36] = { 96, 649, 974, }, + [37] = { 97, 678, 1017, }, + [38] = { 98, 707, 1061, }, + [39] = { 99, 738, 1107, }, + [40] = { 100, 770, 1155, }, }, } skills["SupportIncreasedAreaOfEffect"] = { name = "Increased Area of Effect", - gemTags = { - intelligence = true, - support = true, - area = true, - }, - gemTagString = "Support, AoE", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill with an area of effect.", color = 3, support = true, @@ -1156,18 +1148,20 @@ skills["SupportIncreasedAreaOfEffect"] = { [28] = { 86, 57, }, [29] = { 88, 58, }, [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportIncreasedCriticalDamage"] = { name = "Increased Critical Damage", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -1215,18 +1209,20 @@ skills["SupportIncreasedCriticalDamage"] = { [28] = { 86, 115, }, [29] = { 88, 117, }, [30] = { 90, 118, }, + [31] = { 91, 119, }, + [32] = { 92, 120, }, + [33] = { 93, 120, }, + [34] = { 94, 121, }, + [35] = { 95, 122, }, + [36] = { 96, 123, }, + [37] = { 97, 124, }, + [38] = { 98, 124, }, + [39] = { 99, 125, }, + [40] = { 100, 126, }, }, } skills["SupportIncreasedCriticalStrikes"] = { name = "Increased Critical Strikes", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -1275,20 +1271,20 @@ skills["SupportIncreasedCriticalStrikes"] = { [28] = { 86, 104, 2.3, }, [29] = { 88, 106, 2.4, }, [30] = { 90, 108, 2.4, }, + [31] = { 91, 109, 2.4, }, + [32] = { 92, 110, 2.5, }, + [33] = { 93, 111, 2.5, }, + [34] = { 94, 112, 2.5, }, + [35] = { 95, 113, 2.5, }, + [36] = { 96, 114, 2.6, }, + [37] = { 97, 115, 2.6, }, + [38] = { 98, 116, 2.6, }, + [39] = { 99, 117, 2.6, }, + [40] = { 100, 118, 2.7, }, }, } skills["SupportOnslaughtOnSlayingShockedEnemy"] = { name = "Innervate", - gemTags = { - lightning = true, - intelligence = true, - support = true, - duration = true, - }, - gemTagString = "Lightning, Support, Duration", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill you use to hit enemies yourself. Cannot support skills used by totems, traps, or mines", color = 3, support = true, @@ -1342,18 +1338,20 @@ skills["SupportOnslaughtOnSlayingShockedEnemy"] = { [28] = { 86, 25, 483, 17, 322, }, [29] = { 88, 28, 532, 19, 355, }, [30] = { 90, 31, 586, 21, 391, }, + [31] = { 91, 32, 615, 22, 410, }, + [32] = { 92, 34, 645, 23, 430, }, + [33] = { 93, 36, 677, 24, 452, }, + [34] = { 94, 37, 711, 25, 474, }, + [35] = { 95, 39, 745, 26, 497, }, + [36] = { 96, 41, 782, 27, 521, }, + [37] = { 97, 43, 820, 29, 547, }, + [38] = { 98, 45, 860, 30, 573, }, + [39] = { 99, 47, 902, 32, 601, }, + [40] = { 100, 50, 946, 33, 630, }, }, } skills["SupportItemRarity"] = { name = "Item Rarity", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that can kill enemies.", color = 3, support = true, @@ -1400,19 +1398,20 @@ skills["SupportItemRarity"] = { [28] = { 86, 67, }, [29] = { 88, 68, }, [30] = { 90, 69, }, + [31] = { 91, 69, }, + [32] = { 92, 70, }, + [33] = { 93, 70, }, + [34] = { 94, 71, }, + [35] = { 95, 71, }, + [36] = { 96, 72, }, + [37] = { 97, 72, }, + [38] = { 98, 73, }, + [39] = { 99, 73, }, + [40] = { 100, 74, }, }, } skills["SupportLightningPenetration"] = { name = "Lightning Penetration", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies, making those hits penetrate enemy lightning resistance.", color = 3, support = true, @@ -1460,20 +1459,21 @@ skills["SupportLightningPenetration"] = { [28] = { 86, 45, }, [29] = { 88, 46, }, [30] = { 90, 47, }, + [31] = { 91, 47, }, + [32] = { 92, 48, }, + [33] = { 93, 48, }, + [34] = { 94, 49, }, + [35] = { 95, 49, }, + [36] = { 96, 50, }, + [37] = { 97, 50, }, + [38] = { 98, 51, }, + [39] = { 99, 51, }, + [40] = { 100, 52, }, }, } skills["SupportMinefield"] = { name = "Minefield", - gemTags = { - intelligence = true, - support = true, - mine = true, - }, - gemTagString = "Support, Mine", - gemStr = 0, - gemDex = 40, - gemInt = 60, - description = "Supports mine skills.", + description = "Supports skills which place mines.", color = 3, support = true, requireSkillTypes = { 41, }, @@ -1522,19 +1522,20 @@ skills["SupportMinefield"] = { [28] = { 86, -13, }, [29] = { 88, -12, }, [30] = { 90, -11, }, + [31] = { 91, -11, }, + [32] = { 92, -10, }, + [33] = { 93, -10, }, + [34] = { 94, -9, }, + [35] = { 95, -9, }, + [36] = { 96, -8, }, + [37] = { 97, -8, }, + [38] = { 98, -7, }, + [39] = { 99, -7, }, + [40] = { 100, -6, }, }, } skills["SupportMinionDamage"] = { name = "Minion Damage", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports minion skills.", color = 3, support = true, @@ -1582,19 +1583,20 @@ skills["SupportMinionDamage"] = { [28] = { 86, 57, }, [29] = { 88, 58, }, [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportMinionLife"] = { name = "Minion Life", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports minion skills.", color = 3, support = true, @@ -1642,20 +1644,20 @@ skills["SupportMinionLife"] = { [28] = { 86, 57, }, [29] = { 88, 58, }, [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportMinionSpeed"] = { name = "Minion Speed", - gemTags = { - movement = true, - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Movement, Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports minion skills.", color = 3, support = true, @@ -1705,19 +1707,20 @@ skills["SupportMinionSpeed"] = { [28] = { 86, 52, 23, 23, }, [29] = { 88, 53, 24, 24, }, [30] = { 90, 54, 24, 24, }, + [31] = { 91, 54, 24, 24, }, + [32] = { 92, 55, 25, 25, }, + [33] = { 93, 55, 25, 25, }, + [34] = { 94, 56, 25, 25, }, + [35] = { 95, 56, 25, 25, }, + [36] = { 96, 57, 26, 26, }, + [37] = { 97, 57, 26, 26, }, + [38] = { 98, 58, 26, 26, }, + [39] = { 99, 58, 26, 26, }, + [40] = { 100, 59, 27, 27, }, }, } skills["SupportSummonElementalResistances"] = { name = "Minion and Totem Elemental Resistance", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 40, - gemDex = 0, - gemInt = 60, description = "Supports minion or totem skills.", color = 3, support = true, @@ -1770,19 +1773,20 @@ skills["SupportSummonElementalResistances"] = { [28] = { 86, 52, 52, 52, 23, }, [29] = { 88, 53, 53, 53, 24, }, [30] = { 90, 54, 54, 54, 24, }, + [31] = { 91, 54, 54, 54, 24, }, + [32] = { 92, 55, 55, 55, 25, }, + [33] = { 93, 55, 55, 55, 25, }, + [34] = { 94, 56, 56, 56, 25, }, + [35] = { 95, 56, 56, 56, 25, }, + [36] = { 96, 57, 57, 57, 26, }, + [37] = { 97, 57, 57, 57, 26, }, + [38] = { 98, 58, 58, 58, 26, }, + [39] = { 99, 58, 58, 58, 26, }, + [40] = { 100, 59, 59, 59, 27, }, }, } skills["SupportPhysicalToLightning"] = { name = "Physical to Lightning", - gemTags = { - lightning = true, - intelligence = true, - support = true, - }, - gemTagString = "Lightning, Support", - gemStr = 40, - gemDex = 0, - gemInt = 60, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -1832,18 +1836,20 @@ skills["SupportPhysicalToLightning"] = { [28] = { 86, 37, }, [29] = { 88, 38, }, [30] = { 90, 39, }, + [31] = { 91, 39, }, + [32] = { 92, 40, }, + [33] = { 93, 40, }, + [34] = { 94, 41, }, + [35] = { 95, 41, }, + [36] = { 96, 42, }, + [37] = { 97, 42, }, + [38] = { 98, 43, }, + [39] = { 99, 43, }, + [40] = { 100, 44, }, }, } skills["SupportPowerChargeOnCrit"] = { name = "Power Charge On Critical", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -1852,6 +1858,7 @@ skills["SupportPowerChargeOnCrit"] = { excludeSkillTypes = { }, baseMods = { mod("ManaCost", "MORE", 10), + --"support_power_charge_on_crit_damage_+%_final_per_power_charge" = 4 }, qualityMods = { mod("CritChance", "INC", 1, 0, 0, nil), --"critical_strike_chance_+%" = 1 @@ -1891,25 +1898,25 @@ skills["SupportPowerChargeOnCrit"] = { [28] = { 86, 62, }, [29] = { 88, 63, }, [30] = { 90, 64, }, + [31] = { 91, 64, }, + [32] = { 92, 65, }, + [33] = { 93, 65, }, + [34] = { 94, 66, }, + [35] = { 95, 66, }, + [36] = { 96, 67, }, + [37] = { 97, 67, }, + [38] = { 98, 68, }, + [39] = { 99, 68, }, + [40] = { 100, 69, }, }, } skills["SupportRemoteMine"] = { name = "Remote Mine", - gemTags = { - intelligence = true, - support = true, - mine = true, - duration = true, - }, - gemTagString = "Support, Mine, Duration", - gemStr = 0, - gemDex = 40, - gemInt = 60, 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.", color = 3, support = true, requireSkillTypes = { 19, }, - addSkillTypes = { 12, 41, }, + addSkillTypes = { 41, }, excludeSkillTypes = { 61, }, addFlags = { mine = true, @@ -1962,20 +1969,20 @@ skills["SupportRemoteMine"] = { [28] = { 86, 57, }, [29] = { 88, 58, }, [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportSpellCascade"] = { name = "Spell Cascade", - gemTags = { - area = true, - spell = true, - intelligence = true, - support = true, - }, - gemTagString = "AoE, Spell, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, @@ -2025,19 +2032,20 @@ skills["SupportSpellCascade"] = { [28] = { 86, -12, -23, }, [29] = { 88, -11, -22, }, [30] = { 90, -11, -21, }, + [31] = { 91, -11, -21, }, + [32] = { 92, -10, -20, }, + [33] = { 93, -10, -20, }, + [34] = { 94, -10, -19, }, + [35] = { 95, -10, -19, }, + [36] = { 96, -9, -18, }, + [37] = { 97, -9, -18, }, + [38] = { 98, -9, -17, }, + [39] = { 99, -9, -17, }, + [40] = { 100, -8, -16, }, }, } skills["SupportMulticast"] = { name = "Spell Echo", - gemTags = { - spell = true, - intelligence = true, - support = true, - }, - gemTagString = "Spell, Support", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports spell skills, making them repeat when cast. Cannot support Vaal skills, totem skills, channelling skills, triggered skills, or skills which reserve mana.", color = 3, support = true, @@ -2087,20 +2095,20 @@ skills["SupportMulticast"] = { [28] = { 86, 78, }, [29] = { 88, 79, }, [30] = { 90, 80, }, + [31] = { 91, 80, }, + [32] = { 92, 81, }, + [33] = { 93, 81, }, + [34] = { 94, 82, }, + [35] = { 95, 82, }, + [36] = { 96, 83, }, + [37] = { 97, 83, }, + [38] = { 98, 84, }, + [39] = { 99, 84, }, + [40] = { 100, 85, }, }, } skills["SupportStormBarrier"] = { name = "Storm Barrier", - gemTags = { - lightning = true, - intelligence = true, - support = true, - channelling = true, - }, - gemTagString = "Lightning, Support, Channelling", - gemStr = 0, - gemDex = 0, - gemInt = 100, description = "Supports any channelling skill, protecting you from damage while you channel it. Cannot support Minions that channel skills.", color = 3, support = true, @@ -2150,19 +2158,20 @@ skills["SupportStormBarrier"] = { [28] = { 86, -15, -14, 77, }, [29] = { 88, -15, -15, 78, }, [30] = { 90, -15, -15, 79, }, + [31] = { 91, -15, -15, 79, }, + [32] = { 92, -16, -15, 80, }, + [33] = { 93, -16, -15, 80, }, + [34] = { 94, -16, -15, 81, }, + [35] = { 95, -16, -15, 81, }, + [36] = { 96, -16, -16, 82, }, + [37] = { 97, -16, -16, 82, }, + [38] = { 98, -16, -16, 83, }, + [39] = { 99, -16, -16, 83, }, + [40] = { 100, -17, -16, 84, }, }, } skills["SupportSummonGhostOnKill"] = { name = "Summon Phantasm on Kill", - gemTags = { - intelligence = true, - support = true, - minion = true, - }, - gemTagString = "Support, Minion", - gemStr = 0, - gemDex = 0, - gemInt = 100, 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, @@ -2219,18 +2228,20 @@ skills["SupportSummonGhostOnKill"] = { [28] = { 86, 77, 12, }, [29] = { 88, 78, 12, }, [30] = { 90, 79, 12, }, + [31] = { 91, 79, 12, }, + [32] = { 92, 80, 13, }, + [33] = { 93, 80, 13, }, + [34] = { 94, 81, 13, }, + [35] = { 95, 81, 13, }, + [36] = { 96, 82, 13, }, + [37] = { 97, 82, 13, }, + [38] = { 98, 83, 13, }, + [39] = { 99, 83, 13, }, + [40] = { 100, 84, 13, }, }, } skills["SupportAilments"] = { name = "Unbound Ailments", - gemTags = { - intelligence = true, - support = true, - }, - gemTagString = "Support", - gemStr = 0, - gemDex = 40, - gemInt = 60, description = "Supports any skill that hits enemies.", color = 3, support = true, @@ -2280,5 +2291,15 @@ skills["SupportAilments"] = { [28] = { 86, 52, 34, 34, }, [29] = { 88, 53, 34, 34, }, [30] = { 90, 54, 35, 35, }, + [31] = { 91, 54, 35, 35, }, + [32] = { 92, 55, 35, 35, }, + [33] = { 93, 55, 35, 35, }, + [34] = { 94, 56, 36, 36, }, + [35] = { 95, 56, 36, 36, }, + [36] = { 96, 57, 36, 36, }, + [37] = { 97, 57, 36, 36, }, + [38] = { 98, 58, 37, 37, }, + [39] = { 99, 58, 37, 37, }, + [40] = { 100, 59, 37, 37, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/sup_str.lua b/Data/3_0/Skills/sup_str.lua index a220ea77..96941988 100644 --- a/Data/3_0/Skills/sup_str.lua +++ b/Data/3_0/Skills/sup_str.lua @@ -8,15 +8,6 @@ local skills, mod, flag, skill = ... skills["SupportAddedFireDamage"] = { name = "Added Fire Damage", - gemTags = { - fire = true, - strength = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 1, support = true, @@ -64,26 +55,26 @@ skills["SupportAddedFireDamage"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportSpiritStrike"] = { name = "Ancestral Call", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - }, - gemTagString = "Support, Melee, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports single-target melee attack skills, causing them to attack multiple targets simultaneously. 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, }, addSkillTypes = { }, - excludeSkillTypes = { 47, }, + excludeSkillTypes = { 47, 43, }, baseMods = { mod("ManaCost", "MORE", 40), --"melee_attack_number_of_spirit_strikes" = 2 @@ -126,18 +117,20 @@ skills["SupportSpiritStrike"] = { [28] = { 86, -12, }, [29] = { 88, -11, }, [30] = { 90, -11, }, + [31] = { 91, -11, }, + [32] = { 92, -10, }, + [33] = { 93, -10, }, + [34] = { 94, -10, }, + [35] = { 95, -10, }, + [36] = { 96, -9, }, + [37] = { 97, -9, }, + [38] = { 98, -9, }, + [39] = { 99, -9, }, + [40] = { 100, -8, }, }, } skills["SupportBloodMagic"] = { name = "Blood Magic", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill.", color = 1, support = true, @@ -185,20 +178,20 @@ skills["SupportBloodMagic"] = { [28] = { 86, 72, }, [29] = { 88, 69, }, [30] = { 90, 66, }, + [31] = { 91, 64, }, + [32] = { 92, 63, }, + [33] = { 93, 62, }, + [34] = { 94, 60, }, + [35] = { 95, 58, }, + [36] = { 96, 57, }, + [37] = { 97, 56, }, + [38] = { 98, 54, }, + [39] = { 99, 52, }, + [40] = { 100, 51, }, }, } skills["SupportBloodlust"] = { name = "Bloodlust", - gemTags = { - attack = true, - strength = true, - support = true, - melee = true, - }, - gemTagString = "Attack, Support, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, @@ -247,18 +240,20 @@ skills["SupportBloodlust"] = { [28] = { 86, 67, }, [29] = { 88, 68, }, [30] = { 90, 69, }, + [31] = { 91, 69, }, + [32] = { 92, 70, }, + [33] = { 93, 70, }, + [34] = { 94, 71, }, + [35] = { 95, 71, }, + [36] = { 96, 72, }, + [37] = { 97, 72, }, + [38] = { 98, 73, }, + [39] = { 99, 73, }, + [40] = { 100, 74, }, }, } skills["SupportBrutality"] = { name = "Brutality", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 1, support = true, @@ -308,19 +303,20 @@ skills["SupportBrutality"] = { [28] = { 86, 67, }, [29] = { 88, 68, }, [30] = { 90, 69, }, + [31] = { 91, 69, }, + [32] = { 92, 70, }, + [33] = { 93, 70, }, + [34] = { 94, 71, }, + [35] = { 95, 71, }, + [36] = { 96, 72, }, + [37] = { 97, 72, }, + [38] = { 98, 73, }, + [39] = { 99, 73, }, + [40] = { 100, 74, }, }, } skills["SupportIncreasedBurningDamage"] = { name = "Burning Damage", - gemTags = { - fire = true, - strength = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 60, - gemDex = 0, - gemInt = 40, description = "Supports any skill that hits enemies, or can deal burning damage directly.", color = 1, support = true, @@ -368,22 +364,20 @@ skills["SupportIncreasedBurningDamage"] = { [28] = { 86, 62, }, [29] = { 88, 63, }, [30] = { 90, 64, }, + [31] = { 91, 64, }, + [32] = { 92, 65, }, + [33] = { 93, 65, }, + [34] = { 94, 66, }, + [35] = { 95, 66, }, + [36] = { 96, 67, }, + [37] = { 97, 67, }, + [38] = { 98, 68, }, + [39] = { 99, 68, }, + [40] = { 100, 69, }, }, } skills["SupportCastOnMeleeKill"] = { name = "Cast on Melee Kill", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Melee, Attack, Spell, Trigger", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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 and skills that reserve mana cannot be triggered.", color = 1, support = true, @@ -434,20 +428,20 @@ skills["SupportCastOnMeleeKill"] = { [28] = { 86, 47, }, [29] = { 88, 48, }, [30] = { 90, 49, }, + [31] = { 91, 49, }, + [32] = { 92, 50, }, + [33] = { 93, 50, }, + [34] = { 94, 51, }, + [35] = { 95, 51, }, + [36] = { 96, 52, }, + [37] = { 97, 52, }, + [38] = { 98, 53, }, + [39] = { 99, 53, }, + [40] = { 100, 54, }, }, } skills["SupportCastOnDamageTaken"] = { name = "Cast when Damage Taken", - gemTags = { - strength = true, - support = true, - spell = true, - trigger = true, - }, - gemTagString = "Support, Spell, Trigger", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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 and skills that reserve mana cannot be triggered.", color = 1, support = true, @@ -500,19 +494,20 @@ skills["SupportCastOnDamageTaken"] = { [28] = { 86, 6800, 38, 86, }, [29] = { 88, 7380, 42, 88, }, [30] = { 90, 7990, 46, 90, }, + [31] = { 91, 8310, 48, 91, }, + [32] = { 92, 8630, 50, 92, }, + [33] = { 93, 8965, 52, 93, }, + [34] = { 94, 9300, 54, 94, }, + [35] = { 95, 9650, 56, 95, }, + [36] = { 96, 10000, 58, 96, }, + [37] = { 97, 10365, 60, 97, }, + [38] = { 98, 10730, 62, 98, }, + [39] = { 99, 11110, 64, 99, }, + [40] = { 100, 11490, 66, 100, }, }, } skills["SupportChanceToBleed"] = { name = "Chance to Bleed", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports attack skills. Cannot support minion skills.", color = 1, support = true, @@ -563,20 +558,20 @@ skills["SupportChanceToBleed"] = { [28] = { 86, 83, 124, 37, }, [29] = { 88, 89, 134, 38, }, [30] = { 90, 96, 145, 39, }, + [31] = { 91, 100, 150, 39, }, + [32] = { 92, 104, 156, 40, }, + [33] = { 93, 108, 162, 40, }, + [34] = { 94, 112, 168, 41, }, + [35] = { 95, 117, 175, 41, }, + [36] = { 96, 121, 182, 42, }, + [37] = { 97, 126, 188, 42, }, + [38] = { 98, 130, 196, 43, }, + [39] = { 99, 135, 203, 43, }, + [40] = { 100, 141, 211, 44, }, }, } skills["SupportColdToFire"] = { name = "Cold to Fire", - gemTags = { - cold = true, - fire = true, - strength = true, - support = true, - }, - gemTagString = "Cold, Fire, Support", - gemStr = 60, - gemDex = 0, - gemInt = 40, description = "Supports any skill that hits enemies.", color = 1, support = true, @@ -626,19 +621,20 @@ skills["SupportColdToFire"] = { [28] = { 86, 37, }, [29] = { 88, 38, }, [30] = { 90, 39, }, + [31] = { 91, 39, }, + [32] = { 92, 40, }, + [33] = { 93, 40, }, + [34] = { 94, 41, }, + [35] = { 95, 41, }, + [36] = { 96, 42, }, + [37] = { 97, 42, }, + [38] = { 98, 43, }, + [39] = { 99, 43, }, + [40] = { 100, 44, }, }, } skills["SupportMeleeDamageOnFullLife"] = { name = "Damage on Full Life", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports attack skills, providing a bonus to all damage dealt by those skills while your life is full.", color = 1, support = true, @@ -686,19 +682,20 @@ skills["SupportMeleeDamageOnFullLife"] = { [28] = { 86, 57, }, [29] = { 88, 58, }, [30] = { 90, 59, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 60, }, + [34] = { 94, 61, }, + [35] = { 95, 61, }, + [36] = { 96, 62, }, + [37] = { 97, 62, }, + [38] = { 98, 63, }, + [39] = { 99, 63, }, + [40] = { 100, 64, }, }, } skills["SupportWeaponElementalDamage"] = { name = "Elemental Damage with Attacks", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 60, - gemDex = 0, - gemInt = 40, description = "Supports attack skills.", color = 1, support = true, @@ -746,19 +743,20 @@ skills["SupportWeaponElementalDamage"] = { [28] = { 86, 62, }, [29] = { 88, 63, }, [30] = { 90, 64, }, + [31] = { 91, 64, }, + [32] = { 92, 65, }, + [33] = { 93, 65, }, + [34] = { 94, 66, }, + [35] = { 95, 66, }, + [36] = { 96, 67, }, + [37] = { 97, 67, }, + [38] = { 98, 68, }, + [39] = { 99, 68, }, + [40] = { 100, 69, }, }, } skills["SupportAdditionalLevel"] = { name = "Empower", - gemTags = { - low_max_level = true, - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill gem. Once this gem reaches level 2 or above, will raise the level of supported gems. Cannot support skills that don't come from gems.", color = 1, support = true, @@ -791,16 +789,6 @@ skills["SupportAdditionalLevel"] = { } skills["EnduranceChargeOnMeleeStun"] = { name = "Endurance Charge on Melee Stun", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - }, - gemTagString = "Support, Melee, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports melee attack skills.", color = 1, support = true, @@ -809,7 +797,7 @@ skills["EnduranceChargeOnMeleeStun"] = { excludeSkillTypes = { }, baseMods = { mod("ManaCost", "MORE", 10), - mod("Damage", "MORE", 3, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), --"endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" = 3 + mod("Damage", "MORE", 4, 0, 0, { type = "Multiplier", var = "EnduranceCharge" }), --"endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" = 4 --"gain_endurance_charge_on_melee_stun" = ? }, qualityMods = { @@ -850,19 +838,20 @@ skills["EnduranceChargeOnMeleeStun"] = { [28] = { 86, -27, }, [29] = { 88, -28, }, [30] = { 90, -29, }, + [31] = { 91, -29, }, + [32] = { 92, -30, }, + [33] = { 93, -30, }, + [34] = { 94, -31, }, + [35] = { 95, -31, }, + [36] = { 96, -32, }, + [37] = { 97, -32, }, + [38] = { 98, -33, }, + [39] = { 99, -33, }, + [40] = { 100, -34, }, }, } skills["SupportFirePenetration"] = { name = "Fire Penetration", - gemTags = { - fire = true, - strength = true, - support = true, - }, - gemTagString = "Fire, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that hits enemies, making those hits penetrate enemy fire resistance.", color = 1, support = true, @@ -910,20 +899,20 @@ skills["SupportFirePenetration"] = { [28] = { 86, 45, }, [29] = { 88, 46, }, [30] = { 90, 47, }, + [31] = { 91, 47, }, + [32] = { 92, 48, }, + [33] = { 93, 48, }, + [34] = { 94, 49, }, + [35] = { 95, 49, }, + [36] = { 96, 50, }, + [37] = { 97, 50, }, + [38] = { 98, 51, }, + [39] = { 99, 51, }, + [40] = { 100, 52, }, }, } skills["SupportFortify"] = { name = "Fortify", - gemTags = { - attack = true, - strength = true, - support = true, - melee = true, - }, - gemTagString = "Attack, Support, Melee", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports melee attack skills that are not triggered.", color = 1, support = true, @@ -973,19 +962,20 @@ skills["SupportFortify"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportGenerosity"] = { name = "Generosity", - gemTags = { - strength = true, - support = true, - aura = true, - }, - gemTagString = "Support, Aura", - gemStr = 60, - gemDex = 0, - gemInt = 40, 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, @@ -1033,19 +1023,20 @@ skills["SupportGenerosity"] = { [28] = { 86, 47, }, [29] = { 88, 48, }, [30] = { 90, 49, }, + [31] = { 91, 49, }, + [32] = { 92, 50, }, + [33] = { 93, 50, }, + [34] = { 94, 51, }, + [35] = { 95, 51, }, + [36] = { 96, 52, }, + [37] = { 97, 52, }, + [38] = { 98, 53, }, + [39] = { 99, 53, }, + [40] = { 100, 54, }, }, } skills["SupportIncreasedDuration"] = { name = "Increased Duration", - gemTags = { - strength = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill with a duration.", color = 1, support = true, @@ -1093,19 +1084,20 @@ skills["SupportIncreasedDuration"] = { [28] = { 86, 72, }, [29] = { 88, 73, }, [30] = { 90, 74, }, + [31] = { 91, 74, }, + [32] = { 92, 75, }, + [33] = { 93, 75, }, + [34] = { 94, 76, }, + [35] = { 95, 76, }, + [36] = { 96, 77, }, + [37] = { 97, 77, }, + [38] = { 98, 78, }, + [39] = { 99, 78, }, + [40] = { 100, 79, }, }, } skills["SupportIronGrip"] = { name = "Iron Grip", - gemTags = { - projectile = true, - strength = true, - support = true, - }, - gemTagString = "Projectile, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, @@ -1153,19 +1145,20 @@ skills["SupportIronGrip"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportIronWill"] = { name = "Iron Will", - gemTags = { - spell = true, - strength = true, - support = true, - }, - gemTagString = "Spell, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports spell skills, making the increase to physical melee damage from strength also increase their spell damage.", color = 1, support = true, @@ -1213,18 +1206,20 @@ skills["SupportIronWill"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportItemQuantity"] = { name = "Item Quantity", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that can kill enemies.", color = 1, support = true, @@ -1271,18 +1266,20 @@ skills["SupportItemQuantity"] = { [28] = { 86, 44, }, [29] = { 88, 45, }, [30] = { 90, 46, }, + [31] = { 91, 46, }, + [32] = { 92, 47, }, + [33] = { 93, 47, }, + [34] = { 94, 48, }, + [35] = { 95, 48, }, + [36] = { 96, 49, }, + [37] = { 97, 49, }, + [38] = { 98, 50, }, + [39] = { 99, 50, }, + [40] = { 100, 51, }, }, } skills["SupportKnockback"] = { name = "Knockback", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that hits enemies.", color = 1, support = true, @@ -1330,19 +1327,20 @@ skills["SupportKnockback"] = { [28] = { 86, 52, }, [29] = { 88, 53, }, [30] = { 90, 54, }, + [31] = { 91, 54, }, + [32] = { 92, 55, }, + [33] = { 93, 55, }, + [34] = { 94, 56, }, + [35] = { 95, 56, }, + [36] = { 96, 57, }, + [37] = { 97, 57, }, + [38] = { 98, 58, }, + [39] = { 99, 58, }, + [40] = { 100, 59, }, }, } skills["SupportReducedDuration"] = { name = "Less Duration", - gemTags = { - strength = true, - support = true, - duration = true, - }, - gemTagString = "Support, Duration", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that has a duration.", color = 1, support = true, @@ -1391,19 +1389,20 @@ skills["SupportReducedDuration"] = { [28] = { 86, -53, 23, }, [29] = { 88, -54, 24, }, [30] = { 90, -54, 24, }, + [31] = { 91, -54, 24, }, + [32] = { 92, -55, 25, }, + [33] = { 93, -55, 25, }, + [34] = { 94, -55, 25, }, + [35] = { 95, -55, 25, }, + [36] = { 96, -56, 26, }, + [37] = { 97, -56, 26, }, + [38] = { 98, -56, 26, }, + [39] = { 99, -56, 26, }, + [40] = { 100, -57, 27, }, }, } skills["SupportLifeGainOnHit"] = { name = "Life Gain on Hit", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports attack skills.", color = 1, support = true, @@ -1451,18 +1450,20 @@ skills["SupportLifeGainOnHit"] = { [28] = { 86, 60, }, [29] = { 88, 62, }, [30] = { 90, 64, }, + [31] = { 91, 65, }, + [32] = { 92, 66, }, + [33] = { 93, 67, }, + [34] = { 94, 68, }, + [35] = { 95, 69, }, + [36] = { 96, 70, }, + [37] = { 97, 71, }, + [38] = { 98, 72, }, + [39] = { 99, 73, }, + [40] = { 100, 74, }, }, } skills["SupportLifeLeech"] = { name = "Life Leech", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that hits enemies, causing those hits to leech life based on damage dealt.", color = 1, support = true, @@ -1511,19 +1512,20 @@ skills["SupportLifeLeech"] = { [28] = { 86, 54, }, [29] = { 88, 56, }, [30] = { 90, 58, }, + [31] = { 91, 59, }, + [32] = { 92, 60, }, + [33] = { 93, 61, }, + [34] = { 94, 62, }, + [35] = { 95, 63, }, + [36] = { 96, 64, }, + [37] = { 97, 65, }, + [38] = { 98, 66, }, + [39] = { 99, 67, }, + [40] = { 100, 68, }, }, } skills["SupportMaim"] = { name = "Maim", - gemTags = { - attack = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports attack skills.", color = 1, support = true, @@ -1573,20 +1575,20 @@ skills["SupportMaim"] = { [28] = { 86, 16, 36, }, [29] = { 88, 17, 36, }, [30] = { 90, 17, 37, }, + [31] = { 91, 17, 37, }, + [32] = { 92, 17, 38, }, + [33] = { 93, 17, 38, }, + [34] = { 94, 17, 39, }, + [35] = { 95, 17, 39, }, + [36] = { 96, 18, 39, }, + [37] = { 97, 18, 39, }, + [38] = { 98, 18, 40, }, + [39] = { 99, 18, 40, }, + [40] = { 100, 18, 41, }, }, } skills["SupportMeleePhysicalDamage"] = { name = "Melee Physical Damage", - gemTags = { - melee = true, - strength = true, - support = true, - attack = true, - }, - gemTagString = "Melee, Support, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports melee attack skills.", color = 1, support = true, @@ -1635,21 +1637,20 @@ skills["SupportMeleePhysicalDamage"] = { [28] = { 86, 57, 57, }, [29] = { 88, 58, 58, }, [30] = { 90, 59, 59, }, + [31] = { 91, 59, 59, }, + [32] = { 92, 60, 60, }, + [33] = { 93, 60, 60, }, + [34] = { 94, 61, 61, }, + [35] = { 95, 61, 61, }, + [36] = { 96, 62, 62, }, + [37] = { 97, 62, 62, }, + [38] = { 98, 63, 63, }, + [39] = { 99, 63, 63, }, + [40] = { 100, 64, 64, }, }, } skills["SupportMeleeSplash"] = { name = "Melee Splash", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - area = true, - }, - gemTagString = "Support, Melee, Attack, AoE", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports single-target melee attack skills, causing their melee strike to deal splash damage around the target.", color = 1, support = true, @@ -1700,20 +1701,20 @@ skills["SupportMeleeSplash"] = { [28] = { 86, -22, 81, }, [29] = { 88, -21, 84, }, [30] = { 90, -21, 87, }, + [31] = { 91, -21, 88, }, + [32] = { 92, -20, 90, }, + [33] = { 93, -20, 92, }, + [34] = { 94, -20, 93, }, + [35] = { 95, -20, 94, }, + [36] = { 96, -19, 96, }, + [37] = { 97, -19, 98, }, + [38] = { 98, -19, 99, }, + [39] = { 99, -19, 100, }, + [40] = { 100, -18, 102, }, }, } skills["SupportMultistrike"] = { name = "Multistrike", - gemTags = { - attack = true, - melee = true, - strength = true, - support = true, - }, - gemTagString = "Attack, Melee, Support", - gemStr = 60, - gemDex = 40, - gemInt = 0, 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, @@ -1763,28 +1764,25 @@ skills["SupportMultistrike"] = { [28] = { 86, 102, }, [29] = { 88, 103, }, [30] = { 90, 104, }, + [31] = { 91, 104, }, + [32] = { 92, 105, }, + [33] = { 93, 105, }, + [34] = { 94, 106, }, + [35] = { 95, 106, }, + [36] = { 96, 107, }, + [37] = { 97, 107, }, + [38] = { 98, 108, }, + [39] = { 99, 108, }, + [40] = { 100, 109, }, }, } skills["SupportRangedAttackTotem"] = { name = "Ranged Attack Totem", - gemTags = { - bow = true, - projectile = true, - strength = true, - support = true, - totem = true, - attack = true, - duration = true, - }, - gemTagString = "Bow, Projectile, Support, Totem, Attack, Duration", - gemStr = 60, - gemDex = 40, - gemInt = 0, 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 = { 12, 17, 19, 30, }, + addSkillTypes = { 17, 19, 30, }, excludeSkillTypes = { }, addFlags = { totem = true, @@ -1837,18 +1835,20 @@ skills["SupportRangedAttackTotem"] = { [28] = { 86, 86, -22, }, [29] = { 88, 88, -21, }, [30] = { 90, 90, -21, }, + [31] = { 91, 91, -21, }, + [32] = { 92, 92, -20, }, + [33] = { 93, 93, -20, }, + [34] = { 94, 94, -20, }, + [35] = { 95, 95, -20, }, + [36] = { 96, 96, -19, }, + [37] = { 97, 97, -19, }, + [38] = { 98, 98, -19, }, + [39] = { 99, 99, -19, }, + [40] = { 100, 100, -18, }, }, } skills["SupportReducedMana"] = { name = "Reduced Mana", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill with a mana cost. Does not support skills that reserve mana.", color = 1, support = true, @@ -1895,20 +1895,20 @@ skills["SupportReducedMana"] = { [28] = { 86, -38, }, [29] = { 88, -39, }, [30] = { 90, -39, }, + [31] = { 91, -39, }, + [32] = { 92, -40, }, + [33] = { 93, -40, }, + [34] = { 94, -40, }, + [35] = { 95, -40, }, + [36] = { 96, -41, }, + [37] = { 97, -41, }, + [38] = { 98, -41, }, + [39] = { 99, -41, }, + [40] = { 100, -42, }, }, } skills["SupportRuthless"] = { name = "Ruthless", - gemTags = { - strength = true, - support = true, - melee = true, - attack = true, - }, - gemTagString = "Support, Melee, Attack", - gemStr = 100, - gemDex = 0, - gemInt = 0, 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, @@ -1959,25 +1959,25 @@ skills["SupportRuthless"] = { [28] = { 86, 129, 129, }, [29] = { 88, 131, 131, }, [30] = { 90, 133, 133, }, + [31] = { 91, 134, 134, }, + [32] = { 92, 135, 135, }, + [33] = { 93, 136, 136, }, + [34] = { 94, 137, 137, }, + [35] = { 95, 138, 138, }, + [36] = { 96, 139, 139, }, + [37] = { 97, 140, 140, }, + [38] = { 98, 141, 141, }, + [39] = { 99, 142, 142, }, + [40] = { 100, 143, 143, }, }, } skills["SupportSpellTotem"] = { name = "Spell Totem", - gemTags = { - strength = true, - support = true, - totem = true, - duration = true, - }, - gemTagString = "Support, Totem, Duration", - gemStr = 60, - gemDex = 0, - gemInt = 40, description = "Supports spell skills that do not reserve mana. Instead of using that skill, you will summon a totem that uses the skill for you.", color = 1, support = true, requireSkillTypes = { 18, }, - addSkillTypes = { 12, 17, 19, 30, }, + addSkillTypes = { 17, 19, 30, }, excludeSkillTypes = { 61, }, addFlags = { totem = true, @@ -2029,18 +2029,20 @@ skills["SupportSpellTotem"] = { [28] = { 86, 86, -22, }, [29] = { 88, 88, -21, }, [30] = { 90, 90, -21, }, + [31] = { 91, 91, -21, }, + [32] = { 92, 92, -20, }, + [33] = { 93, 93, -20, }, + [34] = { 94, 94, -20, }, + [35] = { 95, 95, -20, }, + [36] = { 96, 96, -19, }, + [37] = { 97, 97, -19, }, + [38] = { 98, 98, -19, }, + [39] = { 99, 99, -19, }, + [40] = { 100, 100, -18, }, }, } skills["SupportStun"] = { name = "Stun", - gemTags = { - strength = true, - support = true, - }, - gemTagString = "Support", - gemStr = 100, - gemDex = 0, - gemInt = 0, description = "Supports any skill that hits enemies, making it easier to stun enemies with those skills.", color = 1, support = true, @@ -2087,5 +2089,15 @@ skills["SupportStun"] = { [28] = { 86, -57, }, [29] = { 88, -58, }, [30] = { 90, -59, }, + [31] = { 91, -59, }, + [32] = { 92, -60, }, + [33] = { 93, -60, }, + [34] = { 94, -61, }, + [35] = { 95, -61, }, + [36] = { 96, -62, }, + [37] = { 97, -62, }, + [38] = { 98, -63, }, + [39] = { 99, -63, }, + [40] = { 100, -64, }, }, } \ No newline at end of file diff --git a/Export/skills.lua b/Export/skills.lua index 72c2ce30..fee50f2f 100644 --- a/Export/skills.lua +++ b/Export/skills.lua @@ -170,23 +170,16 @@ directiveTable.skill = function(state, args, out) local skill = { } state.skill = skill if skillGemKey and not state.noGem then - local skillGem = SkillGems[skillGemKey] - out:write('\tname = "', BaseItemTypes[skillGem.BaseItemTypesKey].Name:gsub(" Support",""), '",\n') - local tagNames = { } - out:write('\tgemTags = {\n') - for i, tagKey in ipairs(skillGem.GemTagsKeys) do - out:write('\t\t', GemTags[tagKey].Id, ' = true,\n') - if #GemTags[tagKey].Tag > 0 then - table.insert(tagNames, GemTags[tagKey].Tag) + gems[skillGemKey] = true + if granted.IsSupport then + local skillGem = SkillGems[skillGemKey] + local baseItemType = BaseItemTypes[skillGem.BaseItemTypesKey] + out:write('\tname = "', baseItemType.Name:gsub(" Support",""), '",\n') + if #skillGem.Description > 0 then + out:write('\tdescription = "', skillGem.Description, '",\n') end - end - out:write('\t},\n') - out:write('\tgemTagString = "', table.concat(tagNames, ", "), '",\n') - out:write('\tgemStr = ', skillGem.Str, ',\n') - out:write('\tgemDex = ', skillGem.Dex, ',\n') - out:write('\tgemInt = ', skillGem.Int, ',\n') - if #skillGem.Description > 0 then - out:write('\tdescription = "', skillGem.Description, '",\n') + else + out:write('\tname = "', ActiveSkills[granted.ActiveSkillsKey].DisplayedName, '",\n') end else if displayName == args and not granted.IsSupport then @@ -254,7 +247,7 @@ directiveTable.skill = function(state, args, out) end out:write('\t},\n') end - if activeSkill.SkillTotemId ~= 16 then + if activeSkill.SkillTotemId ~= 17 then out:write('\tskillTotemId = ', activeSkill.SkillTotemId, ',\n') end local typeFlag = { } @@ -499,6 +492,37 @@ for _, name in pairs({"act_str","act_dex","act_int","other","glove","minion","sp processTemplateFile("Skills/"..name, directiveTable) end +local out = io.open("../Data/3_0/Gems.lua", "w") +out:write('-- This file is automatically generated, do not edit!\n') +out:write('-- Gem data (c) Grinding Gear Games\n\nreturn {\n') +for skillGemKey = 0, SkillGems.maxRow do + if gems[skillGemKey] then + local skillGem = SkillGems[skillGemKey] + local baseItemType = BaseItemTypes[skillGem.BaseItemTypesKey] + out:write('\t["', baseItemType.Id, '"] = {\n') + out:write('\t\tname = "', baseItemType.Name:gsub(" Support",""), '",\n') + out:write('\t\tgrantedEffectId = "', GrantedEffects[skillGem.GrantedEffectsKey].Id, '",\n') + if skillGem.Key0 then + out:write('\t\tsecondaryGrantedEffectId = "', GrantedEffects[skillGem.Key0].Id, '",\n') + end + local tagNames = { } + out:write('\t\ttags = {\n') + for i, tagKey in ipairs(skillGem.GemTagsKeys) do + out:write('\t\t\t', GemTags[tagKey].Id, ' = true,\n') + if #GemTags[tagKey].Tag > 0 then + table.insert(tagNames, GemTags[tagKey].Tag) + end + end + out:write('\t\t},\n') + out:write('\t\ttagString = "', table.concat(tagNames, ", "), '",\n') + out:write('\t\treqStr = ', skillGem.Str, ',\n') + out:write('\t\treqDex = ', skillGem.Dex, ',\n') + out:write('\t\treqInt = ', skillGem.Int, ',\n') + out:write('\t},\n') + end +end +out:write('}') + os.execute("xcopy Skills\\act_*.lua ..\\Data\\3_0\\Skills\\ /Y /Q") os.execute("xcopy Skills\\sup_*.lua ..\\Data\\3_0\\Skills\\ /Y /Q") os.execute("xcopy Skills\\other.lua ..\\Data\\3_0\\Skills\\ /Y /Q") diff --git a/Modules/Build.lua b/Modules/Build.lua index ccabf573..2af4ea0d 100644 --- a/Modules/Build.lua +++ b/Modules/Build.lua @@ -440,18 +440,18 @@ function buildMode:Init(dbFileName, buildName, buildXML, targetVersion) end) self.controls.mainSkillPart = common.New("DropDownControl", {"TOPLEFT",self.controls.mainSkill,"BOTTOMLEFT",true}, 0, 2, 150, 18, nil, function(index, value) local mainSocketGroup = self.skillsTab.socketGroupList[self.mainSocketGroup] - local srcGem = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeGem.srcGem - srcGem.skillPart = index + local srcInstance = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeEffect.srcInstance + srcInstance.skillPart = index self.modFlag = true self.buildFlag = true end) self.controls.mainSkillMinion = common.New("DropDownControl", {"TOPLEFT",self.controls.mainSkillPart,"BOTTOMLEFT",true}, 0, 2, 178, 18, nil, function(index, value) local mainSocketGroup = self.skillsTab.socketGroupList[self.mainSocketGroup] - local srcGem = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeGem.srcGem + local srcInstance = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeEffect.srcInstance if value.itemSetId then - srcGem.skillMinionItemSet = value.itemSetId + srcInstance.skillMinionItemSet = value.itemSetId else - srcGem.skillMinion = value.minionId + srcInstance.skillMinion = value.minionId end self.modFlag = true self.buildFlag = true @@ -459,7 +459,7 @@ function buildMode:Init(dbFileName, buildName, buildXML, targetVersion) function self.controls.mainSkillMinion.CanReceiveDrag(control, type, value) if type == "Item" and control.list[control.selIndex] and control.list[control.selIndex].itemSetId then local mainSocketGroup = self.skillsTab.socketGroupList[self.mainSocketGroup] - local minionUses = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeGem.grantedEffect.minionUses + local minionUses = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeEffect.grantedEffect.minionUses return minionUses and minionUses[value:GetPrimarySlot()] -- O_O end end @@ -479,8 +479,8 @@ function buildMode:Init(dbFileName, buildName, buildXML, targetVersion) end) self.controls.mainSkillMinionSkill = common.New("DropDownControl", {"TOPLEFT",self.controls.mainSkillMinion,"BOTTOMLEFT",true}, 0, 2, 200, 16, nil, function(index, value) local mainSocketGroup = self.skillsTab.socketGroupList[self.mainSocketGroup] - local srcGem = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeGem.srcGem - srcGem.skillMinionSkill = index + local srcInstance = mainSocketGroup.displaySkillList[mainSocketGroup.mainActiveSkill].activeEffect.srcInstance + srcInstance.skillMinionSkill = index self.modFlag = true self.buildFlag = true end) @@ -957,7 +957,7 @@ function buildMode:RefreshSkillSelectControls(controls, mainGroup, suffix) local mainActiveSkill = mainSocketGroup["mainActiveSkill"..suffix] or 1 wipeTable(controls.mainSkill.list) for i, activeSkill in ipairs(displaySkillList) do - t_insert(controls.mainSkill.list, { val = i, label = activeSkill.activeGem.grantedEffect.name }) + t_insert(controls.mainSkill.list, { val = i, label = activeSkill.activeEffect.grantedEffect.name }) end controls.mainSkill.enabled = #displaySkillList > 1 controls.mainSkill.selIndex = mainActiveSkill @@ -968,19 +968,19 @@ function buildMode:RefreshSkillSelectControls(controls, mainGroup, suffix) controls.mainSkillMinionSkill.shown = false if displaySkillList[1] then local activeSkill = displaySkillList[mainActiveSkill] - local activeGem = activeSkill.activeGem - if activeGem then - if activeGem.grantedEffect.parts and #activeGem.grantedEffect.parts > 1 then + local activeEffect = activeSkill.activeEffect + if activeEffect then + if activeEffect.grantedEffect.parts and #activeEffect.grantedEffect.parts > 1 then controls.mainSkillPart.shown = true wipeTable(controls.mainSkillPart.list) - for i, part in ipairs(activeGem.grantedEffect.parts) do + for i, part in ipairs(activeEffect.grantedEffect.parts) do t_insert(controls.mainSkillPart.list, { val = i, label = part.name }) end - controls.mainSkillPart.selIndex = activeGem.srcGem["skillPart"..suffix] or 1 + controls.mainSkillPart.selIndex = activeEffect.srcInstance["skillPart"..suffix] or 1 end - if not activeSkill.skillFlags.disable and (activeGem.grantedEffect.minionList or activeSkill.minionList[1]) then + if not activeSkill.skillFlags.disable and (activeEffect.grantedEffect.minionList or activeSkill.minionList[1]) then wipeTable(controls.mainSkillMinion.list) - if activeGem.grantedEffect.minionHasItemSet then + if activeEffect.grantedEffect.minionHasItemSet then for _, itemSetId in ipairs(self.itemsTab.itemSetOrderList) do local itemSet = self.itemsTab.itemSets[itemSetId] t_insert(controls.mainSkillMinion.list, { @@ -988,25 +988,25 @@ function buildMode:RefreshSkillSelectControls(controls, mainGroup, suffix) itemSetId = itemSetId, }) end - controls.mainSkillMinion:SelByValue(activeGem.srcGem["skillMinionItemSet"..suffix] or 1, "itemSetId") + controls.mainSkillMinion:SelByValue(activeEffect.srcInstance["skillMinionItemSet"..suffix] or 1, "itemSetId") else - controls.mainSkillMinionLibrary.shown = (activeGem.grantedEffect.minionList and not activeGem.grantedEffect.minionList[1]) + controls.mainSkillMinionLibrary.shown = (activeEffect.grantedEffect.minionList and not activeEffect.grantedEffect.minionList[1]) for _, minionId in ipairs(activeSkill.minionList) do t_insert(controls.mainSkillMinion.list, { label = self.data.minions[minionId].name, minionId = minionId, }) end - controls.mainSkillMinion:SelByValue(activeGem.srcGem["skillMinion"..suffix] or controls.mainSkillMinion.list[1], "minionId") + controls.mainSkillMinion:SelByValue(activeEffect.srcInstance["skillMinion"..suffix] or controls.mainSkillMinion.list[1], "minionId") end controls.mainSkillMinion.enabled = #controls.mainSkillMinion.list > 1 controls.mainSkillMinion.shown = true wipeTable(controls.mainSkillMinionSkill.list) if activeSkill.minion then for _, minionSkill in ipairs(activeSkill.minion.activeSkillList) do - t_insert(controls.mainSkillMinionSkill.list, minionSkill.activeGem.grantedEffect.name) + t_insert(controls.mainSkillMinionSkill.list, minionSkill.activeEffect.grantedEffect.name) end - controls.mainSkillMinionSkill.selIndex = activeGem.srcGem["skillMinionSkill"..suffix] or 1 + controls.mainSkillMinionSkill.selIndex = activeEffect.srcInstance["skillMinionSkill"..suffix] or 1 controls.mainSkillMinionSkill.shown = true controls.mainSkillMinionSkill.enabled = #controls.mainSkillMinionSkill.list > 1 else diff --git a/Modules/CalcActiveSkill.lua b/Modules/CalcActiveSkill.lua index 1f9e6aab..237eae75 100644 --- a/Modules/CalcActiveSkill.lua +++ b/Modules/CalcActiveSkill.lua @@ -59,9 +59,9 @@ local function mergeQualityMod(modList, mod, quality) modList:AddMod(scaledMod) end --- Merge gem modifiers with given mod list -function calcs.mergeGemMods(modList, gem) - for _, mod in pairs(gem.grantedEffect.baseMods) do +-- Merge skill modifiers with given mod list +function calcs.mergeSkillInstanceMods(modList, skillEffect) + for _, mod in pairs(skillEffect.grantedEffect.baseMods) do if mod.name then modList:AddMod(mod) else @@ -70,20 +70,20 @@ function calcs.mergeGemMods(modList, gem) end end end - if gem.quality > 0 then - for _, mod in pairs(gem.grantedEffect.qualityMods) do + if skillEffect.quality > 0 then + for _, mod in pairs(skillEffect.grantedEffect.qualityMods) do if mod.name then - mergeQualityMod(modList, mod, gem.quality) + mergeQualityMod(modList, mod, skillEffect.quality) else for _, subMod in ipairs(mod) do - mergeQualityMod(modList, subMod, gem.quality) + mergeQualityMod(modList, subMod, skillEffect.quality) end end end end - calcLib.validateGemLevel(gem) - local levelData = gem.grantedEffect.levels[gem.level] - for col, mod in pairs(gem.grantedEffect.levelMods) do + calcLib.validateGemLevel(skillEffect) + local levelData = skillEffect.grantedEffect.levels[skillEffect.level] + for col, mod in pairs(skillEffect.grantedEffect.levelMods) do if levelData[col] then if mod.name then mergeLevelMod(modList, mod, levelData[col]) @@ -98,46 +98,48 @@ end -- Create an active skill using the given active gem and list of support gems -- It will determine the base flag set, and check which of the support gems can support this skill -function calcs.createActiveSkill(activeGem, supportList, summonSkill) +function calcs.createActiveSkill(activeEffect, supportList, summonSkill) local activeSkill = { - activeGem = activeGem, + activeEffect = activeEffect, supportList = supportList, summonSkill = summonSkill, skillData = { }, buffList = { }, } + + local activeGrantedEffect = activeEffect.grantedEffect -- Initialise skill types - activeSkill.skillTypes = copyTable(activeGem.grantedEffect.skillTypes) - if activeGem.grantedEffect.minionSkillTypes then - activeSkill.minionSkillTypes = copyTable(activeGem.grantedEffect.minionSkillTypes) + activeSkill.skillTypes = copyTable(activeGrantedEffect.skillTypes) + if activeEffect.grantedEffect.minionSkillTypes then + activeSkill.minionSkillTypes = copyTable(activeGrantedEffect.minionSkillTypes) end -- Initialise skill flag set ('attack', 'projectile', etc) - local skillFlags = copyTable(activeGem.grantedEffect.baseFlags) + local skillFlags = copyTable(activeGrantedEffect.baseFlags) activeSkill.skillFlags = skillFlags skillFlags.hit = skillFlags.hit or activeSkill.skillTypes[SkillType.Attack] or activeSkill.skillTypes[SkillType.Hit] or activeSkill.skillTypes[SkillType.Projectile] -- Process support skills - activeSkill.gemList = { activeGem } - for _, supportGem in ipairs(supportList) do + activeSkill.effectList = { activeEffect } + for _, supportEffect in ipairs(supportList) do -- Pass 1: Add skill types from compatible supports - if calcLib.gemCanSupport(supportGem, activeSkill) then - for _, skillType in pairs(supportGem.grantedEffect.addSkillTypes) do + if calcLib.canGrantedEffectSupportActiveSkill(supportEffect.grantedEffect, activeSkill) then + for _, skillType in pairs(supportEffect.grantedEffect.addSkillTypes) do activeSkill.skillTypes[skillType] = true end end end - for _, supportGem in ipairs(supportList) do + for _, supportEffect in ipairs(supportList) do -- Pass 2: Add all compatible supports - if calcLib.gemCanSupport(supportGem, activeSkill) then - t_insert(activeSkill.gemList, supportGem) - if supportGem.isSupporting then - supportGem.isSupporting[activeGem.grantedEffect.name] = true + if calcLib.canGrantedEffectSupportActiveSkill(supportEffect.grantedEffect, activeSkill) then + t_insert(activeSkill.effectList, supportEffect) + if supportEffect.isSupporting and activeEffect.srcInstance then + supportEffect.isSupporting[activeEffect.srcInstance] = true end - if supportGem.grantedEffect.addFlags and not summonSkill then + if supportEffect.grantedEffect.addFlags and not summonSkill then -- Support skill adds flags to supported skills (eg. Remote Mine adds 'mine') - for k in pairs(supportGem.grantedEffect.addFlags) do + for k in pairs(supportEffect.grantedEffect.addFlags) do skillFlags[k] = true end end @@ -181,7 +183,8 @@ end function calcs.buildActiveSkillModList(env, actor, activeSkill) local skillTypes = activeSkill.skillTypes local skillFlags = activeSkill.skillFlags - local activeGem = activeSkill.activeGem + local activeEffect = activeSkill.activeEffect + local activeGrantedEffect = activeEffect.grantedEffect -- Set mode flags if env.mode_buffs then @@ -195,14 +198,14 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) end -- Handle multipart skills - local activeGemParts = activeGem.grantedEffect.parts + local activeGemParts = activeGrantedEffect.parts if activeGemParts then if env.mode == "CALCS" and activeSkill == env.player.mainSkill then - activeGem.srcGem.skillPartCalcs = m_min(#activeGemParts, activeGem.srcGem.skillPartCalcs or 1) - activeSkill.skillPart = activeGem.srcGem.skillPartCalcs + activeEffect.srcInstance.skillPartCalcs = m_min(#activeGemParts, activeEffect.srcInstance.skillPartCalcs or 1) + activeSkill.skillPart = activeEffect.srcInstance.skillPartCalcs else - activeGem.srcGem.skillPart = m_min(#activeGemParts, activeGem.srcGem.skillPart or 1) - activeSkill.skillPart = activeGem.srcGem.skillPart + activeEffect.srcInstance.skillPart = m_min(#activeGemParts, activeEffect.srcInstance.skillPart or 1) + activeSkill.skillPart = activeEffect.srcInstance.skillPart end local part = activeGemParts[activeSkill.skillPart] for k, v in pairs(part) do @@ -228,7 +231,7 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) activeSkill.weapon2Flags = 0 elseif skillFlags.attack then -- Set weapon flags - local weaponTypes = activeGem.grantedEffect.weaponTypes + local weaponTypes = activeGrantedEffect.weaponTypes local weapon1Flags, weapon1Info = getWeaponFlags(env, actor.weaponData1, weaponTypes) if not weapon1Flags and activeSkill.summonSkill then -- Minion skills seem to ignore weapon types @@ -339,11 +342,11 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) -- Get skill totem ID for totem skills -- This is used to calculate totem life if skillFlags.totem then - activeSkill.skillTotemId = activeGem.grantedEffect.skillTotemId + activeSkill.skillTotemId = activeGrantedEffect.skillTotemId if not activeSkill.skillTotemId then - if activeGem.grantedEffect.color == 2 then + if activeGrantedEffect.color == 2 then activeSkill.skillTotemId = 2 - elseif activeGem.grantedEffect.color == 3 then + elseif activeGrantedEffect.color == 3 then activeSkill.skillTotemId = 3 else activeSkill.skillTotemId = 1 @@ -355,9 +358,9 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) activeSkill.skillCfg = { flags = bor(skillModFlags, activeSkill.weapon1Flags or activeSkill.weapon2Flags or 0), keywordFlags = skillKeywordFlags, - skillName = activeGem.grantedEffect.name:gsub("^Vaal ",""):gsub("Summon Skeletons","Summon Skeleton"), -- This allows modifiers that target specific skills to also apply to their Vaal counterpart - summonSkillName = activeSkill.summonSkill and activeSkill.summonSkill.activeGem.grantedEffect.name, - skillGem = activeGem, + skillName = activeGrantedEffect.name:gsub("^Vaal ",""):gsub("Summon Skeletons","Summon Skeleton"), -- This allows modifiers that target specific skills to also apply to their Vaal counterpart + summonSkillName = activeSkill.summonSkill and activeSkill.summonSkill.activeEffect.grantedEffect.name, + skillGem = activeEffect, skillPart = activeSkill.skillPart, skillTypes = activeSkill.skillTypes, skillCond = { }, @@ -391,23 +394,21 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) end -- Add support gem modifiers to skill mod list - for _, gem in pairs(activeSkill.gemList) do - if gem.grantedEffect.support then - calcs.mergeGemMods(skillModList, gem) + for _, skillEffect in pairs(activeSkill.effectList) do + if skillEffect.grantedEffect.support then + calcs.mergeSkillInstanceMods(skillModList, skillEffect) end end -- Apply gem/quality modifiers from support gems - if not activeGem.fromItem then - for _, value in ipairs(skillModList:Sum("LIST", activeSkill.skillCfg, "GemProperty")) do - if value.keyword == "active_skill" then - activeGem[value.key] = activeGem[value.key] + value.value - end + for _, value in ipairs(skillModList:Sum("LIST", activeSkill.skillCfg, "GemProperty")) do + if value.keyword == "active_skill" then + activeEffect[value.key] = activeEffect[value.key] + value.value end end -- Add active gem modifiers - calcs.mergeGemMods(skillModList, activeGem) + calcs.mergeSkillInstanceMods(skillModList, activeEffect) -- Add extra modifiers activeSkill.extraSkillModList = { } @@ -426,18 +427,18 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) -- Create minion local minionList - if activeGem.grantedEffect.minionList then - if activeGem.grantedEffect.minionList[1] then - minionList = copyTable(activeGem.grantedEffect.minionList) + if activeGrantedEffect.minionList then + if activeGrantedEffect.minionList[1] then + minionList = copyTable(activeGrantedEffect.minionList) else minionList = copyTable(env.build.spectreList) end else minionList = { } end - for _, supportGem in ipairs(activeSkill.supportList) do - if supportGem.grantedEffect.addMinionList then - for _, minionType in ipairs(supportGem.grantedEffect.addMinionList) do + for _, skillEffect in ipairs(activeSkill.effectList) do + if skillEffect.grantedEffect.support and skillEffect.grantedEffect.addMinionList then + for _, minionType in ipairs(skillEffect.grantedEffect.addMinionList) do t_insert(minionList, minionType) end end @@ -446,13 +447,13 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) if minionList[1] and not actor.minionData then local minionType if env.mode == "CALCS" and activeSkill == env.player.mainSkill then - local index = isValueInArray(minionList, activeGem.srcGem.skillMinionCalcs) or 1 + local index = isValueInArray(minionList, activeEffect.srcInstance.skillMinionCalcs) or 1 minionType = minionList[index] - activeGem.srcGem.skillMinionCalcs = minionType + activeEffect.srcInstance.skillMinionCalcs = minionType else - local index = isValueInArray(minionList, activeGem.srcGem.skillMinion) or 1 + local index = isValueInArray(minionList, activeEffect.srcInstance.skillMinion) or 1 minionType = minionList[index] - activeGem.srcGem.skillMinion = minionType + activeEffect.srcInstance.skillMinion = minionType end if minionType then local minion = { } @@ -465,21 +466,21 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) -- fix minion level between 1 and 100 minion.level = m_min(m_max(minion.level,1),100) minion.itemList = { } - minion.uses = activeGem.grantedEffect.minionUses + minion.uses = activeGrantedEffect.minionUses local attackTime = minion.minionData.attackTime * (1 - (minion.minionData.damageFixup or 0)) local damage = env.data.monsterDamageTable[minion.level] * minion.minionData.damage * attackTime - if activeGem.grantedEffect.minionHasItemSet then + if activeGrantedEffect.minionHasItemSet then if env.mode == "CALCS" and activeSkill == env.player.mainSkill then - if not env.build.itemsTab.itemSets[activeGem.srcGem.skillMinionItemSetCalcs] then - activeGem.srcGem.skillMinionItemSetCalcs = env.build.itemsTab.itemSetOrderList[1] + if not env.build.itemsTab.itemSets[activeEffect.srcInstance.skillMinionItemSetCalcs] then + activeEffect.srcInstance.skillMinionItemSetCalcs = env.build.itemsTab.itemSetOrderList[1] end - minion.itemSet = env.build.itemsTab.itemSets[activeGem.srcGem.skillMinionItemSetCalcs] + minion.itemSet = env.build.itemsTab.itemSets[activeEffect.srcInstance.skillMinionItemSetCalcs] else - if not env.build.itemsTab.itemSets[activeGem.srcGem.skillMinionItemSet] then - activeGem.srcGem.skillMinionItemSet = env.build.itemsTab.itemSetOrderList[1] + if not env.build.itemsTab.itemSets[activeEffect.srcInstance.skillMinionItemSet] then + activeEffect.srcInstance.skillMinionItemSet = env.build.itemsTab.itemSetOrderList[1] end - minion.itemSet = env.build.itemsTab.itemSets[activeGem.srcGem.skillMinionItemSet] + minion.itemSet = env.build.itemsTab.itemSets[activeEffect.srcInstance.skillMinionItemSet] end end if activeSkill.skillData.minionUseBowAndQuiver and env.player.weaponData1.type == "Bow" then @@ -527,7 +528,7 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) for _, tag in ipairs(skillModList[i]) do if tag.type == "GlobalEffect" then effectType = tag.effectType - effectName = tag.effectName or activeSkill.activeGem.grantedEffect.name + effectName = tag.effectName or activeGrantedEffect.name effectTag = tag break end @@ -548,7 +549,7 @@ function calcs.buildActiveSkillModList(env, actor, activeSkill) cond = effectTag.effectCond, modList = { }, } - if skillModList[i].source == activeGem.grantedEffect.modSource then + if skillModList[i].source == activeGrantedEffect.modSource then -- Inherit buff configuration from the active skill buff.activeSkillBuff = true buff.applyNotPlayer = activeSkill.skillData.buffNotPlayer @@ -586,7 +587,7 @@ end -- Initialise the active skill's minion skills function calcs.createMinionSkills(env, activeSkill) - local activeGem = activeSkill.activeGem + local activeEffect = activeSkill.activeEffect local minion = activeSkill.minion local minionData = minion.minionData @@ -604,22 +605,21 @@ function calcs.createMinionSkills(env, activeSkill) t_insert(skillIdList, "BeaconZombieCausticCloud") end for _, skillId in ipairs(skillIdList) do - local gem = { + local activeEffect = { grantedEffect = env.data.skills[skillId], level = 1, quality = 0, - fromItem = true, } - if #gem.grantedEffect.levels > 1 then - for level, levelData in ipairs(gem.grantedEffect.levels) do + if #activeEffect.grantedEffect.levels > 1 then + for level, levelData in ipairs(activeEffect.grantedEffect.levels) do if levelData[1] > minion.level then break else - gem.level = level + activeEffect.level = level end end end - local minionSkill = calcs.createActiveSkill(gem, activeSkill.supportList, activeSkill) + local minionSkill = calcs.createActiveSkill(activeEffect, activeSkill.supportList, activeSkill) calcs.buildActiveSkillModList(env, minion, minionSkill) minionSkill.skillFlags.minion = true minionSkill.skillFlags.minionSkill = true @@ -632,12 +632,12 @@ function calcs.createMinionSkills(env, activeSkill) end local skillIndex if env.mode == "CALCS" then - skillIndex = m_min(activeGem.srcGem.skillMinionSkillCalcs or 1, #minion.activeSkillList) - activeGem.srcGem.skillMinionSkillCalcs = skillIndex + skillIndex = m_min(activeEffect.srcInstance.skillMinionSkillCalcs or 1, #minion.activeSkillList) + activeEffect.srcInstance.skillMinionSkillCalcs = skillIndex else - skillIndex = m_min(activeGem.srcGem.skillMinionSkill or 1, #minion.activeSkillList) + skillIndex = m_min(activeEffect.srcInstance.skillMinionSkill or 1, #minion.activeSkillList) if env.mode == "MAIN" then - activeGem.srcGem.skillMinionSkill = skillIndex + activeEffect.srcInstance.skillMinionSkill = skillIndex end end minion.mainSkill = minion.activeSkillList[skillIndex] diff --git a/Modules/CalcOffence-2_6.lua b/Modules/CalcOffence-2_6.lua index 3379a9d5..d67e823d 100644 --- a/Modules/CalcOffence-2_6.lua +++ b/Modules/CalcOffence-2_6.lua @@ -417,7 +417,7 @@ function calcs.offence(env, actor) -- Run skill setup function do - local setupFunc = mainSkill.activeGem.grantedEffect.setupFunc + local setupFunc = mainSkill.activeEffect.grantedEffect.setupFunc if setupFunc then setupFunc(actor, output) end diff --git a/Modules/CalcOffence-3_0.lua b/Modules/CalcOffence-3_0.lua index c5e28556..06f1020c 100644 --- a/Modules/CalcOffence-3_0.lua +++ b/Modules/CalcOffence-3_0.lua @@ -456,7 +456,7 @@ function calcs.offence(env, actor) -- Run skill setup function do - local setupFunc = mainSkill.activeGem.grantedEffect.setupFunc + local setupFunc = mainSkill.activeEffect.grantedEffect.setupFunc if setupFunc then setupFunc(actor, output) end diff --git a/Modules/CalcPerform.lua b/Modules/CalcPerform.lua index b1382dec..abb7c919 100644 --- a/Modules/CalcPerform.lua +++ b/Modules/CalcPerform.lua @@ -528,7 +528,7 @@ function calcs.perform(env) env.player["reserved_"..pool..suffix] = env.player["reserved_"..pool..suffix] + cost if breakdown then t_insert(breakdown[pool.."Reserved"].reservations, { - skillName = activeSkill.activeGem.grantedEffect.name, + skillName = activeSkill.activeEffect.grantedEffect.name, base = baseVal .. (activeSkill.skillTypes[SkillType.ManaCostPercent] and "%" or ""), mult = mult ~= 1 and ("x "..mult), more = more ~= 1 and ("x "..more), @@ -585,7 +585,7 @@ function calcs.perform(env) env.build.itemsTab:AddItemTooltip(tooltip, item, reqSource.sourceSlot) end elseif reqSource.source == "Gem" then - row.sourceName = s_format("%s%s ^7%d/%d", reqSource.sourceGem.color, reqSource.sourceGem.grantedEffect.name, reqSource.sourceGem.level, reqSource.sourceGem.quality) + row.sourceName = s_format("%s%s ^7%d/%d", reqSource.sourceGem.color, reqSource.sourceGem.nameSpec, reqSource.sourceGem.level, reqSource.sourceGem.quality) end t_insert(breakdown["Req"..attr].rowList, row) end diff --git a/Modules/CalcSetup.lua b/Modules/CalcSetup.lua index 1d25650f..26d61696 100644 --- a/Modules/CalcSetup.lua +++ b/Modules/CalcSetup.lua @@ -523,15 +523,14 @@ function calcs.initEnv(build, mode, override) -- Update the group group.sourceItem = grantedSkill.sourceItem - local activeGem = group.gemList[1] or { - nameSpec = grantedSkill.name, + local activeGemInstance = group.gemList[1] or { + skillId = grantedSkill.skillId, quality = 0, enabled = true, } - activeGem.level = grantedSkill.level - activeGem.fromItem = true + activeGemInstance.level = grantedSkill.level wipeTable(group.gemList) - t_insert(group.gemList, activeGem) + t_insert(group.gemList, activeGemInstance) if grantedSkill.noSupports then group.noSupports = true else @@ -539,9 +538,9 @@ function calcs.initEnv(build, mode, override) -- Look for other groups that are socketed in the item if socketGroup.slot == grantedSkill.slotName and not socketGroup.source then -- Add all support gems to the skill's group - for _, gem in ipairs(socketGroup.gemList) do - if gem.grantedEffect and gem.grantedEffect.support then - t_insert(group.gemList, gem) + for _, gemInstance in ipairs(socketGroup.gemList) do + if gemInstance.gemData and gemInstance.gemData.grantedEffect.support then + t_insert(group.gemList, gemInstance) end end end @@ -601,7 +600,7 @@ function calcs.initEnv(build, mode, override) if not socketGroup.source then -- Add extra supports from the item this group is socketed in for _, value in ipairs(env.modDB:Sum("LIST", groupCfg, "ExtraSupport")) do - local grantedEffect = env.data.gems[value.name] or env.data.skills[value.name] + local grantedEffect = env.data.skills[value.name] if grantedEffect then t_insert(supportList, { grantedEffect = grantedEffect, @@ -612,78 +611,91 @@ function calcs.initEnv(build, mode, override) end end end - for _, gem in ipairs(socketGroup.gemList) do + for _, gemInstance in ipairs(socketGroup.gemList) do -- Add support gems from this group if env.mode == "MAIN" then - gem.displayGem = nil + gemInstance.displayEffect = nil end - if gem.enabled and gem.grantedEffect and gem.grantedEffect.support then - local supportGem = copyTable(gem, true) - supportGem.srcGem = gem - supportGem.superseded = false - supportGem.isSupporting = { } + local grantedEffect = gemInstance.gemData and gemInstance.gemData.grantedEffect or gemInstance.grantedEffect + if gemInstance.enabled and grantedEffect and grantedEffect.support then + local supportEffect = { + grantedEffect = grantedEffect, + level = gemInstance.level, + quality = gemInstance.quality, + srcInstance = gemInstance, + gemData = gemInstance.gemData, + superseded = false, + isSupporting = { }, + } if env.mode == "MAIN" then - gem.displayGem = supportGem + gemInstance.displayEffect = supportEffect end - for _, value in ipairs(propertyModList) do - if calcLib.gemIsType(supportGem, value.keyword) then - supportGem[value.key] = (supportGem[value.key] or 0) + value.value + if gemInstance.gemData then + for _, value in ipairs(propertyModList) do + if calcLib.gemIsType(supportEffect.gemData, value.keyword) then + supportEffect[value.key] = (supportEffect[value.key] or 0) + value.value + end end end local add = true - for index, otherGem in ipairs(supportList) do + for index, otherSupport in ipairs(supportList) do -- Check if there's another support with the same name already present - if supportGem.grantedEffect == otherGem.grantedEffect then + if grantedEffect == otherSupport.grantedEffect then add = false - if supportGem.level > otherGem.level or (supportGem.level == otherGem.level and supportGem.quality > otherGem.quality) then + if supportEffect.level > otherSupport.level or (supportEffect.level == otherSupport.level and supportEffect.quality > otherSupport.quality) then if env.mode == "MAIN" then - otherGem.superseded = true + otherSupport.superseded = true end - supportList[index] = supportGem + supportList[index] = supportEffect else - supportGem.superseded = true + supportEffect.superseded = true end break end end if add then - t_insert(env.requirementsTable, { - source = "Gem", - sourceGem = gem, - Str = gem.reqStr, - Dex = gem.reqDex, - Int = gem.reqInt, - }) - t_insert(supportList, supportGem) + t_insert(supportList, supportEffect) end end end -- Create active skills - for _, gem in ipairs(socketGroup.gemList) do - if gem.enabled and gem.grantedEffect and not gem.grantedEffect.support and not gem.grantedEffect.unsupported then - local activeGem = copyTable(gem, true) - activeGem.srcGem = gem - if not gem.fromItem then - for _, value in ipairs(propertyModList) do - if calcLib.gemIsType(activeGem, value.keyword) then - activeGem[value.key] = (activeGem[value.key] or 0) + value.value + for _, gemInstance in ipairs(socketGroup.gemList) do + if gemInstance.enabled and (gemInstance.gemData or gemInstance.grantedEffect) then + local grantedEffectList = gemInstance.gemData and gemInstance.gemData.grantedEffectList or { gemInstance.grantedEffect } + for _, grantedEffect in ipairs(grantedEffectList) do + if not grantedEffect.support and not grantedEffect.unsupported then + local activeEffect = { + grantedEffect = grantedEffect, + level = gemInstance.level, + quality = gemInstance.quality, + srcInstance = gemInstance, + gemData = gemInstance.gemData, + } + if gemInstance.gemData then + for _, value in ipairs(propertyModList) do + if calcLib.gemIsType(activeEffect.gemData, value.keyword) then + activeEffect[value.key] = (activeEffect[value.key] or 0) + value.value + end + end end + local activeSkill = calcs.createActiveSkill(activeEffect, supportList) + if gemInstance.gemData then + activeSkill.slotName = groupCfg.slotName + end + t_insert(socketGroupSkillList, activeSkill) + t_insert(env.activeSkillList, activeSkill) end + end + if gemInstance.gemData then t_insert(env.requirementsTable, { source = "Gem", - sourceGem = gem, - Str = gem.reqStr, - Dex = gem.reqDex, - Int = gem.reqInt, + sourceGem = gemInstance, + Str = gemInstance.reqStr, + Dex = gemInstance.reqDex, + Int = gemInstance.reqInt, }) end - local activeSkill = calcs.createActiveSkill(activeGem, supportList) - if not gem.fromItem then - activeSkill.slotName = groupCfg.slotName - end - t_insert(socketGroupSkillList, activeSkill) - t_insert(env.activeSkillList, activeSkill) end end @@ -709,10 +721,8 @@ function calcs.initEnv(build, mode, override) socketGroup.displayLabel = socketGroup.label else socketGroup.displayLabel = nil - for _, gem in ipairs(socketGroup.gemList) do - if gem.enabled and gem.grantedEffect and not gem.grantedEffect.support then - socketGroup.displayLabel = (socketGroup.displayLabel and socketGroup.displayLabel..", " or "") .. gem.grantedEffect.name - end + for _, activeSkill in ipairs(socketGroupSkillList) do + socketGroup.displayLabel = (socketGroup.displayLabel and socketGroup.displayLabel..", " or "") .. activeSkill.activeEffect.grantedEffect.name end socketGroup.displayLabel = socketGroup.displayLabel or "" end @@ -726,13 +736,13 @@ function calcs.initEnv(build, mode, override) if not env.player.mainSkill then -- Add a default main skill if none are specified - local defaultGem = { + local defaultEffect = { + grantedEffect = env.data.skills.Melee, level = 1, quality = 0, enabled = true, - grantedEffect = env.data.skills.Melee } - env.player.mainSkill = calcs.createActiveSkill(defaultGem, { }) + env.player.mainSkill = calcs.createActiveSkill(defaultEffect, { }) t_insert(env.activeSkillList, env.player.mainSkill) end diff --git a/Modules/CalcTools.lua b/Modules/CalcTools.lua index ed2550ac..a4629a7b 100644 --- a/Modules/CalcTools.lua +++ b/Modules/CalcTools.lua @@ -38,35 +38,36 @@ function calcLib.armourReduction(armour, raw) end -- Validate the level of the given gem -function calcLib.validateGemLevel(gem) - if not gem.grantedEffect.levels[gem.level] then - if gem.grantedEffect.defaultLevel then - gem.level = gem.grantedEffect.defaultLevel +function calcLib.validateGemLevel(gemInstance) + local grantedEffect = gemInstance.grantedEffect or gemInstance.gemData.grantedEffect + if not grantedEffect.levels[gemInstance.level] then + if gemInstance.gemData.defaultLevel then + gemInstance.level = gemInstance.gemData.defaultLevel else - -- Try limiting to the level range of the gem - gem.level = m_max(1, gem.level) - if #gem.grantedEffect.levels > 0 then - gem.level = m_min(#gem.grantedEffect.levels, gem.level) + -- Try limiting to the level range of the skill + gemInstance.level = m_max(1, gemInstance.level) + if #grantedEffect.levels > 0 then + gemInstance.level = m_min(#grantedEffect.levels, gemInstance.level) end - if not gem.grantedEffect.levels[gem.level] then + if not grantedEffect.levels[gemInstance.level] then -- That failed, so just grab any level - gem.level = next(gem.grantedEffect.levels) + gemInstance.level = next(grantedEffect.levels) end end end end --- Check if given support gem can support the given skill types -function calcLib.gemCanSupportTypes(gem, skillTypes) - for _, skillType in pairs(gem.grantedEffect.excludeSkillTypes) do +-- 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 gem.grantedEffect.requireSkillTypes[1] then + if not grantedEffect.requireSkillTypes[1] then return true end - for _, skillType in pairs(gem.grantedEffect.requireSkillTypes) do + for _, skillType in pairs(grantedEffect.requireSkillTypes) do if skillTypes[skillType] then return true end @@ -74,31 +75,30 @@ function calcLib.gemCanSupportTypes(gem, skillTypes) return false end --- Check if given support gem can support the given active skill -function calcLib.gemCanSupport(gem, activeSkill) - if gem.grantedEffect.unsupported then +-- Check if given support skill can support the given active skill +function calcLib.canGrantedEffectSupportActiveSkill(grantedEffect, activeSkill) + if grantedEffect.unsupported then return false end - if gem.grantedEffect.supportGemsOnly and activeSkill.activeGem.fromItem then + if grantedEffect.supportGemsOnly and not activeSkill.activeEffect.gemData then return false end if activeSkill.summonSkill then - return calcLib.gemCanSupport(gem, activeSkill.summonSkill) + return calcLib.canGrantedEffectSupportActiveSkill(grantedEffect, activeSkill.summonSkill) end - if activeSkill.minionSkillTypes and calcLib.gemCanSupportTypes(gem, activeSkill.minionSkillTypes) then + if activeSkill.minionSkillTypes and calcLib.canGrantedEffectSupportTypes(grantedEffect, activeSkill.minionSkillTypes) then return true end - return calcLib.gemCanSupportTypes(gem, activeSkill.skillTypes) + return calcLib.canGrantedEffectSupportTypes(grantedEffect, activeSkill.skillTypes) end -- Check if given gem is of the given type ("all", "strength", "melee", etc) function calcLib.gemIsType(gem, type) - local tags = gem.grantedEffect.gemTags - return tags and (type == "all" or (type == "elemental" and (tags.fire or tags.cold or tags.lightning)) or tags[type]) + return (type == "all" or (type == "elemental" and (gem.tags.fire or gem.tags.cold or gem.tags.lightning)) or gem.tags[type]) end -- From PyPoE's formula.py -function calcLib.gemStatRequirement(level, isSupport, multi) +function calcLib.getGemStatRequirement(level, isSupport, multi) if multi == 0 then return 0 end diff --git a/Modules/Calcs.lua b/Modules/Calcs.lua index 9ed42d8a..6070d298 100644 --- a/Modules/Calcs.lua +++ b/Modules/Calcs.lua @@ -31,8 +31,8 @@ local function infoDump(env, output) env.enemyDB:Print() local mainSkill = env.minion and env.minion.mainSkill or env.player.mainSkill ConPrintf("=== Main Skill ===") - for _, gem in ipairs(mainSkill.gemList) do - ConPrintf("%s %d/%d", gem.grantedEffect.name, gem.level, gem.quality) + for _, skillEffect in ipairs(mainSkill.effectList) do + ConPrintf("%s %d/%d", skillEffect.grantedEffect.name, skillEffect.level, skillEffect.quality) end ConPrintf("=== Main Skill Flags ===") ConPrintf("Mod: %s", modLib.formatFlags(mainSkill.skillCfg.flags, ModFlag)) @@ -42,8 +42,8 @@ local function infoDump(env, output) ConPrintf("== Aux Skills ==") for i, aux in ipairs(env.auxSkillList) do ConPrintf("Skill #%d:", i) - for _, gem in ipairs(aux.gemList) do - ConPrintf(" %s %d/%d", gem.grantedEffect.name, gem.level, gem.quality) + for _, skillEffect in ipairs(aux.effectList) do + ConPrintf(" %s %d/%d", skillEffect.grantedEffect.name, skillEffect.level, skillEffect.quality) end end -- ConPrintf("== Conversion Table ==") @@ -136,12 +136,12 @@ function calcs.buildOutput(build, mode) env.skillsUsed = { } for _, activeSkill in ipairs(env.activeSkillList) do - for _, gem in ipairs(activeSkill.gemList) do - env.skillsUsed[gem.grantedEffect.name] = true + for _, skillEffect in ipairs(activeSkill.effectList) do + env.skillsUsed[skillEffect.grantedEffect.name] = true end if activeSkill.minion then for _, activeSkill in ipairs(activeSkill.minion.activeSkillList) do - env.skillsUsed[activeSkill.activeGem.grantedEffect.id] = true + env.skillsUsed[activeSkill.activeEffect.grantedEffect.id] = true end end end diff --git a/Modules/Data.lua b/Modules/Data.lua index d2de50a4..f822e2f1 100644 --- a/Modules/Data.lua +++ b/Modules/Data.lua @@ -206,13 +206,19 @@ for _, targetVersion in ipairs(targetVersionList) do end end - -- Build gem list - verData.gems = { } - for _, grantedEffect in pairs(verData.skills) do - if grantedEffect.gemTags then - verData.gems[grantedEffect.name] = grantedEffect - grantedEffect.defaultLevel = (grantedEffect.levels[20] and 20) or (grantedEffect.levels[3][2] and 3) or 1 - end + -- Load gems + verData.gems = dataModule("Gems") + verData.gemForSkill = { } + for gemId, gem in pairs(verData.gems) do + gem.id = gemId + gem.grantedEffect = verData.skills[gem.grantedEffectId] + verData.gemForSkill[gem.grantedEffect] = gemId + gem.secondaryGrantedEffect = gem.secondaryGrantedEffectId and verData.skills[gem.secondaryGrantedEffectId] + gem.grantedEffectList = { + gem.grantedEffect, + gem.secondaryGrantedEffect + } + gem.defaultLevel = (gem.grantedEffect.levels[20] and 20) or (gem.grantedEffect.levels[3][2] and 3) or 1 end -- Load minions diff --git a/Modules/ModParser-2_6.lua b/Modules/ModParser-2_6.lua index a1581203..cf5ea025 100644 --- a/Modules/ModParser-2_6.lua +++ b/Modules/ModParser-2_6.lua @@ -644,19 +644,17 @@ local function flag(name, ...) return mod(name, "FLAG", true, ...) end -local gemNameLookup = { } -for name, grantedEffect in pairs(data["2_6"].skills) do - if not grantedEffect.hidden then - gemNameLookup[grantedEffect.name:lower()] = grantedEffect.name - elseif grantedEffect.fromItem then - gemNameLookup[grantedEffect.name:lower()] = grantedEffect.id +local gemIdLookup = { } +for name, grantedEffect in pairs(data["3_0"].skills) do + if not grantedEffect.hidden or grantedEffect.fromItem then + gemIdLookup[grantedEffect.name:lower()] = grantedEffect.id end end local function extraSkill(name, level, noSupports) name = name:gsub(" skill","") - if gemNameLookup[name] then + if gemIdLookup[name] then return { - mod("ExtraSkill", "LIST", { name = gemNameLookup[name], level = level, noSupports = noSupports }) + mod("ExtraSkill", "LIST", { skillId = gemIdLookup[name], level = level, noSupports = noSupports }) } end end @@ -845,7 +843,7 @@ local specialModList = { ["[ct][ar][si][tg]g?e?r?s? (.+) when your skills or minions kill"] = function(_, skill) return extraSkill(skill, 1, true) end, ["attack with (.+) when you take a critical strike"] = function( _, skill) return extraSkill(skill, 1, true) end, ["triggers? (.+) when you take a critical strike"] = function( _, skill) return extraSkill(skill, 1, true) end, - ["socketed [%a+]* ?gems a?r?e? ?supported by level (%d+) (.+)"] = function(num, _, support) return { mod("ExtraSupport", "LIST", { name = gemNameLookup[support] or gemNameLookup[support:gsub("^increased ","")] or "Unknown", level = num }, { type = "SocketedIn", slotName = "{SlotName}" }) } end, + ["socketed [%a+]* ?gems a?r?e? ?supported by level (%d+) (.+)"] = function(num, _, support) return { mod("ExtraSupport", "LIST", { skillId = gemIdLookup[support] or gemIdLookup[support:gsub("^increased ","")] or "Unknown", level = num }, { type = "SocketedIn", slotName = "{SlotName}" }) } end, -- Conversion ["increases and reductions to minion damage also affects? you"] = { flag("MinionDamageAppliesToPlayer") }, ["increases and reductions to spell damage also apply to attacks"] = { flag("SpellDamageAppliesToAttacks") }, @@ -990,7 +988,7 @@ local specialModList = { ["creates consecrated ground on use"] = { }, ["gain unholy might during flask effect"] = { flag("Condition:UnholyMight", { type = "Condition", var = "UsingFlask" }) }, ["zealot's oath during flask effect"] = { mod("ZealotsOath", "FLAG", true, { type = "Condition", var = "UsingFlask" }) }, - ["grants level (%d+) (.+) curse aura during flask effect"] = function(num, _, skill) return { mod("ExtraCurse", "LIST", { name = gemNameLookup[skill:gsub(" skill","")] or "Unknown", level = num }, { type = "Condition", var = "UsingFlask" }) } end, + ["grants level (%d+) (.+) curse aura during flask effect"] = function(num, _, skill) return { mod("ExtraCurse", "LIST", { skillId = gemIdLookup[skill:gsub(" skill","")] or "Unknown", level = num }, { type = "Condition", var = "UsingFlask" }) } end, ["during flask effect, (%d+)%% reduced damage taken of each element for which your uncapped elemental resistance is lowest"] = function(num) return { mod("LightningDamageTaken", "INC", -num, { type = "StatThreshold", stat = "LightningResistTotal", thresholdStat = "ColdResistTotal", upper = true }, { type = "StatThreshold", stat = "LightningResistTotal", thresholdStat = "FireResistTotal", upper = true }), mod("ColdDamageTaken", "INC", -num, { type = "StatThreshold", stat = "ColdResistTotal", thresholdStat = "LightningResistTotal", upper = true }, { type = "StatThreshold", stat = "ColdResistTotal", thresholdStat = "FireResistTotal", upper = true }), @@ -1137,11 +1135,13 @@ local regenTypes = { -- Build active skill name lookup local skillNameList = { } local preSkillNameList = { } -for skillName, grantedEffect in pairs(data["2_6"].gems) do +for gemId, gemData in pairs(data["2_6"].gems) do + local grantedEffect = gemData.grantedEffect if not grantedEffect.hidden and not grantedEffect.support then + local skillName = grantedEffect.name skillNameList[" "..skillName:lower().." "] = { tag = { type = "SkillName", skillName = skillName } } preSkillNameList["^"..skillName:lower().." has ?a? "] = { tag = { type = "SkillName", skillName = skillName } } - if grantedEffect.gemTags.totem then + if gemData.tags.totem then preSkillNameList["^"..skillName:lower().." totem deals "] = { tag = { type = "SkillName", skillName = skillName } } preSkillNameList["^"..skillName:lower().." totem grants "] = { addToSkill = { type = "SkillName", skillName = skillName }, tag = { type = "GlobalEffect", effectType = "Buff" } } end @@ -1149,7 +1149,7 @@ for skillName, grantedEffect in pairs(data["2_6"].gems) do preSkillNameList["^"..skillName:lower().." grants "] = { addToSkill = { type = "SkillName", skillName = skillName }, tag = { type = "GlobalEffect", effectType = "Buff" } } preSkillNameList["^"..skillName:lower().." grants a?n? ?additional "] = { addToSkill = { type = "SkillName", skillName = skillName }, tag = { type = "GlobalEffect", effectType = "Buff" } } end - if grantedEffect.gemTags.chaining then + if gemData.tags.chaining then specialModList["^"..skillName:lower().." chains an additional time"] = { mod("ExtraSkillMod", "LIST", { mod = mod("ChainCountMax", "BASE", 1) }, { type = "SkillName", skillName = skillName }) } specialModList["^"..skillName:lower().." chains an additional (%d+) times"] = function(num) return { mod("ExtraSkillMod", "LIST", { mod = mod("ChainCountMax", "BASE", num) }, { type = "SkillName", skillName = skillName }) } end end diff --git a/Modules/ModParser-3_0.lua b/Modules/ModParser-3_0.lua index 1038330c..fdd4f9db 100644 --- a/Modules/ModParser-3_0.lua +++ b/Modules/ModParser-3_0.lua @@ -825,19 +825,17 @@ local function flag(name, ...) return mod(name, "FLAG", true, ...) end -local gemNameLookup = { } +local gemIdLookup = { } for name, grantedEffect in pairs(data["3_0"].skills) do - if not grantedEffect.hidden then - gemNameLookup[grantedEffect.name:lower()] = grantedEffect.name - elseif grantedEffect.fromItem then - gemNameLookup[grantedEffect.name:lower()] = grantedEffect.id + if not grantedEffect.hidden or grantedEffect.fromItem then + gemIdLookup[grantedEffect.name:lower()] = grantedEffect.id end end local function extraSkill(name, level, noSupports) name = name:gsub(" skill","") - if gemNameLookup[name] then + if gemIdLookup[name] then return { - mod("ExtraSkill", "LIST", { name = gemNameLookup[name], level = level, noSupports = noSupports }) + mod("ExtraSkill", "LIST", { skillId = gemIdLookup[name], level = level, noSupports = noSupports }) } end end @@ -1073,7 +1071,7 @@ local specialModList = { ["[ct][ar][si][tg]g?e?r?s? (.+) when your skills or minions kill"] = function(_, skill) return extraSkill(skill, 1, true) end, ["attack with (.+) when you take a critical strike"] = function( _, skill) return extraSkill(skill, 1, true) end, ["triggers? (.+) when you take a critical strike"] = function( _, skill) return extraSkill(skill, 1, true) end, - ["socketed [%a+]* ?gems a?r?e? ?supported by level (%d+) (.+)"] = function(num, _, support) return { mod("ExtraSupport", "LIST", { name = gemNameLookup[support] or gemNameLookup[support:gsub("^increased ","")] or "Unknown", level = num }, { type = "SocketedIn", slotName = "{SlotName}" }) } end, + ["socketed [%a+]* ?gems a?r?e? ?supported by level (%d+) (.+)"] = function(num, _, support) return { mod("ExtraSupport", "LIST", { skillId = gemIdLookup[support] or gemIdLookup[support:gsub("^increased ","")] or "Unknown", level = num }, { type = "SocketedIn", slotName = "{SlotName}" }) } end, -- Conversion ["increases and reductions to minion damage also affects? you"] = { flag("MinionDamageAppliesToPlayer") }, ["increases and reductions to spell damage also apply to attacks"] = { flag("SpellDamageAppliesToAttacks") }, @@ -1173,7 +1171,7 @@ local specialModList = { mod("EnemyModifier", "LIST", { mod = mod("ElementalResist", "BASE", num, { type = "MultiplierThreshold", var = "Spider's WebStack", threshold = 1 }) }), mod("EnemyModifier", "LIST", { mod = mod("ChaosResist", "BASE", num, { type = "MultiplierThreshold", var = "Spider's WebStack", threshold = 1 }) }), } end, - ["you are cursed with level (%d+) (%D+)"] = function(num, _, name) return { mod("ExtraCurse", "LIST", { name = gemNameLookup[name], level = num, applyToPlayer = true }) } end, + ["you are cursed with level (%d+) (%D+)"] = function(num, _, name) return { mod("ExtraCurse", "LIST", { skillId = gemIdLookup[name], level = num, applyToPlayer = true }) } end, ["you count as on low life while you are cursed with vulnerability"] = { flag("Condition:LowLife", { type = "Condition", var = "AffectedByVulnerability" }) }, -- Traps, Mines and Totems ["traps and mines deal (%d+)%-(%d+) additional physical damage"] = function(_, min, max) return { mod("PhysicalMin", "BASE", tonumber(min), nil, 0, bor(KeywordFlag.Trap, KeywordFlag.Mine)), mod("PhysicalMax", "BASE", tonumber(max), nil, 0, bor(KeywordFlag.Trap, KeywordFlag.Mine)) } end, @@ -1320,7 +1318,7 @@ local specialModList = { ["creates consecrated ground on use"] = { }, ["gain unholy might during flask effect"] = { flag("Condition:UnholyMight", { type = "Condition", var = "UsingFlask" }) }, ["zealot's oath during flask effect"] = { mod("ZealotsOath", "FLAG", true, { type = "Condition", var = "UsingFlask" }) }, - ["grants level (%d+) (.+) curse aura during flask effect"] = function(num, _, skill) return { mod("ExtraCurse", "LIST", { name = gemNameLookup[skill:gsub(" skill","")] or "Unknown", level = num }, { type = "Condition", var = "UsingFlask" }) } end, + ["grants level (%d+) (.+) curse aura during flask effect"] = function(num, _, skill) return { mod("ExtraCurse", "LIST", { skillId = gemIdLookup[skill:gsub(" skill","")] or "Unknown", level = num }, { type = "Condition", var = "UsingFlask" }) } end, ["during flask effect, (%d+)%% reduced damage taken of each element for which your uncapped elemental resistance is lowest"] = function(num) return { mod("LightningDamageTaken", "INC", -num, { type = "StatThreshold", stat = "LightningResistTotal", thresholdStat = "ColdResistTotal", upper = true }, { type = "StatThreshold", stat = "LightningResistTotal", thresholdStat = "FireResistTotal", upper = true }), mod("ColdDamageTaken", "INC", -num, { type = "StatThreshold", stat = "ColdResistTotal", thresholdStat = "LightningResistTotal", upper = true }, { type = "StatThreshold", stat = "ColdResistTotal", thresholdStat = "FireResistTotal", upper = true }), @@ -1502,12 +1500,14 @@ local skillNameList = { [" corpse cremation " ] = { tag = { type = "SkillName", skillName = "Cremation" } }, -- Sigh. } local preSkillNameList = { } -for skillName, grantedEffect in pairs(data["3_0"].gems) do +for gemId, gemData in pairs(data["3_0"].gems) do + local grantedEffect = gemData.grantedEffect if not grantedEffect.hidden and not grantedEffect.support then + local skillName = grantedEffect.name skillNameList[" "..skillName:lower().." "] = { tag = { type = "SkillName", skillName = skillName } } preSkillNameList["^"..skillName:lower().." has ?a? "] = { tag = { type = "SkillName", skillName = skillName } } preSkillNameList["^"..skillName:lower().." deals "] = { tag = { type = "SkillName", skillName = skillName } } - if grantedEffect.gemTags.totem then + if gemData.tags.totem then preSkillNameList["^"..skillName:lower().." totem deals "] = { tag = { type = "SkillName", skillName = skillName } } preSkillNameList["^"..skillName:lower().." totem grants "] = { addToSkill = { type = "SkillName", skillName = skillName }, tag = { type = "GlobalEffect", effectType = "Buff" } } end @@ -1515,14 +1515,14 @@ for skillName, grantedEffect in pairs(data["3_0"].gems) do preSkillNameList["^"..skillName:lower().." grants "] = { addToSkill = { type = "SkillName", skillName = skillName }, tag = { type = "GlobalEffect", effectType = "Buff" } } preSkillNameList["^"..skillName:lower().." grants a?n? ?additional "] = { addToSkill = { type = "SkillName", skillName = skillName }, tag = { type = "GlobalEffect", effectType = "Buff" } } end - if grantedEffect.gemTags.aura or grantedEffect.gemTags.herald then + if gemData.tags.aura or gemData.tags.herald then skillNameList["while affected by "..skillName:lower()] = { tag = { type = "Condition", var = "AffectedBy"..skillName:gsub(" ","") } } end - if grantedEffect.gemTags.chaining then + if gemData.tags.chaining then specialModList["^"..skillName:lower().." chains an additional time"] = { mod("ExtraSkillMod", "LIST", { mod = mod("ChainCountMax", "BASE", 1) }, { type = "SkillName", skillName = skillName }) } specialModList["^"..skillName:lower().." chains an additional (%d+) times"] = function(num) return { mod("ExtraSkillMod", "LIST", { mod = mod("ChainCountMax", "BASE", num) }, { type = "SkillName", skillName = skillName }) } end end - if grantedEffect.gemTags.bow or grantedEffect.gemTags.projectile then + if gemData.tags.bow or gemData.tags.projectile then specialModList["^"..skillName:lower().." fires an additional projectile"] = { mod("ExtraSkillMod", "LIST", { mod = mod("ProjectileCount", "BASE", 1) }, { type = "SkillName", skillName = skillName }) } specialModList["^"..skillName:lower().." fires (%d+) additional projectiles"] = function(num) return { mod("ExtraSkillMod", "LIST", { mod = mod("ProjectileCount", "BASE", num) }, { type = "SkillName", skillName = skillName }) } end end diff --git a/changelog.txt b/changelog.txt index 13fefcf0..46592907 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,5 @@ +VERSION[1.4.92][2018/06/01] + * VERSION[1.4.91][2018/06/01] * Added the missing limit to Pure Talent * Slavedriver's hand no longer incorrectly converts Attack Speed modifiers to Trap Throwing Speed for Attack traps diff --git a/manifest.xml b/manifest.xml index b67eb6e4..864eaf47 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,18 +1,18 @@ - + - + - + @@ -20,14 +20,14 @@ - - - + + + - + @@ -46,34 +46,34 @@ - + - + - + - - - - + + + + - - + + - + - - + + @@ -105,9 +105,10 @@ + - + @@ -134,23 +135,24 @@ - - - + + + - + - - - + + + + - - + + @@ -178,16 +180,16 @@ - - - + + + - + - - - + + +